pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.4</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <commons.lang.version>2.6</commons.lang.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.smartboot.http</groupId>
  20. <artifactId>smart-http-server</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>fastjson</artifactId>
  25. <version>1.2.47</version>
  26. </dependency>
  27. </dependencies>
  28. <repositories>
  29. <repository>
  30. <id>central</id>
  31. <name>Central Repository</name>
  32. <url>https://repo.maven.apache.org/maven2</url>
  33. </repository>
  34. </repositories>
  35. <pluginRepositories>
  36. <pluginRepository>
  37. <id>central</id>
  38. <name>Central Repository</name>
  39. <url>https://repo.maven.apache.org/maven2</url>
  40. </pluginRepository>
  41. </pluginRepositories>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <inherited>true</inherited>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.7.0</version>
  49. <configuration>
  50. <source>1.8</source>
  51. <target>1.8</target>
  52. <optimize>true</optimize>
  53. <debug>false</debug>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <artifactId>maven-assembly-plugin</artifactId>
  58. <version>3.1.0</version>
  59. <configuration>
  60. <descriptorRefs>
  61. <descriptorRef>jar-with-dependencies</descriptorRef>
  62. </descriptorRefs>
  63. </configuration>
  64. <executions>
  65. <execution>
  66. <id>make-assembly</id>
  67. <phase>package</phase>
  68. <goals>
  69. <goal>single</goal>
  70. </goals>
  71. </execution>
  72. </executions>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>