Skip to content

Commit

Permalink
working on build
Browse files Browse the repository at this point in the history
  • Loading branch information
redrezo committed Jul 15, 2020
1 parent e88a8aa commit 44d3096
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ task buildMrJar(type: Jar, dependsOn: [
archiveBaseName = 'org.eclipse.fx.drift'

from( project(':org.eclipse.fx.drift').sourceSets.main.output ) {
exclude '**/DriftFXSurface.class'
exclude 'org/eclipse/fx/drift/DriftFXSurface.class'
exclude 'org/eclipse/fx/drift/internal/DriftUtil.class'
}
from project(':org.eclipse.fx.drift.java8').sourceSets.main.output

Expand Down Expand Up @@ -209,6 +210,18 @@ def signFile(infile, outfile) {
}

}
/*
task signJarFilesXX() {
doLast {
def unsigned = new RequestBody.Builder()
def body = new MultipartBody.Builder()
.type(MultipartBody.FORM)
.addFormDataPart("file", filename, )
}
}
*/

task signJarFiles() {
dependsOn unzipGithubArtifact
Expand Down

0 comments on commit 44d3096

Please sign in to comment.