Skip to content

Commit 09dd62c

Browse files
author
emmanue1
committed
Change javac source and target options to 1.8
1 parent 899ba4e commit 09dd62c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ apply plugin: 'nebula.ospackage'
1717

1818
// Common configuration //
1919
version='1.4.2'
20-
targetCompatibility = '1.7'
20+
targetCompatibility = '1.8'
2121

2222
allprojects {
2323
apply plugin: 'eclipse'
2424
apply plugin: 'idea'
2525

2626
tasks.withType(JavaCompile) {
27-
sourceCompatibility = targetCompatibility = '1.7'
27+
sourceCompatibility = targetCompatibility = '1.8'
2828
options.compilerArgs << '-Xlint:unchecked'
2929
}
3030
tasks.withType(GroovyCompile) {
31-
sourceCompatibility = targetCompatibility = '1.7'
31+
sourceCompatibility = targetCompatibility = '1.8'
3232
options.compilerArgs << '-Xlint:unchecked'
3333
}
3434

src/osx/resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<key>JavaX</key>
9595
<dict>
9696
<key>MainClass</key> <string>org.jd.gui.OsxApp</string>
97-
<key>JVMVersion</key> <string>1.7+</string>
97+
<key>JVMVersion</key> <string>1.8+</string>
9898
<key>ClassPath</key> <string>\$JAVAROOT/jd-gui-${VERSION}.jar</string>
9999
<key>WorkingDirectory</key> <string>\$JAVAROOT</string>
100100
<key>Properties</key>

0 commit comments

Comments
 (0)