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

Commit

Permalink
Restore Java 7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Dec 23, 2021
1 parent ff15fcf commit 31f3f0a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plexus-component-metadata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>2.0.0</version>
<version>3.2.2</version>
<configuration>
<debug>true</debug>
<projectsDirectory>src/it</projectsDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -30,8 +30,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>1.6</source>
<target>1.6</target>
<source>7</source>
<target>7</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>1.6</source>
<target>1.6</target>
<source>7</source>
<target>7</target>
</configuration>
</plugin>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus</artifactId>
<version>8</version>
<version>6.5</version>
</parent>

<artifactId>plexus-containers</artifactId>
Expand Down Expand Up @@ -47,7 +47,7 @@
<xbeanReflectVersion>3.7</xbeanReflectVersion>
<mavenVersion>3.2.5</mavenVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javaVersion>8</javaVersion>
<javaVersion>7</javaVersion>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 31f3f0a

Please sign in to comment.