-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) Β· 881 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) Β· 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
plugins {
id 'org.springframework.boot' version '2.1.7.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'web'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation files("${rootDir}/lib/sigar.jar")
implementation 'org.pcap4j:pcap4j-core:1.+'
implementation 'org.pcap4j:pcap4j-packetfactory-static:1.+'
implementation 'org.apache.commons:commons-lang3:3.0'
implementation 'com.google.guava:guava:28.0-jre'
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation 'org.projectlombok:lombok'
implementation 'org.springframework:spring-core:5.1.8.RELEASE'
implementation 'com.github.jknack:handlebars:4.1.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.1'
testImplementation 'org.assertj:assertj-core:3.12.2'
}