pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.smartboot.socket</groupId>
  5. <artifactId>smart-socket-benchmark</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>org.smartboot.http</groupId>
  10. <artifactId>smart-http-parent</artifactId>
  11. <version>1.0.14-SNAPSHOT</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>11</maven.compiler.source>
  16. <maven.compiler.target>11</maven.compiler.target>
  17. <log4j.version>2.11.0</log4j.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.smartboot.http</groupId>
  22. <artifactId>smart-http-server</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.smartboot.socket</groupId>
  26. <artifactId>aio-pro</artifactId>
  27. <version>1.4.10-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.jsoniter</groupId>
  31. <artifactId>jsoniter</artifactId>
  32. <version>0.9.23</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.logging.log4j</groupId>
  36. <artifactId>log4j-slf4j-impl</artifactId>
  37. <version>${log4j.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.logging.log4j</groupId>
  41. <artifactId>log4j-api</artifactId>
  42. <version>${log4j.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.logging.log4j</groupId>
  46. <artifactId>log4j-core</artifactId>
  47. <version>${log4j.version}</version>
  48. </dependency>
  49. </dependencies>
  50. <repositories>
  51. <repository>
  52. <id>central</id>
  53. <name>Central Repository</name>
  54. <url>https://repo.maven.apache.org/maven2</url>
  55. </repository>
  56. <repository>
  57. <id>sonatype-nexus-snapshots</id>
  58. <name>Sonatype Nexus Snapshots</name>
  59. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  60. </repository>
  61. </repositories>
  62. <pluginRepositories>
  63. <pluginRepository>
  64. <id>central</id>
  65. <name>Central Repository</name>
  66. <url>https://repo.maven.apache.org/maven2</url>
  67. </pluginRepository>
  68. <pluginRepository>
  69. <id>sonatype-nexus-snapshots</id>
  70. <name>Sonatype Nexus Snapshots</name>
  71. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  72. <releases>
  73. <enabled>false</enabled>
  74. </releases>
  75. <snapshots>
  76. <enabled>true</enabled>
  77. </snapshots>
  78. </pluginRepository>
  79. </pluginRepositories>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <inherited>true</inherited>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-compiler-plugin</artifactId>
  86. <version>3.8.0</version>
  87. <configuration>
  88. <debug>false</debug>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-assembly-plugin</artifactId>
  93. <version>3.1.0</version>
  94. <configuration>
  95. <descriptorRefs>
  96. <descriptorRef>jar-with-dependencies</descriptorRef>
  97. </descriptorRefs>
  98. </configuration>
  99. <executions>
  100. <execution>
  101. <id>make-assembly</id>
  102. <phase>package</phase>
  103. <goals>
  104. <goal>single</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>