Skip to content

Commit 889546b

Browse files
author
volker
committed
Java 11 compatible
1 parent 301782e commit 889546b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<attribute name="test" value="true"/>
2121
</attributes>
2222
</classpathentry>
23-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
23+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
2424
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
2525
<classpathentry kind="output" path="bin/default"/>
2626
</classpath>

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
plugins {
22
id 'maven-publish'
33
id 'signing'
4+
id 'java'
45
}
56

6-
apply plugin: 'java'
7+
java {
8+
sourceCompatibility = JavaVersion.VERSION_11
9+
targetCompatibility = JavaVersion.VERSION_11
10+
}
711

812
repositories {
913
mavenCentral()
@@ -25,7 +29,7 @@ publishing {
2529
maven(MavenPublication) {
2630
groupId = 'de.inetsoftware'
2731
artifactId = 'sass-compiler'
28-
version = '1.1'
32+
version = '1.2'
2933
from components.java
3034
pom {
3135
name = 'Java Sass Compiler'

0 commit comments

Comments
 (0)