代码拉取完成,页面将自动刷新
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'application'
group = 'cic.unb.ca'
version = '4.0'
description = """CICFlowMeterV4"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url "https://clojars.org/repo" }
}
dependencies {
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.0'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.25'
compile group: 'jnetpcap', name: 'jnetpcap', version:'1.4.r1425-1g'
compile group: 'junit', name: 'junit', version:'4.12'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.6'
compile group: 'org.apache.commons', name: 'commons-math3', version:'3.5'
compile group: 'commons-io', name: 'commons-io', version:'2.5'
compile group: 'nz.ac.waikato.cms.weka', name: 'weka-stable', version:'3.6.14'
// https://mvnrepository.com/artifact/org.jfree/jfreechart
compile group: 'org.jfree', name: 'jfreechart', version: '1.5.0'
// https://mvnrepository.com/artifact/com.google.guava/guava
compile group: 'com.google.guava', name: 'guava', version: '23.6-jre'
// https://mvnrepository.com/artifact/org.apache.tika/tika-core
compile group: 'org.apache.tika', name: 'tika-core', version: '1.17'
}
sourceSets {
main {
java {
srcDir 'src'
exclude '**/CICFlowMeter.java'
}
}
}
task zipSrc(type: Zip){
baseName "${applicationName}-Source"
destinationDir = file('build/')
from('.'){
include '**/'
exclude '.gradle/','build/','bin/','logs/','*.iml','*.ipr','*.iws','.idea/','out/','data/'
into "${applicationName}V${version}-Src"
}
}
import org.apache.tools.ant.DirectoryScanner
task zipPro(type: Zip){
doFirst {
DirectoryScanner.defaultExcludes.each { DirectoryScanner.removeDefaultExclude it }
//DirectoryScanner.addDefaultExclude 'something has to be in here or everything gets excluded'
}
doLast {
DirectoryScanner.resetDefaultExcludes()
}
baseName "${applicationName}-Full"
destinationDir = file('build/')
from('.'){
include '**/'
exclude '.gradle/','build/','bin/','logs/','*.iml','*.ipr','*.iws','.idea/','out/','data/',".git/"
into "${applicationName}V${version}"
}
}
task fatJar(type: Jar) {
println 'type Jar'
manifest {
attributes 'Premain-Class': 'swing.common.ObjectSizeFetcher'
attributes 'Can-Retransform-Classes': true
attributes 'Implementation-Title': 'Gradle Jar File Example',
'Implementation-Version': version,
'Main-Class': 'cic.cs.unb.ca.ifm.App'
}
/*baseName = "NetWorkTraffic" + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
into(new File('build/jar/'))
with jar*/
}
task execute(type: JavaExec) {
println 'type JavaExec'
main = "cic.cs.unb.ca.ifm.App" //main class
classpath = sourceSets.main.runtimeClasspath
String osName = System.getProperty('os.name').toLowerCase()
if(osName.contains('windows')){
jvmArgs '-Djava.library.path=jnetpcap/win/jnetpcap-1.4.r1500'
}else{
jvmArgs '-Djava.library.path=jnetpcap/linux/jnetpcap-1.4.r1500'
}
}
task exeCMD(type: JavaExec){
main = "cic.cs.unb.ca.ifm.Cmd" //main class
classpath = sourceSets.main.runtimeClasspath
String osName = System.getProperty('os.name').toLowerCase()
if(osName.contains('windows')){
jvmArgs '-Djava.library.path=jnetpcap/win/jnetpcap-1.4.r1500'
}else{
jvmArgs '-Djava.library.path=jnetpcap/linux/jnetpcap-1.4.r1500'
}
args = ["/media/farodin/AEAA59A1AA59673D/CICIDS2018/cse-cic-ids2018/Original Network Traffic and Log data/Friday-16-02-2018/pcap/",
"/media/farodin/AEAA59A1AA59673D/CICIDS2018/cse-cic-ids2018/Original Network Traffic and Log data/Friday-16-02-2018/csv/"]
}
task cmdScript(type: CreateStartScripts) {
mainClassName = "cic.cs.unb.ca.ifm.Cmd"
applicationName = "cfm"
outputDir = new File(project.buildDir, 'scripts')
classpath = jar.outputs.files + project.configurations.runtime
defaultJvmOpts = ["-Djava.library.path=../lib/native"]
}
applicationDistribution.into("bin") {
from(cmdScript)
fileMode = 0755
}
// The Application Plugin
mainClassName = "cic.cs.unb.ca.ifm.App"
applicationName = "CICFlowMeter"
applicationDefaultJvmArgs = ["-Djava.library.path=../lib/native"]
applicationDistribution.from("jnetpcap/linux/jnetpcap-1.4.r1500") {
include "*.so"
into('lib/native')
}
applicationDistribution.from("jnetpcap/win/jnetpcap-1.4.r1500") {
include "*.dll"
into('lib/native')
}
applicationDistribution.from('LICENSE.txt'){
into('')
}
applicationDistribution.from('ReadMe.txt'){
into('')
rename("ReadMe.txt","README.md")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。