pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.10.0501-beta</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. <commons.lang.version>2.6</commons.lang.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-core</artifactId>
  27. <version>1.4.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.jsoniter</groupId>
  31. <artifactId>jsoniter</artifactId>
  32. <version>0.9.23</version>
  33. </dependency>
  34. </dependencies>
  35. <repositories>
  36. <repository>
  37. <id>central</id>
  38. <name>Central Repository</name>
  39. <url>https://repo.maven.apache.org/maven2</url>
  40. </repository>
  41. </repositories>
  42. <pluginRepositories>
  43. <pluginRepository>
  44. <id>central</id>
  45. <name>Central Repository</name>
  46. <url>https://repo.maven.apache.org/maven2</url>
  47. </pluginRepository>
  48. </pluginRepositories>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <inherited>true</inherited>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>3.8.0</version>
  56. <configuration>
  57. <debug>false</debug>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <artifactId>maven-assembly-plugin</artifactId>
  62. <version>3.1.0</version>
  63. <configuration>
  64. <descriptorRefs>
  65. <descriptorRef>jar-with-dependencies</descriptorRef>
  66. </descriptorRefs>
  67. </configuration>
  68. <executions>
  69. <execution>
  70. <id>make-assembly</id>
  71. <phase>package</phase>
  72. <goals>
  73. <goal>single</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>