-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·37 lines (31 loc) · 894 Bytes
/
Copy pathbuild.gradle
File metadata and controls
executable file
·37 lines (31 loc) · 894 Bytes
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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'eclipse'
buildscript {
repositories { jcenter() }
}
group = 'org.jpos.template'
version = '2.1.11-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url 'http://jpos.org/maven' }
maven { url 'http://download.oracle.com/maven' }
}
dependencies {
compile ('org.jpos:jpos:2.1.11-+') {
exclude(module: 'junit')
exclude(module: 'hamcrest-core')
}
compile ('org.jpos.ee:jposee-db-h2:2.2.+')
compile ('org.jpos.ee:jposee-txn:2.2.+')
compile ('org.jpos.ee:jposee-groovy:2.2.+')
compile ('com.sun.xml.bind:jaxb-impl:2.1.2')
compile ('com.sun.activation:javax.activation:1.2.0')
compile ('javax.xml.bind:jaxb-api:2.3.0')
testCompile 'junit:junit:4.8.2'
}
apply from: 'jpos-app.gradle'