pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>httpserver-robaho</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>23</maven.compiler.source>
  11. <maven.compiler.target>23</maven.compiler.target>
  12. <java.version>23</java.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.googlecode.json-simple</groupId>
  17. <artifactId>json-simple</artifactId>
  18. <version>1.1.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.postgresql</groupId>
  22. <artifactId>postgresql</artifactId>
  23. <version>42.7.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.zaxxer</groupId>
  27. <artifactId>HikariCP</artifactId>
  28. <version>3.3.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.httl</groupId>
  32. <artifactId>httl</artifactId>
  33. <version>1.0.11</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-simple</artifactId>
  38. <version>1.7.25</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.github.robaho</groupId>
  42. <artifactId>httpserver</artifactId>
  43. <version>1.0.23</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <inherited>true</inherited>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.8.0</version>
  54. <configuration>
  55. <debug>false</debug>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-assembly-plugin</artifactId>
  60. <version>3.1.0</version>
  61. <configuration>
  62. <archive>
  63. <manifest>
  64. <mainClass>benchmarks.Server</mainClass>
  65. </manifest>
  66. </archive>
  67. <descriptorRefs>
  68. <descriptorRef>jar-with-dependencies</descriptorRef>
  69. </descriptorRefs>
  70. </configuration>
  71. <executions>
  72. <execution>
  73. <id>make-assembly</id>
  74. <phase>package</phase>
  75. <goals>
  76. <goal>single</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>