Skip to content
Snippets Groups Projects
Commit a83e5b38 authored by dgelessus's avatar dgelessus
Browse files

Remove uses of deprecated Jar.classifier property in build.gradle

parent 05c2c03d
Branches
Tags
No related merge requests found
...@@ -24,12 +24,12 @@ repositories { ...@@ -24,12 +24,12 @@ repositories {
mainClassName = "org.sablecc.sablecc.SableCC" mainClassName = "org.sablecc.sablecc.SableCC"
task javadocJar(type: Jar) { task javadocJar(type: Jar) {
classifier = 'javadoc' archiveClassifier.set("javadoc")
from javadoc from javadoc
} }
task sourcesJar(type: Jar) { task sourcesJar(type: Jar) {
classifier = 'sources' archiveClassifier.set("sources")
from sourceSets.main.allSource from sourceSets.main.allSource
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment