pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>jlhttp</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. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>net.freeutils</groupId>
  16. <artifactId>jlhttp</artifactId>
  17. <version>2.4</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.fasterxml.jackson.core</groupId>
  21. <artifactId>jackson-databind</artifactId>
  22. <version>2.10.0.pr1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.module</groupId>
  26. <artifactId>jackson-module-afterburner</artifactId>
  27. <version>2.9.9</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. <version>42.3.3</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.zaxxer</groupId>
  36. <artifactId>HikariCP</artifactId>
  37. <version>3.3.1</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.httl</groupId>
  41. <artifactId>httl</artifactId>
  42. <version>1.0.11</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.slf4j</groupId>
  46. <artifactId>slf4j-simple</artifactId>
  47. <version>1.8.0-beta4</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <inherited>true</inherited>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>3.8.0</version>
  57. <configuration>
  58. <debug>false</debug>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-assembly-plugin</artifactId>
  63. <version>3.1.0</version>
  64. <configuration>
  65. <archive>
  66. <manifest>
  67. <mainClass>benchmarks.Server</mainClass>
  68. </manifest>
  69. </archive>
  70. <descriptorRefs>
  71. <descriptorRef>jar-with-dependencies</descriptorRef>
  72. </descriptorRefs>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <id>make-assembly</id>
  77. <phase>package</phase>
  78. <goals>
  79. <goal>single</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>