ParProg/build.gradle

28 lines
519 B
Groovy
Raw Permalink Normal View History

2024-10-02 10:37:56 +00:00
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'
}