-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (50 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
plugins {
id 'java'
id 'maven-publish'
}
group 'de.datenkollektiv.sandbox'
version '0.1-SNAPSHOT'
repositories {
mavenCentral()
maven {
url "http://repo.spring.io/plugins-release/"
}
flatDir {
dirs 'lib'
}
}
ext {
xqjApiVersion = '1.0'
slf4jApiVersion = '1.7.25'
springFrameworkVersion = '5.0.7.RELEASE'
springDataCommonsVersion = '2.0.8.RELEASE'
}
dependencies {
implementation "org.slf4j:slf4j-api:$slf4jApiVersion"
implementation "javax.xml.xquery:xqj-api:$xqjApiVersion"
runtime group: 'com.xqj2', name: 'xqj2', version: '0.2.0'
implementation group: 'net.xqj', name: 'exist-xqj-api-1.0.1'
implementation "org.springframework:spring-context:$springFrameworkVersion"
implementation "org.springframework:spring-tx:$springFrameworkVersion"
implementation "org.springframework:spring-oxm:$springFrameworkVersion"
implementation "org.springframework.data:spring-data-commons:$springDataCommonsVersion"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.2.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation "javax.inject:javax.inject:1"
testImplementation "org.springframework:spring-test:$springFrameworkVersion"
testImplementation "commons-io:commons-io:2.6"
}
test {
useJUnitPlatform()
}
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = project.name
version = version
from components.java
}
}
}