PAN-52 Updated the build.gradle files and the .travis.yml

This commit is contained in:
2019-03-17 16:01:12 -06:00
parent 6197beb309
commit 7548ca64d0
2 changed files with 20 additions and 6 deletions
+8
View File
@@ -50,3 +50,11 @@ task loadDb(type: Exec, group: 'Verification', description: 'Reloads the local d
commandLine=['cmd','/c','loaddb.bat']
}
}
task startPersistenceApi(type: JavaExec, description: 'Starts the Persistence API') {
dependsOn 'loadDb'
dependsOn 'build'
classpath = files('build/libs/persistence-1.0.jar')
classpath += sourceSets.main.runtimeClasspath
main = 'edu.msudenver.tsp.persistence.PersistenceApi'
}