Skip to content

Commit

Permalink
Java 11 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
volker committed Nov 15, 2023
1 parent 301782e commit 889546b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
plugins {
id 'maven-publish'
id 'signing'
id 'java'
}

apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

repositories {
mavenCentral()
Expand All @@ -25,7 +29,7 @@ publishing {
maven(MavenPublication) {
groupId = 'de.inetsoftware'
artifactId = 'sass-compiler'
version = '1.1'
version = '1.2'
from components.java
pom {
name = 'Java Sass Compiler'
Expand Down

0 comments on commit 889546b

Please sign in to comment.