pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. </properties>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.rapidoid</groupId>
  14. <artifactId>rapidoid-web</artifactId>
  15. <version>5.5.4</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>mysql</groupId>
  19. <artifactId>mysql-connector-java</artifactId>
  20. <version>5.1.46</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.postgresql</groupId>
  24. <artifactId>postgresql</artifactId>
  25. <version>42.2.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.zaxxer</groupId>
  29. <artifactId>HikariCP</artifactId>
  30. <version>2.7.8</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.xml.bind</groupId>
  34. <artifactId>jaxb-api</artifactId>
  35. <version>2.3.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.javassist</groupId>
  39. <artifactId>javassist</artifactId>
  40. <version>3.22.0-GA</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <inherited>true</inherited>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.7.0</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. <optimize>true</optimize>
  54. <debug>false</debug>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-assembly-plugin</artifactId>
  59. <version>3.1.0</version>
  60. <configuration>
  61. <descriptorRefs>
  62. <descriptorRef>jar-with-dependencies</descriptorRef>
  63. </descriptorRefs>
  64. </configuration>
  65. <executions>
  66. <execution>
  67. <id>make-assembly</id>
  68. <phase>package</phase>
  69. <goals>
  70. <goal>single</goal>
  71. </goals>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>