pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.nutz</groupId>
  4. <artifactId>luatos</artifactId>
  5. <version>1.r.68-SNAPSHOT</version>
  6. <name>LuatOSTool</name>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. <elasticsearch.version>6.3.2</elasticsearch.version>
  10. </properties>
  11. <licenses>
  12. <license>
  13. <name>The Apache Software License, Version 2.0</name>
  14. <url>http://apache.org/licenses/LICENSE-2.0.txt</url>
  15. </license>
  16. </licenses>
  17. <developers>
  18. <developer>
  19. <id>zozoh</id>
  20. <name>zozoh</name>
  21. <email>zozohtnt@gmail.com</email>
  22. <url>http://weibo.com/zozoh</url>
  23. </developer>
  24. <developer>
  25. <id>wendal</id>
  26. <name>Wendal Chen</name>
  27. <email>wendal1985@gmail.com</email>
  28. <url>http://wendal.net/</url>
  29. </developer>
  30. </developers>
  31. <dependencies>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>4.13.1</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>javax.servlet-api</artifactId>
  41. <version>3.1.0</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.nutz</groupId>
  46. <artifactId>nutz</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-1.2-api</artifactId>
  52. <version>2.13.3</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.logging.log4j</groupId>
  56. <artifactId>log4j-core</artifactId>
  57. <version>2.13.3</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <version>3.3</version>
  65. <configuration>
  66. <source>1.8</source>
  67. <target>1.8</target>
  68. <compilerArgs>
  69. <arg>-parameters</arg>
  70. </compilerArgs>
  71. <useIncrementalCompilation>false</useIncrementalCompilation>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-javadoc-plugin</artifactId>
  77. <version>2.10.4</version>
  78. <configuration>
  79. <additionalparam>-Xdoclint:none</additionalparam>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-jar-plugin</artifactId>
  85. <version>3.0.2</version>
  86. <configuration>
  87. <archive>
  88. <manifest>
  89. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  90. </manifest>
  91. </archive>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. <distributionManagement>
  97. <snapshotRepository>
  98. <id>nutzcn-snapshots</id>
  99. <name>NutzCN snapshot repository</name>
  100. <url>https://jfrog.nutz.cn/artifactory/snapshots</url>
  101. </snapshotRepository>
  102. <repository>
  103. <id>sonatype-release-staging</id>
  104. <name>Sonatype Nexus release repository</name>
  105. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  106. </repository>
  107. </distributionManagement>
  108. <pluginRepositories>
  109. <pluginRepository>
  110. <id>nutz-snapshots</id>
  111. <url>https://jfrog.nutz.cn/artifactory/snapshots</url>
  112. <snapshots>
  113. <enabled>true</enabled>
  114. <updatePolicy>always</updatePolicy>
  115. </snapshots>
  116. <releases>
  117. <enabled>false</enabled>
  118. </releases>
  119. </pluginRepository>
  120. </pluginRepositories>
  121. </project>