dependency-reduced-pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>oss-parent</artifactId>
  5. <groupId>org.sonatype.oss</groupId>
  6. <version>5</version>
  7. <relativePath>../pom.xml/pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.networknt</groupId>
  11. <artifactId>techempower</artifactId>
  12. <name>techempower</name>
  13. <version>1.0.0</version>
  14. <prerequisites>
  15. <maven>2.2.0</maven>
  16. </prerequisites>
  17. <build>
  18. <defaultGoal>install</defaultGoal>
  19. <directory>target</directory>
  20. <finalName>${project.artifactId}-${project.version}</finalName>
  21. <pluginManagement>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.eclipse.m2e</groupId>
  25. <artifactId>lifecycle-mapping</artifactId>
  26. <version>1.0.0</version>
  27. <configuration>
  28. <lifecycleMappingMetadata>
  29. <pluginExecutions>
  30. <pluginExecution>
  31. <pluginExecutionFilter>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <versionRange>[3.3,)</versionRange>
  35. <goals>
  36. <goal>compile</goal>
  37. <goal>testCompile</goal>
  38. </goals>
  39. </pluginExecutionFilter>
  40. <action>
  41. <ignore />
  42. </action>
  43. </pluginExecution>
  44. </pluginExecutions>
  45. </lifecycleMappingMetadata>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </pluginManagement>
  50. <plugins>
  51. <plugin>
  52. <artifactId>maven-shade-plugin</artifactId>
  53. <version>2.4.3</version>
  54. <executions>
  55. <execution>
  56. <phase>package</phase>
  57. <goals>
  58. <goal>shade</goal>
  59. </goals>
  60. <configuration>
  61. <transformers>
  62. <transformer />
  63. </transformers>
  64. </configuration>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-jar-plugin</artifactId>
  70. <version>2.6</version>
  71. <configuration>
  72. <archive>
  73. <manifest>
  74. <mainClass>com.networknt.server.Server</mainClass>
  75. </manifest>
  76. </archive>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.codehaus.mojo</groupId>
  81. <artifactId>exec-maven-plugin</artifactId>
  82. <version>1.4.0</version>
  83. <configuration>
  84. <executable>java</executable>
  85. <arguments>
  86. <argument>-jar</argument>
  87. <argument>target/${project.build.finalName}.jar</argument>
  88. </arguments>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <version>3.3</version>
  94. <dependencies>
  95. <dependency>
  96. <groupId>org.codehaus.plexus</groupId>
  97. <artifactId>plexus-compiler-javac-errorprone</artifactId>
  98. <version>2.8</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.google.errorprone</groupId>
  102. <artifactId>error_prone_core</artifactId>
  103. <version>2.0.15</version>
  104. </dependency>
  105. </dependencies>
  106. <configuration>
  107. <compilerId>javac-with-errorprone</compilerId>
  108. <showWarnings>true</showWarnings>
  109. <showDeprecation>true</showDeprecation>
  110. <compilerArgs />
  111. <forceJavacCompilerUse>true</forceJavacCompilerUse>
  112. <source>${java.version}</source>
  113. <target>${java.version}</target>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. <repositories>
  119. <repository>
  120. <snapshots />
  121. <id>sonatype-snapshots</id>
  122. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  123. </repository>
  124. </repositories>
  125. <dependencies>
  126. <dependency>
  127. <groupId>junit</groupId>
  128. <artifactId>junit</artifactId>
  129. <version>4.12</version>
  130. <scope>test</scope>
  131. <exclusions>
  132. <exclusion>
  133. <artifactId>hamcrest-core</artifactId>
  134. <groupId>org.hamcrest</groupId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. </dependencies>
  139. <properties>
  140. <version.hikaricp>2.5.1</version.hikaricp>
  141. <version.httpasyncclient>4.1.2</version.httpasyncclient>
  142. <version.jsonpath>2.2.0</version.jsonpath>
  143. <version.commons.codec>1.10</version.commons.codec>
  144. <version.metrics>3.1.2</version.metrics>
  145. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  146. <version.encoder>1.2</version.encoder>
  147. <version.httpclient>4.5.2</version.httpclient>
  148. <version.undertow>1.4.10.Final</version.undertow>
  149. <version.jose4j>0.5.2</version.jose4j>
  150. <version.commons-lang>2.6</version.commons-lang>
  151. <java.version>1.8</java.version>
  152. <version.jackson>2.8.2</version.jackson>
  153. <version.light-java>1.2.3</version.light-java>
  154. <version.swagger>1.5.10</version.swagger>
  155. <version.mockito>2.1.0-beta.124</version.mockito>
  156. <version.slf4j>1.7.22</version.slf4j>
  157. <version.commons.io>2.5</version.commons.io>
  158. <version.logback>1.1.9</version.logback>
  159. <version.junit>4.12</version.junit>
  160. <version.postgres>9.4.1211</version.postgres>
  161. <version.antlr4>4.5.3</version.antlr4>
  162. <version.mysql>6.0.4</version.mysql>
  163. <version.light-java-rest>1.2.3</version.light-java-rest>
  164. </properties>
  165. </project>