-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (26 loc) · 718 Bytes
/
build.gradle
File metadata and controls
33 lines (26 loc) · 718 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7.1'
}
}
apply plugin: 'java'
apply plugin: 'nexus'
apply plugin: 'maven'
apply from: 'publish.gradle'
group = 'com.jparams'
version = '1.4.8'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'com.jparams:object-builder:2.3.1'
testImplementation 'junit:junit:4.13'
testImplementation 'org.assertj:assertj-core:3.14.0'
testImplementation 'eu.codearte.catch-exception:catch-exception:2.0'
testImplementation 'org.apache.commons:commons-lang3:3.9'
testImplementation 'com.google.guava:guava:28.2-jre'
}