-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 937 Bytes
/
Copy pathbuild.gradle
File metadata and controls
40 lines (33 loc) · 937 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
29
30
31
32
33
34
35
36
37
38
39
40
apply plugin: 'java-library'
//apply plugin: 'maven'
group = "com.kameecoding"
version = "0.01-SNAPSHOT"
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
wrapper.gradleVersion = "5.6.2"
dependencies {
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
api "org.slf4j:slf4j-api:1.7.25"
api "com.neovisionaries:nv-i18n:1.22"
// https://mvnrepository.com/artifact/org.json/json
implementation "org.json:json:20170516"
implementation "commons-io:commons-io:2.6"
implementation "org.apache.commons:commons-lang3:3.9"
testCompile "junit:junit:4.12"
}
/*
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://94.130.55.149:8081/repository/snapshot/") {
authentication(userName: "admin", password: nexusPassword)
}
pom.version = "${version}"
pom.artifactId = "${project.name}"
pom.groupId = "${project.group}"
}
}
}*/