4 Star 0 Fork 1

潍坊雷鸣云网络科技有限公司 / wangmarket_plugin_controllerRequestLog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.63 KB
一键复制 编辑 原始数据 按行查看 历史
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xnx3.wangmarket.plugin.controllerRequestLog</groupId>
<artifactId>wangmarket.plugin.controllerRequestLog</artifactId>
<packaging>jar</packaging>
<name>controllerRequestLog</name>
<version>1.3</version>
<description>控制器方面请求日志自动记录,也就是项目中 do、json这两种后缀的请求,会全部进行日志记录,什么时间请求的,是哪个用户发起的,请求的什么url等,都会进行日志服务的记录</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<java.version>1.8</java.version>
</properties>
<!-- 定义公共资源版本 -->
<parent>
<groupId>com.xnx3.wangmarket.wm</groupId>
<artifactId>parent</artifactId>
<version>2.11.2</version>
</parent>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
<repository>
<id>maven-ali</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/com/Application*</exclude>
<exclude>**/*.xml</exclude>
<exclude>/*.properties</exclude>
<exclude>**/*.json</exclude>
<exclude>**/*.db</exclude>
<exclude>**/static/**</exclude>
</excludes>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>./</targetPath>
<includes>
<include>META-INF/**</include>
</includes>
</resource>
<resource>
<directory>src/main/resources/static/</directory>
<targetPath>META-INF/resources/</targetPath>
<includes>
<include>plugin/**</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>plugin/**</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<targetPath>META-INF/resources/WEB-INF/</targetPath>
<includes>
<include>view/**</include>
</includes>
</resource>
<!-- 将 resource/META-INF 下的配置文件拷贝到jar包 META-INF 目录下 -->
<resource>
<!-- 指定resources插件处理哪个目录下的资源文件 -->
<directory>src/main/resources</directory>
<!-- 注意此次必须要放在此目录下才能被访问到 -->
<targetPath>./</targetPath>
<includes>
<include>*.xml</include>
<include>*.properties</include>
<include>*.json</include>
<include>*.db</include>
</includes>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>com.xnx3.wm</groupId>
<artifactId>wm</artifactId>
<version>2.12.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/wm-2.12.3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.xnx3.wangmarket</groupId>
<artifactId>wangmarket</artifactId>
<version>5.5</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/wangmarket-5.5.jar</systemPath>
</dependency>
</dependencies>
</project>
1
https://gitee.com/leimingyun/wangmarket_plugin_controller-request-log.git
git@gitee.com:leimingyun/wangmarket_plugin_controller-request-log.git
leimingyun
wangmarket_plugin_controller-request-log
wangmarket_plugin_controllerRequestLog
master

搜索帮助