pom.xml 4.7 KB

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