|
@@ -8,11 +8,24 @@
|
|
<description>Ninja test for the TechEmpower/FrameworkBenchmarks project</description>
|
|
<description>Ninja test for the TechEmpower/FrameworkBenchmarks project</description>
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
- <java-version>1.8</java-version>
|
|
|
|
- <ninja.version>5.3.0</ninja.version>
|
|
|
|
- <mysql.version>5.1.38</mysql.version>
|
|
|
|
- <jetty.version>9.3.6.v20151106</jetty.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
+
|
|
|
|
+ <maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
|
|
|
|
+ <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
|
|
|
|
+ <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
|
|
|
+ <maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version>
|
|
|
|
+ <maven-war-plugin.version>3.2.0</maven-war-plugin.version>
|
|
|
|
+
|
|
|
|
+ <h2.version>1.4.196</h2.version>
|
|
|
|
+ <hibernate.version>5.2.12.Final</hibernate.version>
|
|
|
|
+ <hibernate-validator.version>6.0.5.Final</hibernate-validator.version>
|
|
|
|
+ <jaxb-api.version>2.2.12</jaxb-api.version>
|
|
|
|
+ <jetty.version>9.3.6.v20151106</jetty.version>
|
|
|
|
+ <mysql.version>5.1.45</mysql.version>
|
|
|
|
+ <ninja.version>6.2.0</ninja.version>
|
|
|
|
+ <xml-apis.version>1.4.01</xml-apis.version>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
@@ -42,21 +55,51 @@
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
- <groupId>org.hibernate</groupId>
|
|
|
|
- <artifactId>hibernate-hikaricp</artifactId>
|
|
|
|
- <version>4.3.8.Final</version>
|
|
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
+ <artifactId>hibernate-core</artifactId>
|
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
+ <artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
+ <artifactId>hibernate-hikaricp</artifactId>
|
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
+ <artifactId>hibernate-c3p0</artifactId>
|
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.hibernate.validator</groupId>
|
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
|
+ <version>${hibernate-validator.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<artifactId>h2</artifactId>
|
|
- <version>1.3.174</version>
|
|
|
|
|
|
+ <version>${h2.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>xml-apis</groupId>
|
|
<groupId>xml-apis</groupId>
|
|
<artifactId>xml-apis</artifactId>
|
|
<artifactId>xml-apis</artifactId>
|
|
- <version>1.4.01</version>
|
|
|
|
|
|
+ <version>${xml-apis.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>javax.xml.bind</groupId>
|
|
|
|
+ <artifactId>jaxb-api</artifactId>
|
|
|
|
+ <version>${jaxb-api.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</dependencies>
|
|
@@ -66,17 +109,13 @@
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
- <version>3.1</version>
|
|
|
|
- <configuration>
|
|
|
|
- <source>${java-version}</source>
|
|
|
|
- <target>${java-version}</target>
|
|
|
|
- </configuration>
|
|
|
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
- <version>2.4</version>
|
|
|
|
|
|
+ <version>${maven-war-plugin.version}</version>
|
|
<configuration>
|
|
<configuration>
|
|
<warName>ninja</warName>
|
|
<warName>ninja</warName>
|
|
</configuration>
|
|
</configuration>
|
|
@@ -91,7 +130,7 @@
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
- <version>1.0</version>
|
|
|
|
|
|
+ <version>${maven-enforcer-plugin.version}</version>
|
|
<executions>
|
|
<executions>
|
|
<execution>
|
|
<execution>
|
|
<id>enforce-banned-dependencies</id>
|
|
<id>enforce-banned-dependencies</id>
|
|
@@ -140,7 +179,7 @@
|
|
<plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
- <version>2.7</version>
|
|
|
|
|
|
+ <version>${maven-deploy-plugin.version}</version>
|
|
<configuration>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</configuration>
|
|
@@ -148,7 +187,7 @@
|
|
|
|
|
|
<plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
- <version>2.4</version>
|
|
|
|
|
|
+ <version>${maven-assembly-plugin.version}</version>
|
|
<configuration>
|
|
<configuration>
|
|
<descriptorRefs>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|