forked from structurizr/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (45 loc) · 1.18 KB
/
Copy pathbuild.gradle
File metadata and controls
53 lines (45 loc) · 1.18 KB
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
plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
springBoot {
buildInfo()
}
group = 'com.structurizr'
version = '1.4.4'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile 'commons-cli:commons-cli:1.4'
compile 'com.structurizr:structurizr-client:1.6.1'
compile 'com.structurizr:structurizr-adr-tools:1.3.6'
compile 'com.structurizr:structurizr-ilograph:1.0.0'
compile 'com.structurizr:structurizr-mermaid:1.4.0'
compile 'com.structurizr:structurizr-plantuml:1.5.1'
compile 'com.structurizr:structurizr-websequencediagrams:1.4.0'
implementation files('lib/structurizr-dsl-1.0.0.jar')
}
test {
useJUnitPlatform()
}
task buildZip(type: Zip) {
from ('build/libs/') {
include 'structurizr-cli*.jar'
}
from ('.') {
include 'README.md'
include 'docs/*'
include 'docs/images/*'
}
from ('etc') {
include 'structurizr.sh'
include 'structurizr.bat'
}
}