-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.14 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.caucho:hessian:4.0.66'
implementation 'org.springframework:spring-context:6.0.2'
implementation 'org.springframework:spring-web:6.0.2'
implementation 'org.springframework:spring-aop:6.0.2'
implementation 'jakarta.servlet:jakarta.servlet-api:6.0.0'
implementation 'jakarta.jws:jakarta.jws-api:2.1.0'
implementation 'jakarta.xml.ws:jakarta.xml.ws-api:2.3.3'
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
implementation 'commons-codec:commons-codec:1.15'
}
group = 'de.plumstone'
version = '6.0.2'
description = 'spring6-hessian-support'
java.sourceCompatibility = JavaVersion.VERSION_17
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact sourcesJar
}
}
repositories {
mavenLocal()
mavenCentral()
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}