Skip to content

Commit

Permalink
Merge pull request #434 from jbonofre/433
Browse files Browse the repository at this point in the history
Fix the pax-url-aether-test with the right maven-compiler-plugin source and target
  • Loading branch information
jbonofre authored Dec 18, 2024
2 parents bcb7470 + 9c58beb commit 9b2eb5f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pax-url-aether/pax-url-aether-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,17 @@
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 9b2eb5f

Please sign in to comment.