Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What: Allow proto definition providers to specify the root of the pro… #30

Open
wants to merge 5 commits into
base: development
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build-Jdk setting fixed.
  • Loading branch information
noel-yap committed Oct 22, 2020
commit c2ebc989f58b9432ee2a608543d5ff26de1a7b26
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ task distFatJar(type: Jar) {
'Built-By' : System.properties['user.name'],
'Build-Timestamp': new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").format(new Date()),
'Created-By' : "Gradle ${gradle.gradleVersion}",
'Build-Jdk' : "${System.properties['java.revision']}",
'Build-Jdk' : "${System.properties['java.version']}",
"Main-Class" : "io.protop.cli.ProtopCli"
)
}

from sourceSets.main.output

// Do the rest of this task as such because https://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar
doFirst {

from configurations.runtimeClasspath.
findAll { it.name.endsWith('jar') }.
collect { zipTree(it) }
Expand Down