Skip to content

Commit

Permalink
porting math_70 to java17
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus committed Aug 5, 2024
1 parent 7c3b6a2 commit 51ebf04
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions examples/math_70/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
Expand Down Expand Up @@ -280,6 +275,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
Expand Down

0 comments on commit 51ebf04

Please sign in to comment.