Skip to content

Commit c588c69

Browse files
committed
indirect jvm level
1 parent 663d1e9 commit c588c69

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
jar 'org.processing:core:3.1.1'
3232

3333
plugin( :compiler, '3.5.1',
34-
'source' => '1.8',
35-
'target' => '1.8' )
34+
'source' => '${maven.compiler.source}',
35+
'target' => '${maven.compiler.target}' )
3636
plugin( :jar, '3.0.2',
3737
'archive' => {
3838
'manifestFile' => 'MANIFEST.MF'

pom.xml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
5+
DO NOT MODIFIY - GENERATED CODE
6+
7+
8+
-->
29
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
310
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
411
<modelVersion>4.0.0</modelVersion>
@@ -58,8 +65,8 @@
5865
<artifactId>maven-compiler-plugin</artifactId>
5966
<version>3.5.1</version>
6067
<configuration>
61-
<source>1.8</source>
62-
<target>1.8</target>
68+
<source>${maven.compiler.source}</source>
69+
<target>${maven.compiler.target}</target>
6370
</configuration>
6471
</plugin>
6572
<plugin>

0 commit comments

Comments
 (0)