-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
48 lines (41 loc) · 1.22 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
plugins {
id 'java-library'
id 'maven-publish'
}
group = 'anshumax.dev'
version = '1.0'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
groupId group
artifactId rootProject.name
version version
pom {
name = 'BSE StarMF Java Library'
description = 'An implementation of the BSE StarMF SOAP Web Service in Java.'
}
}
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'com.google.guava', name: 'guava', version: '27.0.1-jre'
implementation 'org.apache.pdfbox:pdfbox:2.0.26'
implementation group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '2.3.3'
implementation 'org.glassfish.jaxb:jaxb-runtime:4.0.0'
implementation 'com.sun.xml.ws:jaxws-rt:4.0.0'
implementation 'com.sun.xml.ws:rt:4.0.0'
}