加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.81 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="UTF-8"?>
<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>archer</groupId>
<artifactId>archer-framework</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<modules>
<!-- core -->
<module>core</module>
<!-- protocol -->
<module>protocol</module>
<!-- cache support -->
<module>cache-core</module>
<module>cache-ehcache</module>
<module>cache-redis</module>
<!-- ebean extension -->
<module>ebean</module>
<!-- web support -->
<module>web</module>
<!-- common usages -->
<module>common</module>
<!-- api security support -->
<module>security</module>
<!-- client sdk -->
<module>client</module>
<!-- groovy support -->
<module>groovy</module>
<!-- file server apis -->
<module>file</module>
<!-- excel support -->
<module>poi</module>
<!-- test support -->
<module>test-support</module>
</modules>
<properties>
<!-- encode -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- jdk -->
<java.version>1.7</java.version>
<!-- jodd -->
<jodd.version>3.7.1</jodd.version>
<!-- logger -->
<slf4j.version>1.7.7</slf4j.version>
<logback.version>1.1.2</logback.version>
<!-- test -->
<junit.version>4.11</junit.version>
<!-- codec -->
<commons-codec.version>1.10</commons-codec.version>
<commons-fileupload.version>1.2.2</commons-fileupload.version>
<commons-io.version>2.4</commons-io.version>
<!-- ehcache -->
<ehcache.version>2.6.9</ehcache.version>
<!-- redis -->
<redis.clients.version>2.8.0</redis.clients.version>
<!-- serializer-->
<fst.version>2.42</fst.version>
<!-- ebean -->
<ebean.version>7.18.1</ebean.version>
<ebean-agent.version>4.10.1</ebean-agent.version>
<avaje-ebeanorm-mavenenhancer.version>4.10.1</avaje-ebeanorm-mavenenhancer.version>
<ebean-agentloader.version>2.1.2</ebean-agentloader.version>
<!-- j2ee -->
<servlet.version>3.1.0</servlet.version>
<jsp.version>2.3.1</jsp.version>
<jstl.version>1.2</jstl.version>
<!-- spring -->
<spring.version>4.2.5.RELEASE</spring.version>
<aspectj.version>1.8.9</aspectj.version>
<!-- bean validator -->
<hibernate-validator.version>5.0.3.Final</hibernate-validator.version>
<!-- jetty -->
<jetty.version>8.1.19.v20160209</jetty.version>
<!-- groovy -->
<groovy.version>2.4.0</groovy.version>
<!-- jxls -->
<jxls-poi.version>1.0.11</jxls-poi.version>
<jxls.version>2.3.0</jxls.version>
<mime-util.version>2.1.3</mime-util.version>
</properties>
<dependencies>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<skip>true</skip>
<forkMode>once</forkMode>
<argLine>-Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化