-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
51 lines (41 loc) · 1.31 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
plugins {
id 'org.springframework.boot' version '2.1.9.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
task fatJar(type: Jar) {
//manifest {
// attributes 'Implementation-Title': 'Task Notifier',
// 'Implementation-Version': version,
// 'Main-Class': 'com.mkyong.DateUtils'
//}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
jar {
enabled = true
baseName = 'custom-authentication'
version = '1.0.0'
}
bootJar {
enabled = false
}
group = 'org.bonitasoft'
version = '1.0.0'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compileOnly "org.bonitasoft.engine:bonita-server:7.9.4"
compileOnly "org.bonitasoft.engine:bonita-engine-standalone:7.9.4"
compileOnly "org.bonitasoft.engine:bonita-common:7.9.4"
compileOnly "javax.servlet:servlet-api:2.5"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "com.icegreen:greenmail:1.5.11"
testImplementation "org.bonitasoft.engine:bonita-server:7.9.4"
testImplementation "org.bonitasoft.engine:bonita-engine-standalone:7.9.4"
testImplementation "org.bonitasoft.engine:bonita-common:7.9.4"
}