-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
31 lines (27 loc) · 955 Bytes
/
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
plugins {
id 'java-library'
}
version = '1.0'
group = 'com.bmuschko'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
implementation 'org.glassfish.corba:glassfish-corba-orb:4.2.0-b004'
implementation 'javax.transaction:javax.transaction-api:1.3'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
implementation('com.sun.xml.ws:jaxws-ri:2.3.1') {
exclude module: 'txw2'
exclude module: 'sdo-eclipselink-plugin'
}
def junitJupiterVersion = '5.3.1'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion"
}
tasks.withType(Test) {
useJUnitPlatform()
}