pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.simpyti.cloud</groupId>
  6. <artifactId>simple-server-benchmark</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <java.version>1.8</java.version>
  11. <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
  12. <appassembler-maven-plugin.version>2.0.0</appassembler-maven-plugin.version>
  13. <docker-maven-plugin.version>0.26.1</docker-maven-plugin.version>
  14. <mainClass>com.simplyti.cloud.server.benchmark.Main</mainClass>
  15. <!-- Simple Server -->
  16. <simple-server.version>0.0.5-rc1</simple-server.version>
  17. <!-- Guava -->
  18. <guava.version>32.0.0-jre</guava.version>
  19. <!-- Lombok -->
  20. <lombok.version>1.18.4</lombok.version>
  21. <!-- Logging -->
  22. <log4j.version>2.17.1</log4j.version>
  23. </properties>
  24. <build>
  25. <pluginManagement>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>${maven-compiler-plugin.version}</version>
  31. <configuration>
  32. <source>${java.version}</source>
  33. <target>${java.version}</target>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.codehaus.mojo</groupId>
  38. <artifactId>appassembler-maven-plugin</artifactId>
  39. <version>${appassembler-maven-plugin.version}</version>
  40. </plugin>
  41. </plugins>
  42. </pluginManagement>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.codehaus.mojo</groupId>
  46. <artifactId>appassembler-maven-plugin</artifactId>
  47. <configuration>
  48. <programs>
  49. <program>
  50. <mainClass>${mainClass}</mainClass>
  51. </program>
  52. </programs>
  53. <repositoryName>lib</repositoryName>
  54. <repositoryLayout>flat</repositoryLayout>
  55. <includeConfigurationDirectoryInClasspath>false</includeConfigurationDirectoryInClasspath>
  56. </configuration>
  57. <executions>
  58. <execution>
  59. <id>app-assembly</id>
  60. <phase>package</phase>
  61. <goals>
  62. <goal>assemble</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. <dependencies>
  70. <!-- Lombok -->
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <version>${lombok.version}</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. <!-- Simple Server -->
  78. <dependency>
  79. <groupId>com.simplyti.cloud</groupId>
  80. <artifactId>simple-server-di-guice</artifactId>
  81. <version>${simple-server.version}</version>
  82. </dependency>
  83. <!-- Guava -->
  84. <dependency>
  85. <groupId>com.google.guava</groupId>
  86. <artifactId>guava</artifactId>
  87. <version>${guava.version}</version>
  88. </dependency>
  89. <!-- Logging -->
  90. <dependency>
  91. <groupId>org.apache.logging.log4j</groupId>
  92. <artifactId>log4j-api</artifactId>
  93. <version>${log4j.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.logging.log4j</groupId>
  97. <artifactId>log4j-core</artifactId>
  98. <version>${log4j.version}</version>
  99. </dependency>
  100. </dependencies>
  101. </project>