Skip to content

Commit

Permalink
#1085 Modernize Java
Browse files Browse the repository at this point in the history
use Java 8 as source and target version
  • Loading branch information
oliverlietz committed Aug 14, 2023
1 parent 616dc2c commit 3aa3bc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
13 changes: 1 addition & 12 deletions containers/pax-exam-container-karaf/pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>

<parent>
<groupId>org.ops4j.pax</groupId>
<artifactId>exam</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 3aa3bc5

Please sign in to comment.