pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.elab.core</groupId>
  8. <artifactId>elab-parent</artifactId>
  9. <version>2.0.5.2-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.elab.core</groupId>
  12. <artifactId>elab-core</artifactId>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <java-version>1.8</java-version>
  16. <profiles.active>test</profiles.active>
  17. </properties>
  18. <!-- jetty插件 -->
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <configuration>
  25. <source>${java-version}</source>
  26. <target>${java-version}</target>
  27. </configuration>
  28. </plugin>
  29. <!-- 打包源码插件 -->
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-source-plugin</artifactId>
  33. <executions>
  34. <execution>
  35. <id>attach-sources</id>
  36. <goals>
  37. <goal>jar</goal>
  38. </goals>
  39. </execution>
  40. </executions>
  41. </plugin>
  42. <!-- 打包javadoc插件 -->
  43. <!--<plugin>-->
  44. <!--<groupId>org.apache.maven.plugins</groupId>-->
  45. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  46. <!--&lt;!&ndash;<version>2.9</version>&ndash;&gt;-->
  47. <!--<executions>-->
  48. <!--<execution>-->
  49. <!--<id>attach-javadocs</id>-->
  50. <!--<goals>-->
  51. <!--<goal>jar</goal>-->
  52. <!--</goals>-->
  53. <!--<doc>-->
  54. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  55. <!--<charset>UTF-8</charset>-->
  56. <!--<encoding>UTF-8</encoding>-->
  57. <!--<docencoding>UTF-8</docencoding>-->
  58. <!--</doc>-->
  59. <!--</execution>-->
  60. <!--</executions>-->
  61. <!--</plugin>-->
  62. </plugins>
  63. </build>
  64. <distributionManagement>
  65. <repository>
  66. <id>releases</id>
  67. <name>Nexus Release Repository</name>
  68. <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>
  69. </repository>
  70. </distributionManagement>
  71. <dependencies>
  72. <!--<dependency>-->
  73. <!--<groupId>mysql</groupId>-->
  74. <!--<artifactId>mysql-connector-java</artifactId>-->
  75. <!--</dependency>-->
  76. <!-- 数据源 -->
  77. <!--<dependency>-->
  78. <!--<groupId>com.alibaba</groupId>-->
  79. <!--<artifactId>druid</artifactId>-->
  80. <!--</dependency>-->
  81. <dependency>
  82. <groupId>org.slf4j</groupId>
  83. <artifactId>slf4j-api</artifactId>
  84. </dependency>
  85. <!-- 工具 -->
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>fastjson</artifactId>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/commons-net/commons-net -->
  91. <dependency>
  92. <groupId>commons-net</groupId>
  93. <artifactId>commons-net</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.aspectj</groupId>
  97. <artifactId>aspectjweaver</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.guava</groupId>
  101. <artifactId>guava</artifactId>
  102. </dependency>
  103. <!-- xml解析 -->
  104. <dependency>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. <artifactId>jackson-databind</artifactId>
  107. </dependency>
  108. <!-- 中文转pinyin -->
  109. <dependency>
  110. <groupId>com.belerweb</groupId>
  111. <artifactId>pinyin4j</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.codehaus.plexus</groupId>
  115. <artifactId>plexus-utils</artifactId>
  116. </dependency>
  117. <!-- log4j 日志 本地存储 -->
  118. <!--<dependency>
  119. <groupId>log4j</groupId>
  120. <artifactId>log4j</artifactId>
  121. <version>1.2.16</version>
  122. </dependency>
  123. -->
  124. <!-- log4 日志 mongodb数据库存储 -->
  125. <!--<dependency>-->
  126. <!--<groupId>org.log4mongo</groupId>-->
  127. <!--<artifactId>log4mongo-java</artifactId>-->
  128. <!--</dependency>-->
  129. <dependency>
  130. <groupId>org.apache.commons</groupId>
  131. <artifactId>commons-lang3</artifactId>
  132. </dependency>
  133. <!--发送邮件 -->
  134. <!--<dependency>-->
  135. <!--<groupId>javax.mail</groupId>-->
  136. <!--<artifactId>mail</artifactId>-->
  137. <!--</dependency>-->
  138. <!-- 模板 -->
  139. <dependency>
  140. <groupId>org.freemarker</groupId>
  141. <artifactId>freemarker</artifactId>
  142. </dependency>
  143. <!-- servlet -->
  144. <dependency>
  145. <groupId>javax.servlet</groupId>
  146. <artifactId>javax.servlet-api</artifactId>
  147. </dependency>
  148. <!-- 文件上传 -->
  149. <dependency>
  150. <groupId>commons-fileupload</groupId>
  151. <artifactId>commons-fileupload</artifactId>
  152. </dependency>
  153. <!-- encoding -->
  154. <dependency>
  155. <groupId>org.apache.axis</groupId>
  156. <artifactId>axis</artifactId>
  157. </dependency>
  158. <!--<dependency>-->
  159. <!--<groupId>com.dianping.cat</groupId>-->
  160. <!--<artifactId>cat-core</artifactId>-->
  161. <!--<version>2.0.0</version>-->
  162. <!--</dependency>-->
  163. <dependency>
  164. <groupId>junit</groupId>
  165. <artifactId>junit</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>commons-beanutils</groupId>
  169. <artifactId>commons-beanutils</artifactId>
  170. </dependency>
  171. </dependencies>
  172. </project>