mirror of
https://github.com/corda/corda.git
synced 2025-01-21 03:55:00 +00:00
Making Quasar Jar to be copied from dependencies after the gradle build (#1388)
* Making Quasar Jar to be copied from dependencies after the gradle build * Addressing review comments
This commit is contained in:
parent
7c9825eab1
commit
30687592c2
@ -68,6 +68,15 @@ dependencies {
|
||||
compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
|
||||
}
|
||||
|
||||
// TODO Consider moving it to quasar-utils in the future (introduced with PR-1388)
|
||||
task copyQuasarJar(type: Copy) {
|
||||
from configurations.quasar
|
||||
into "$project.rootProject.projectDir/lib"
|
||||
rename { filename -> "quasar.jar"}
|
||||
}
|
||||
|
||||
jar.finalizedBy(copyQuasarJar)
|
||||
|
||||
configurations {
|
||||
testArtifacts.extendsFrom testRuntime
|
||||
}
|
||||
|
BIN
lib/quasar.jar
BIN
lib/quasar.jar
Binary file not shown.
Loading…
Reference in New Issue
Block a user