Skip to content

Commit ea63c1f

Browse files
committed
setting up JDK 17 module
1 parent ddbf7ea commit ea63c1f

3 files changed

Lines changed: 105 additions & 0 deletions

File tree

jdk_17_maven/cs/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
5+
<parent>
6+
<groupId>org.evomaster</groupId>
7+
<artifactId>evomaster-benchmark-jdk17</artifactId>
8+
<version>1.6.2-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>evomaster-benchmark-jdk17-cs</artifactId>
12+
<packaging>pom</packaging>
13+
14+
<modules>
15+
<module>web</module>
16+
</modules>
17+
18+
19+
</project>

jdk_17_maven/cs/web/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
5+
<parent>
6+
<groupId>org.evomaster</groupId>
7+
<artifactId>evomaster-benchmark-jdk17-cs</artifactId>
8+
<version>1.6.2-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>evomaster-benchmark-jdk17-cs-web</artifactId>
12+
<packaging>pom</packaging>
13+
14+
15+
<modules>
16+
<module>spring-petclinic</module>
17+
</modules>
18+
19+
20+
</project>

jdk_17_maven/pom.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
5+
<groupId>org.evomaster</groupId>
6+
<artifactId>evomaster-benchmark-jdk17</artifactId>
7+
8+
<!--
9+
To change version in all modules, use:
10+
mvn versions:set -DnewVersion=a.b.c
11+
-->
12+
<version>1.6.2-SNAPSHOT</version>
13+
14+
<inceptionYear>2017</inceptionYear>
15+
<name>EvoMaster Benchmark (EMB)</name>
16+
<packaging>pom</packaging>
17+
18+
<modules>
19+
<module>cs</module>
20+
<module>em</module>
21+
</modules>
22+
23+
<issueManagement>
24+
<system>Github</system>
25+
<url>https://github.com/EMResearch/EMB/issues</url>
26+
</issueManagement>
27+
28+
<scm>
29+
<connection>scm:git:https://github.com/EMResearch/EMB.git</connection>
30+
<developerConnection>scm:git:https://github.com/EMResearch/EMB.git</developerConnection>
31+
<url>https://github.com/EMResearch/EMB/tree/master</url>
32+
</scm>
33+
34+
<developers>
35+
<developer>
36+
<id>arcuri82</id>
37+
<name>Andrea Arcuri</name>
38+
<email>arcuri82@gmail.com</email>
39+
<url>http://www.arcuriandrea.org</url>
40+
<timezone>2</timezone>
41+
<roles>
42+
<role>Architect/Developer</role>
43+
</roles>
44+
</developer>
45+
</developers>
46+
47+
48+
<properties>
49+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50+
<evomaster-version>1.6.2-SNAPSHOT</evomaster-version>
51+
</properties>
52+
53+
<build>
54+
<plugins>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-compiler-plugin</artifactId>
58+
<configuration>
59+
<source>17</source>
60+
<target>17</target>
61+
</configuration>
62+
</plugin>
63+
</plugins>
64+
</build>
65+
66+
</project>

0 commit comments

Comments
 (0)