pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.techempower</groupId>
  5. <artifactId>firenio-example</artifactId>
  6. <version>0.1</version>
  7. <properties>
  8. <maven.compiler.source>11</maven.compiler.source>
  9. <maven.compiler.target>11</maven.compiler.target>
  10. </properties>
  11. <packaging>jar</packaging>
  12. <repositories>
  13. <repository>
  14. <id>snapshots</id>
  15. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  16. <snapshots>
  17. <enabled>true</enabled>
  18. </snapshots>
  19. </repository>
  20. </repositories>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.firenio</groupId>
  24. <artifactId>firenio-all</artifactId>
  25. <version>1.3.6</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.jsoniter</groupId>
  29. <artifactId>jsoniter</artifactId>
  30. <version>0.9.23</version>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <inherited>true</inherited>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.8.0</version>
  40. <configuration>
  41. <debug>false</debug>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-assembly-plugin</artifactId>
  46. <configuration>
  47. <archive>
  48. <manifest>
  49. <mainClass>hello.TestHttpLoadServer</mainClass>
  50. </manifest>
  51. </archive>
  52. <descriptorRefs>
  53. <descriptorRef>jar-with-dependencies</descriptorRef>
  54. </descriptorRefs>
  55. </configuration>
  56. <executions>
  57. <execution>
  58. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  59. <phase>package</phase> <!-- bind to the packaging phase -->
  60. <goals>
  61. <goal>single</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>