mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +00:00
54 lines
1.7 KiB
Groovy
54 lines
1.7 KiB
Groovy
|
apply plugin: 'us.kirchmeier.capsule'
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
mavenCentral()
|
||
|
maven {
|
||
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
||
|
}
|
||
|
jcenter()
|
||
|
maven {
|
||
|
url 'https://dl.bintray.com/kotlin/exposed'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task buildCertSignerJAR(type: FatCapsule, dependsOn: 'jar') {
|
||
|
applicationClass 'com.r3corda.netpermission.MainKt'
|
||
|
archiveName 'certSigner.jar'
|
||
|
|
||
|
capsuleManifest {
|
||
|
systemProperties['log4j.configuration'] = 'log4j2.xml'
|
||
|
minJavaVersion = '1.8.0'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
|
||
|
compile project(":core")
|
||
|
|
||
|
// Log4J: logging framework (with SLF4J bindings)
|
||
|
compile "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}"
|
||
|
compile "org.apache.logging.log4j:log4j-core:${log4j_version}"
|
||
|
compile "org.apache.logging.log4j:log4j-web:${log4j_version}"
|
||
|
|
||
|
// Web stuff: for HTTP[S] servlets
|
||
|
compile "org.eclipse.jetty:jetty-servlet:${jetty_version}"
|
||
|
compile "org.eclipse.jetty:jetty-webapp:${jetty_version}"
|
||
|
compile "javax.servlet:javax.servlet-api:3.1.0"
|
||
|
|
||
|
// Jersey for JAX-RS implementation for use in Jetty
|
||
|
compile "org.glassfish.jersey.core:jersey-server:${jersey_version}"
|
||
|
compile "org.glassfish.jersey.containers:jersey-container-servlet-core:${jersey_version}"
|
||
|
compile "org.glassfish.jersey.containers:jersey-container-jetty-http:${jersey_version}"
|
||
|
|
||
|
// JOpt: for command line flags.
|
||
|
compile "net.sf.jopt-simple:jopt-simple:5.0.2"
|
||
|
|
||
|
// Unit testing helpers.
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
||
|
testCompile "com.nhaarman:mockito-kotlin:0.6.1"
|
||
|
}
|