123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <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.5-rc1</simple-server.version>
-
- <!-- Guava -->
- <guava.version>32.0.0-jre</guava.version>
-
- <!-- Lombok -->
- <lombok.version>1.18.4</lombok.version>
- <!-- Logging -->
- <log4j.version>2.17.1</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>
-
- <!-- Guava -->
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.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>
|