28 lines
519 B
Groovy
28 lines
519 B
Groovy
|
apply plugin: 'java'
|
||
|
apply plugin: 'application'
|
||
|
|
||
|
apply plugin: 'eclipse'
|
||
|
// Run 'gradlew eclipse' for the eclipse project
|
||
|
|
||
|
apply plugin: 'idea'
|
||
|
// Run 'gradle idea' for the IntelliJ idea project (no longer necessary in idea 13)
|
||
|
|
||
|
// Netbeans: See http://plugins.netbeans.org/plugin/44510/gradle-support
|
||
|
|
||
|
|
||
|
mainClassName = "de.dhbw.parprog.JavaPipe"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
flatDir {
|
||
|
dir 'libs'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'commons-lang:commons-lang:2.6'
|
||
|
implementation name: 'processemu'
|
||
|
}
|
||
|
|