Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Require Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed May 2, 2023
1 parent 2db925f commit 1e0385f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>7</source>
<target>7</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions plexus-component-metadata/src/it/descriptor-1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>7</source>
<target>7</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def file = new File(basedir, 'target/classes/META-INF/plexus/components.xml')
assert file.exists()

def componentSet = new XmlParser().parse(file)
def componentSet = new groovy.xml.XmlParser().parse(file)

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

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<xbeanReflectVersion>4.22</xbeanReflectVersion>
<mavenVersion>3.2.5</mavenVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javaVersion>7</javaVersion>
<javaVersion>8</javaVersion>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 1e0385f

Please sign in to comment.