-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
166 lines (135 loc) · 4.62 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// BPM Dimensions
import java.text.SimpleDateFormat
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building a CLI application.
id 'application'
}
apply plugin: 'eclipse'
repositories {
mavenLocal()
ivy {
layout 'pattern' , {
artifact '[organisation]/Releases/Packages/[module]/[revision]/[artifact]-[revision].[ext]'
ivy '[organisation]/Releases/Packages/[module]/[revision]/ivy.xml'
}
url = uri('https://svn.win.tue.nl/repos')
content {
includeGroup 'prom'
}
}
ivy {
layout 'pattern' , {
artifact '[module]/[revision]/[artifact]-[revision].[ext]'
ivy '[module]/[revision]/ivy.xml'
}
url = uri('https://svn.win.tue.nl/repos/prom/Libraries')
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/adamburkegh/prom-helpers")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.token") ?: System.getenv("TOKEN")
}
}
}
mavenCentral()
}
dependencies {
// ProM
implementation 'prom:ApacheUtils:latest'
implementation 'prom:BasicUtils:latest'
implementation 'prom:Widgets:latest'
implementation 'prom:Log:latest'
implementation 'prom:ProcessTree:latest'
implementation 'prom:PTMerge:latest'
implementation 'prom:InductiveMiner:latest'
implementation 'prom:Properties:latest'
implementation 'prom:EfficientStorage:latest'
implementation 'prom-libs:approxlib:1.0' // lib->default in ivy
implementation 'prom-libs:RTED:1.0' // lib->default in ivy
// Stochastic conformance measures
implementation 'prom:EarthMoversStochasticConformanceChecking:latest'
implementation 'prom:StochasticAwareConformanceChecking:latest'
// watchmaker genetic algos - use original not jbuijs fork
implementation 'org.uncommons.watchmaker:watchmaker-framework:0.7.1'
// prom-helpers
implementation 'qut.pm:prom-helpers:0.8.6'
implementation 'qut.pm:prob-process-tree:0.2.1'
// utils inherited from ETM
implementation 'sshtools:j2ssh-common:0.2.9'
implementation 'sshtools:j2ssh-core:0.2.9'
implementation 'xerces:xercesImpl:2.11.0'
implementation 'xerces:xercesImpl:2.6.2'
// Logging and Utils
implementation 'org.apache.logging.log4j:log4j-api:2.8.2'
implementation 'org.apache.logging.log4j:log4j-core:2.8.2'
implementation 'commons-cli:commons-cli:1.4'
//For JDK 9 or later
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.1'
// gradle
implementation 'com.google.guava:guava:29.0-jre'
// Use JUnit test framework
testImplementation 'junit:junit:4.13'
}
application {
// Define the main class for the application.
mainClassName = 'qut.pm.setm.SETMCommandLine'
applicationDefaultJvmArgs = ['-Dlog4j.configurationFile=config/static/log4j2.xml']
}
jar {
doFirst {
manifest.attributes(
'Class-Path':
configurations.runtimeClasspath.files.collect { "$it.name" }.join(' '),
'Main-Class': 'qut.pm.setm.ExperimentRunner'
)
}
delete 'buildid.txt'
outputs.file('buildid.txt')
inputs.property('version', project.version)
doLast {
project.file('buildid.txt') << project.version
project.file('buildid.txt') << new SimpleDateFormat(" yyyy-MM-dd HH:mm:ss").format(new Date())
}
}
group = 'qut.pm'
version = '1.3.5'
description = 'sqdimensions'
sourceCompatibility = '11'
targetCompatibility = '11'
task(copyTask, dependsOn: 'classes', type: JavaExec) {
main 'qut.pm.setm.results.CopyTask'
classpath sourceSets.main.runtimeClasspath
}
task(copyTaskByMeasure, dependsOn: 'classes', type: JavaExec) {
main 'qut.pm.setm.results.CopyTaskByMeasure'
classpath sourceSets.main.runtimeClasspath
}
task(addNote, dependsOn: 'classes', type: JavaExec) {
main 'qut.pm.setm.results.AddNote'
classpath sourceSets.main.runtimeClasspath
}
task(pnmlToDot, dependsOn: 'classes', type: JavaExec) {
main 'qut.pm.prom.helpers.PetriNetConverter'
classpath sourceSets.main.runtimeClasspath
args '-v -i PNML'
}
applicationDistribution.from('config') {
into "config"
}
applicationDistribution.from('scripts') {
into "scripts"
}
distributions {
main {
distributionBaseName = 'spmdim'
contents {
from 'buildid.txt'
}
}
}