|
@@ -0,0 +1,106 @@
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <groupId>com.simpyti.cloud</groupId>
|
|
|
+ <artifactId>simple-server-benchmark</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+
|
|
|
+ <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version>
|
|
|
+ <appassembler-maven-plugin.version>2.0.0</appassembler-maven-plugin.version>
|
|
|
+ <docker-maven-plugin.version>0.26.1</docker-maven-plugin.version>
|
|
|
+
|
|
|
+ <mainClass>com.simplyti.cloud.server.benchmark.Main</mainClass>
|
|
|
+
|
|
|
+ <!-- Simple Server -->
|
|
|
+ <simple-server.version>0.0.4-rc3</simple-server.version>
|
|
|
+
|
|
|
+ <!-- Lombok -->
|
|
|
+ <lombok.version>1.18.4</lombok.version>
|
|
|
+
|
|
|
+ <!-- Logging -->
|
|
|
+ <log4j.version>2.10.0</log4j.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <pluginManagement>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>appassembler-maven-plugin</artifactId>
|
|
|
+ <version>${appassembler-maven-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
+ <artifactId>appassembler-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <programs>
|
|
|
+ <program>
|
|
|
+ <mainClass>${mainClass}</mainClass>
|
|
|
+ </program>
|
|
|
+ </programs>
|
|
|
+ <repositoryName>lib</repositoryName>
|
|
|
+ <repositoryLayout>flat</repositoryLayout>
|
|
|
+ <includeConfigurationDirectoryInClasspath>false</includeConfigurationDirectoryInClasspath>
|
|
|
+ </configuration>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>app-assembly</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>assemble</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <!-- Lombok -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>${lombok.version}</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Simple Server -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.simplyti.cloud</groupId>
|
|
|
+ <artifactId>simple-server-di-guice</artifactId>
|
|
|
+ <version>${simple-server.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Logging -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-api</artifactId>
|
|
|
+ <version>${log4j.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-core</artifactId>
|
|
|
+ <version>${log4j.version}</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+</project>
|