aboutsummaryrefslogtreecommitdiff
path: root/moaSig/moa-asic/build.gradle
diff options
context:
space:
mode:
authorThomas <>2021-03-24 11:18:29 +0100
committerThomas <>2021-03-24 11:18:29 +0100
commiteee21c68c2df2935b74af656247aadd83d3d3178 (patch)
tree3c1d578cc70e841a70b108d7b07140d3c3f456bf /moaSig/moa-asic/build.gradle
parent5150e4414d6db8f87404247249c004530afd80b3 (diff)
downloadmoa-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/moa-asic/build.gradle')
-rw-r--r--moaSig/moa-asic/build.gradle21
1 files changed, 9 insertions, 12 deletions
diff --git a/moaSig/moa-asic/build.gradle b/moaSig/moa-asic/build.gradle
index 8df208c..3ef15cb 100644
--- a/moaSig/moa-asic/build.gradle
+++ b/moaSig/moa-asic/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'java-library-distribution'
distributions {
main{
- baseName = 'MOA-ASIC'
+ distributionBaseName = 'MOA-ASIC'
}
}
@@ -11,17 +11,14 @@ configurations {
}
dependencies {
-
jaxb group: 'com.sun.xml.bind', name: 'jaxb-xjc', version: '2.2.11'
- compile project(':common')
- compile project(':moa-sig-lib')
- compile 'org.slf4j:slf4j-log4j12:1.7.30'
- implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
- implementation group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1'
- //implementation group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.2.11'
- //implementation group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.2.11'
- //implementation group: 'com.sun.xml.ws', name: 'jaxws-ri', version: '2.2.10', ext: 'pom'
+ implementation project(':common')
+ implementation project(':moa-sig-lib')
+ implementation 'org.slf4j:slf4j-log4j12:1.7.30'
+ api group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
+ api group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1'
+
}
sourceSets {
@@ -54,8 +51,8 @@ task jaxb () {
}
task releases(type: Copy) {
- from jar.outputs
- from distZip.outputs
+ //from jar.outputs
+ //from distZip.outputs
from distTar.outputs
into rootDir.toString() + "/releases/" + version
}