pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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</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>25</maven.compiler.source>
  11. <maven.compiler.target>25</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.fasterxml.jackson.core</groupId>
  16. <artifactId>jackson-databind</artifactId>
  17. <version>2.19.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.fasterxml.jackson.module</groupId>
  21. <artifactId>jackson-module-afterburner</artifactId>
  22. <version>2.19.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.postgresql</groupId>
  26. <artifactId>postgresql</artifactId>
  27. <version>42.7.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.zaxxer</groupId>
  31. <artifactId>HikariCP</artifactId>
  32. <version>3.3.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.httl</groupId>
  36. <artifactId>httl</artifactId>
  37. <version>1.0.11</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.slf4j</groupId>
  41. <artifactId>slf4j-simple</artifactId>
  42. <version>1.8.0-beta4</version>
  43. </dependency>
  44. </dependencies>
  45. <profiles>
  46. <profile>
  47. <id>robaho</id>
  48. <activation>
  49. <activeByDefault>false</activeByDefault>
  50. </activation>
  51. <dependencies>
  52. <dependency>
  53. <groupId>io.github.robaho</groupId>
  54. <artifactId>httpserver</artifactId>
  55. <version>1.0.23</version>
  56. </dependency>
  57. </dependencies>
  58. </profile>
  59. </profiles>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <inherited>true</inherited>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.0</version>
  67. <configuration>
  68. <debug>false</debug>
  69. <source>21</source>
  70. <target>21</target>
  71. </configuration>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-assembly-plugin</artifactId>
  75. <version>3.1.0</version>
  76. <configuration>
  77. <archive>
  78. <manifest>
  79. <mainClass>benchmarks.Server</mainClass>
  80. </manifest>
  81. </archive>
  82. <descriptorRefs>
  83. <descriptorRef>jar-with-dependencies</descriptorRef>
  84. </descriptorRefs>
  85. </configuration>
  86. <executions>
  87. <execution>
  88. <id>make-assembly</id>
  89. <phase>package</phase>
  90. <goals>
  91. <goal>single</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>