Skip to content

Commit 65397b9

Browse files
committed
target Java 11, buried Java 8 with the rest of the Roman Empire.
Java version numbers are like hieroglyphics, symbolic, nonlinear, and occasionally cursed.
1 parent b9b36dd commit 65397b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ if defined? JRUBY_VERSION
185185
#directory classes = 'pkg/classes'; CLEAN << classes
186186

187187
file jar_file => FileList[ 'src/java/**/*.java' ] do
188-
source = target = '1.8'; debug = true
188+
source = target = '11'; debug = true
189189

190190
get_driver_jars_local = lambda do |*args|
191191
driver_deps = args.empty? ? [ :Postgres, :MySQL ] : args

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@
103103
<artifactId>maven-compiler-plugin</artifactId>
104104
<version>2.5.1</version>
105105
<configuration>
106-
<source>1.8</source>
107-
<target>1.8</target>
106+
<source>11</source>
107+
<target>11</target>
108108
</configuration>
109109
</plugin>
110110
</plugins>

0 commit comments

Comments
 (0)