pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>rapidoid</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>1.8</maven.compiler.source>
  11. <maven.compiler.target>1.8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.rapidoid</groupId>
  16. <artifactId>rapidoid-web</artifactId>
  17. <version>5.5.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>mysql</groupId>
  21. <artifactId>mysql-connector-java</artifactId>
  22. <version>8.0.18</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.postgresql</groupId>
  26. <artifactId>postgresql</artifactId>
  27. <version>42.2.5</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>javax.xml.bind</groupId>
  36. <artifactId>jaxb-api</artifactId>
  37. <version>2.3.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.javassist</groupId>
  41. <artifactId>javassist</artifactId>
  42. <version>3.25.0-GA</version>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <inherited>true</inherited>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.8.0</version>
  52. <configuration>
  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>