29 lines
794 B
Groovy
29 lines
794 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
|
|
description = 'Master Password Algorithm Implementation'
|
|
|
|
configurations {
|
|
resource
|
|
}
|
|
|
|
dependencies {
|
|
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p1'
|
|
|
|
api( group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.5' )
|
|
api group: 'org.jetbrains', name: 'annotations', version: '13.0'
|
|
api group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
|
|
|
|
// TODO: pending cross-compilation support
|
|
//resource project( path: ':masterpassword-core', configuration: 'releaseSharedRuntimeElements' )
|
|
}
|
|
|
|
jar {
|
|
dependsOn task( type: Sync, 'copyResources' ) {
|
|
from files( configurations.resource )
|
|
into processResources.outputs.files.singleFile
|
|
}
|
|
}
|