We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26be76e commit b403c47Copy full SHA for b403c47
build.gradle
@@ -18,7 +18,17 @@ run {
18
if (project.hasProperty('runArgs')) {
19
args findProperty('runArgs')
20
} else {
21
- args = ['ist.meic.pa.GenericFunctions.examples.combine.CombineExample']
+ args = ['ist.meic.pa.GenericFunctions.examples.TestJ']
22
+ }
23
+}
24
+
25
+task runExtended (type: JavaExec) {
26
+ classpath sourceSets.main.runtimeClasspath
27
+ main = 'ist.meic.pa.GenericFunctionsExtended.WithGenericFunctions'
28
+ if (project.hasProperty('runArgs')) {
29
+ args findProperty('runArgs')
30
+ } else {
31
+ args = ['ist.meic.pa.GenericFunctionsExtended.examples.TestJ']
32
}
33
34
0 commit comments