This repository has been archived by the owner on Oct 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (46 loc) · 1.99 KB
/
build.gradle
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'java'
id "dependency.check" version "0.0.6"
}
group 'NSPJ'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.jfoenix:jfoenix:8.0.7'
compile 'com.google.cloud:google-cloud-storage:1.31.0'
compile 'com.google.auth:google-auth-library-oauth2-http:0.9.1'
compile 'com.google.api-client:google-api-client:1.23.0'
compile 'com.google.apis:google-api-services-oauth2:v2-rev137-1.23.0'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.11.0-beta'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
compile 'com.google.apis:google-api-services-sqladmin:v1beta4-rev56-1.23.0'
compile 'com.google.cloud.sql:mysql-socket-factory:1.0.8'
compile 'org.pcap4j:pcap4j-core:1.+'
compile 'org.pcap4j:pcap4j-packetfactory-static:1.+'
compile group: 'com.github.vatbub', name: 'VirustotalPublicV2.0', version: '1.1.rB'
compile 'com.google.cloud:google-cloud-logging:1.31.0'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
compile 'com.nexmo:client:3.6.0'
compile 'com.google.apis:google-api-services-iam:v1-rev252-1.23.0'
compile 'com.google.apis:google-api-services-cloudresourcemanager:v1-rev495-1.23.0'
compile group: 'com.amazonaws', name: 'aws-java-sdk-core', version: '1.11.372'
compile group: 'com.amazonaws', name: 'aws-java-sdk-sns', version: '1.11.372'
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.6.1'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'
compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.6.0'
compile group: 'org.slf4j', name: 'slf4j-nop', version: '1.7.25'
}
sourceSets {
main {
java {
srcDirs = ['src']
}
resources {
srcDirs = ['src/View']
}
}
}