1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * This file was generated by the Gradle 'init' task.
- *
- * This is a general purpose Gradle build.
- * Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/
- */
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'application'
- group = groupName
- version = versionNumber
- //application allows the Task 'run' which runs the main class
- mainClassName = "de.tu_darmstadt.tk.SmartHomeNetworkSim.Main"
- repositories {
- jcenter()
- }
- //Creates the Jar
- jar {
- manifest {
- attributes 'Main-Class': 'de.tu_darmstadt.tk.SmartHomeNetworkSim.Main'
- }
- }
- test {
- ignoreFailures = true
- }
- //Runs the created Jar
- task runIt(dependsOn:jar) {
- doLast {
- javaexec {
- main="-jar"; args jar.archivePath
- }
- }
- }
- dependencies {
- compile 'org.pcap4j:pcap4j-core:1.+'
- compile 'org.pcap4j:pcap4j-packetfactory-static:1.+'
- testCompile 'junit:junit:4.12'
- }
|