diff options
author | Thomas <> | 2021-03-24 11:18:29 +0100 |
---|---|---|
committer | Thomas <> | 2021-03-24 11:18:29 +0100 |
commit | eee21c68c2df2935b74af656247aadd83d3d3178 (patch) | |
tree | 3c1d578cc70e841a70b108d7b07140d3c3f456bf /moaSig/common | |
parent | 5150e4414d6db8f87404247249c004530afd80b3 (diff) | |
download | moa-sig-eee21c68c2df2935b74af656247aadd83d3d3178.tar.gz moa-sig-eee21c68c2df2935b74af656247aadd83d3d3178.tar.bz2 moa-sig-eee21c68c2df2935b74af656247aadd83d3d3178.zip |
update gradle version and build process to assemble release packages
Diffstat (limited to 'moaSig/common')
-rw-r--r-- | moaSig/common/build.gradle | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/moaSig/common/build.gradle b/moaSig/common/build.gradle index 5e0d04f..5e9122b 100644 --- a/moaSig/common/build.gradle +++ b/moaSig/common/build.gradle @@ -1,16 +1,16 @@ dependencies { - compile files('../libs/iaik_jce_full-5.62_moa.jar') - - compile 'org.slf4j:slf4j-api:1.7.30' - compile 'xerces:xercesImpl:2.12.0' - compile 'xalan:xalan:2.7.1' - compile 'joda-time:joda-time:2.10.6' - compile 'jaxen:jaxen:1.2.0' + implementation files('../libs/iaik_jce_full-5.62_moa.jar') + api 'org.slf4j:slf4j-api:1.7.30' + api 'xerces:xercesImpl:2.12.0' + api 'xalan:xalan:2.7.1' + api group: 'xalan', name: 'serializer', version: '2.7.1' + api 'joda-time:joda-time:2.10.10' + api 'jaxen:jaxen:1.2.0' } task testJar(type: Jar, dependsOn: testClasses) { - baseName = "test-${project.archivesBaseName}" from sourceSets.test.output + classifier = 'tests' } configurations { @@ -18,6 +18,6 @@ configurations { } artifacts { - tests testJar + archives testJar } |