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

Commit 31f3f0a

Browse files
committed
Restore Java 7 compatibility
1 parent ff15fcf commit 31f3f0a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

plexus-component-metadata/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<plugin>
102102
<groupId>org.apache.maven.plugins</groupId>
103103
<artifactId>maven-invoker-plugin</artifactId>
104-
<version>2.0.0</version>
104+
<version>3.2.2</version>
105105
<configuration>
106106
<debug>true</debug>
107107
<projectsDirectory>src/it</projectsDirectory>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>junit</groupId>
1616
<artifactId>junit</artifactId>
17-
<version>3.8.1</version>
17+
<version>4.13.2</version>
1818
<scope>test</scope>
1919
</dependency>
2020
<dependency>
@@ -30,8 +30,8 @@
3030
<artifactId>maven-compiler-plugin</artifactId>
3131
<configuration>
3232
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
33-
<source>1.6</source>
34-
<target>1.6</target>
33+
<source>7</source>
34+
<target>7</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>1.6</source>
43-
<target>1.6</target>
42+
<source>7</source>
43+
<target>7</target>
4444
</configuration>
4545
</plugin>
4646

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.codehaus.plexus</groupId>
77
<artifactId>plexus</artifactId>
8-
<version>8</version>
8+
<version>6.5</version>
99
</parent>
1010

1111
<artifactId>plexus-containers</artifactId>
@@ -47,7 +47,7 @@
4747
<xbeanReflectVersion>3.7</xbeanReflectVersion>
4848
<mavenVersion>3.2.5</mavenVersion>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
50-
<javaVersion>8</javaVersion>
50+
<javaVersion>7</javaVersion>
5151
</properties>
5252

5353
<dependencyManagement>

0 commit comments

Comments
 (0)