Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 1e0385f

Browse files
committed
Require Java 8
1 parent 2db925f commit 1e0385f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

plexus-component-metadata/src/it/annotation-processing-test/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
<artifactId>maven-compiler-plugin</artifactId>
3131
<configuration>
3232
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
33-
<source>7</source>
34-
<target>7</target>
33+
<source>8</source>
34+
<target>8</target>
3535
</configuration>
3636
</plugin>
3737
<plugin>

plexus-component-metadata/src/it/descriptor-1/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-compiler-plugin</artifactId>
4141
<configuration>
42-
<source>7</source>
43-
<target>7</target>
42+
<source>8</source>
43+
<target>8</target>
4444
</configuration>
4545
</plugin>
4646

plexus-component-metadata/src/it/descriptor-1/validate.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
def file = new File(basedir, 'target/classes/META-INF/plexus/components.xml')
2222
assert file.exists()
2323

24-
def componentSet = new XmlParser().parse(file)
24+
def componentSet = new groovy.xml.XmlParser().parse(file)
2525

2626
assert componentSet.components.component.size() == 2
2727

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<xbeanReflectVersion>4.22</xbeanReflectVersion>
4848
<mavenVersion>3.2.5</mavenVersion>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<javaVersion>7</javaVersion>
50+
<javaVersion>8</javaVersion>
5151
</properties>
5252

5353
<dependencyManagement>

0 commit comments

Comments
 (0)