2
0
MasterPassword/core/java/algorithm/build.gradle

29 lines
794 B
Groovy
Raw Normal View History

plugins {
id 'java-library'
}
2017-02-06 16:16:04 +00:00
description = 'Master Password Algorithm Implementation'
configurations {
resource
2017-02-06 16:16:04 +00:00
}
2018-05-22 05:00:14 +00:00
dependencies {
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p1'
2018-05-22 05:00:14 +00:00
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'
2018-05-22 05:00:14 +00:00
// TODO: pending cross-compilation support
//resource project( path: ':masterpassword-core', configuration: 'releaseSharedRuntimeElements' )
2018-05-22 05:00:14 +00:00
}
jar {
dependsOn task( type: Sync, 'copyResources' ) {
from files( configurations.resource )
into processResources.outputs.files.singleFile
2018-05-22 05:00:14 +00:00
}
}