pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.techempower</groupId>
  6. <artifactId>microhttp-example</artifactId>
  7. <version>0.1</version>
  8. <properties>
  9. <maven.compiler.source>17</maven.compiler.source>
  10. <maven.compiler.target>17</maven.compiler.target>
  11. </properties>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.microhttp</groupId>
  16. <artifactId>microhttp</artifactId>
  17. <version>0.8</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.fasterxml.jackson.core</groupId>
  21. <artifactId>jackson-core</artifactId>
  22. <version>2.13.3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-databind</artifactId>
  27. <version>2.13.4.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <version>8.0.29</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.junit.jupiter</groupId>
  36. <artifactId>junit-jupiter</artifactId>
  37. <version>5.8.2</version>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <inherited>true</inherited>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.10.0</version>
  48. <configuration>
  49. <debug>false</debug>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <version>3.0.0-M5</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-assembly-plugin</artifactId>
  59. <configuration>
  60. <archive>
  61. <manifest>
  62. <mainClass>hello.HelloWebServer</mainClass>
  63. </manifest>
  64. </archive>
  65. <descriptorRefs>
  66. <descriptorRef>jar-with-dependencies</descriptorRef>
  67. </descriptorRefs>
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  72. <phase>package</phase> <!-- bind to the packaging phase -->
  73. <goals>
  74. <goal>single</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>