Skip to content

Commit b81c616

Browse files
authored
astor is now java17 (#373)
1 parent 29b952e commit b81c616

File tree

13 files changed

+47
-625
lines changed

13 files changed

+47
-625
lines changed

examples/lang_1/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,8 +461,8 @@
461461
<properties>
462462
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
463463
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
464-
<maven.compile.source>1.6</maven.compile.source>
465-
<maven.compile.target>1.6</maven.compile.target>
464+
<maven.compile.source>17</maven.compile.source>
465+
<maven.compile.target>17</maven.compile.target>
466466
<!--
467467
This is also used to generate download_xxx file name.
468468
To override this when generating the download page:

examples/lang_7/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,8 +461,8 @@
461461
<properties>
462462
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
463463
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
464-
<maven.compile.source>1.6</maven.compile.source>
465-
<maven.compile.target>1.6</maven.compile.target>
464+
<maven.compile.source>17</maven.compile.source>
465+
<maven.compile.target>17</maven.compile.target>
466466
<!--
467467
This is also used to generate download_xxx file name.
468468
To override this when generating the download page:

examples/lang_8/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -458,8 +458,8 @@
458458
<properties>
459459
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
460460
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
461-
<maven.compile.source>1.6</maven.compile.source>
462-
<maven.compile.target>1.6</maven.compile.target>
461+
<maven.compile.source>17</maven.compile.source>
462+
<maven.compile.target>17</maven.compile.target>
463463
<!--
464464
This is also used to generate download_xxx file name.
465465
To override this when generating the download page:

examples/math_5/pom.xml

+15-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<name>Commons Math</name>
2121

2222
<properties>
23-
<maven.compiler.source>1.6</maven.compiler.source>
24-
<maven.compiler.target>1.6</maven.compiler.target>
23+
<maven.compiler.source>17</maven.compiler.source>
24+
<maven.compiler.target>17</maven.compiler.target>
2525
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2626

2727
<github.global.server>github</github.global.server>
@@ -37,6 +37,19 @@
3737
</dependencies>
3838

3939

40+
<build>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-compiler-plugin</artifactId>
45+
<version>3.8.1</version>
46+
<configuration>
47+
<source>1.8</source>
48+
<target>1.8</target>
49+
</configuration>
50+
</plugin>
51+
</plugins>
52+
</build>
4053

4154
</project>
4255

examples/math_70/pom.xml

+11-7
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616
limitations under the License.
1717
-->
1818
<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/maven-v4_0_0.xsd">
19-
<parent>
20-
<groupId>org.apache.commons</groupId>
21-
<artifactId>commons-parent</artifactId>
22-
<version>15</version>
23-
</parent>
2419
<modelVersion>4.0.0</modelVersion>
2520
<groupId>org.apache.commons</groupId>
2621
<artifactId>commons-math</artifactId>
@@ -237,8 +232,8 @@
237232
<commons.binary.suffix></commons.binary.suffix>
238233
<commons.jira.id>MATH</commons.jira.id>
239234
<commons.jira.pid>12310485</commons.jira.pid>
240-
<maven.compile.source>1.6</maven.compile.source>
241-
<maven.compile.target>1.6</maven.compile.target>
235+
<maven.compile.source>17</maven.compile.source>
236+
<maven.compile.target>17</maven.compile.target>
242237
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
243238
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
244239
</properties>
@@ -280,6 +275,15 @@
280275
</execution>
281276
</executions>
282277
</plugin>
278+
<plugin>
279+
<groupId>org.apache.maven.plugins</groupId>
280+
<artifactId>maven-compiler-plugin</artifactId>
281+
<version>3.8.1</version>
282+
<configuration>
283+
<source>1.8</source>
284+
<target>1.8</target>
285+
</configuration>
286+
</plugin>
283287
</plugins>
284288
</build>
285289
<reporting>

pom.xml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<project xmlns="https://maven.apache.org/POM/4.0.0"
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
22
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
@@ -125,12 +125,6 @@
125125
<version>1.7.3</version>
126126
</dependency>
127127

128-
<dependency>
129-
<groupId>com.gzoltar</groupId>
130-
<artifactId>gzoltar</artifactId>
131-
<version>0.1.1</version>
132-
</dependency>
133-
134128

135129

136130
<dependency>
@@ -151,6 +145,11 @@
151145
<version>1.0.0-SNAPSHOT</version>
152146
</dependency>
153147

148+
<dependency>
149+
<groupId>com.google.guava</groupId>
150+
<artifactId>guava</artifactId>
151+
<version>30.1-jre</version>
152+
</dependency>
154153

155154
<dependency>
156155
<groupId>com.google.code.gson</groupId>

src/main/java/fr/inria/astor/core/faultlocalization/gzoltar/GZoltarClientMasterFaultLocalization.java

-261
This file was deleted.

0 commit comments

Comments
 (0)