-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (29 loc) · 1.42 KB
/
build.gradle
File metadata and controls
33 lines (29 loc) · 1.42 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
apply plugin: 'java'
repositories {
maven {
url "http://maven.reprezen.com/repository/releases"
}
maven {
url "http://maven.reprezen.com/repository/eclipse/"
}
mavenCentral()
}
dependencies {
compile ('com.modelsolv.reprezen:com.modelsolv.reprezen.generators.api:1.6.11.9445')
compile ('com.modelsolv.reprezen:com.modelsolv.reprezen.generators.xtend:1.6.11.9445') {
exclude module: 'org.eclipse.equinox.bidi'
exclude module: 'org.eclipse.emf.common.ui'
exclude module: 'org.eclipse.e4.ui.workbench3'
exclude module: 'org.apache.batik.css'
exclude module: 'org.eclipse.e4.ui.css.swt'
}
compile ('com.modelsolv.reprezen:com.modelsolv.reprezen.generators.standard:1.6.11.9445')
compile fileTree(dir: '/Users/tanya/RepreZen/workspace/shared/GenTemplates', include: ['*.jar'])
compile fileTree(dir: '/Users/tanya/Documents/workspace/Contract-as-Code-Demo-OpenAPI3---Spring-Boot/Expanded Pet Store (v3)/lib', include: ['*.jar'])
}
task(execGenTarget, dependsOn: 'classes', type: JavaExec) {
main = 'com.modelsolv.reprezen.generators.api.util.GeneratorLauncher'
classpath = sourceSets.main.runtimeClasspath
args '/Users/tanya/Documents/workspace/Contract-as-Code-Demo-OpenAPI3---Spring-Boot/Expanded Pet Store (v3)/gentargets/petstore-expanded/Java Spring (Boot + MVC + CloudFeign) Server/Java Spring (Boot + MVC + CloudFeign) Server.gen'
}
defaultTasks 'execGenTarget'