-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (37 loc) · 889 Bytes
/
build.gradle
File metadata and controls
43 lines (37 loc) · 889 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
41
42
43
plugins {
id 'java'
id 'jacoco'
id 'java-library'
id 'maven-publish'
}
group 'io.pdfapi'
version '3.1.0'
sourceCompatibility = 8
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
maven {
name 'nexus'
url "https://nexus.bitweb.ee/repository/maven-public/"
credentials {
username = project.repoUser
password = project.repoPassword
}
}
}
}
jar {
from sourceSets.main.allSource
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
}