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

Remove unneeded tla2b Gradle task

It only copies the jar created by createJar to a different location,
which doesn't seem to have any particular use.
parent 42a2f3b2
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,3 @@
.classpath
.project
.settings/
# Build output
TLA2B.jar
language: java
script: ./gradlew tla2b check uploadArchives
script: ./gradlew createJar check uploadArchives
before_install:
- openssl aes-256-cbc -pass pass:$ENCRYPTION_PASSWORD -in secring.gpg.enc -out secring.gpg
......
......@@ -81,17 +81,6 @@ task createJar(type: Jar, dependsOn: classes){
}
}
task tla2b(dependsOn: createJar) {
doLast{
copy {
from('build/libs/')
into('.')
include('TLA2B.jar')
}
}
}
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
apply plugin: 'signing'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment