forked from OPCFoundation/UA-Java-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
60 lines (51 loc) · 1.34 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
52
53
54
55
56
57
58
59
60
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java-library'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
api 'org.apache.commons:commons-lang3:3.14.0'
api 'org.slf4j:slf4j-api:2.0.12'
api 'org.bouncycastle:bcpkix-jdk15to18:1.77'
api 'org.bouncycastle:bcpkix-jdk18on:1.77'
api 'jakarta.activation:jakarta.activation-api:2.1.3'
api 'org.apache.httpcomponents:httpclient:4.5.14'
api 'org.apache.httpcomponents:httpcore-nio:4.4.16'
api 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.2'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-core:2.2.17'
testImplementation 'org.slf4j:slf4j-simple:1.7.32'
}
group = 'org.opcfoundation.ua'
version = '1.5.0'
description = 'OPC Foundation Unified Architecture Java Stack'
java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
/*
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
}
*/