-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
120 lines (100 loc) · 3.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
plugins {
id 'java-library'
id 'maven-publish'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
group = 'app.tozzi'
version = '5.1.0'
compileJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
// Java Mail
implementation 'jakarta.mail:jakarta.mail-api:2.1.3'
implementation 'org.eclipse.angus:angus-mail:2.0.3'
// Java Activation
implementation 'jakarta.activation:jakarta.activation-api:2.1.3'
runtimeOnly 'org.eclipse.angus:angus-activation:2.0.2'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.36'
annotationProcessor 'org.projectlombok:lombok:1.18.36'
// Log
implementation 'org.slf4j:slf4j-api:2.0.17'
// Utils
implementation 'org.apache.commons:commons-lang3:3.17.0'
// XML
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.2'
// Test
testImplementation 'org.junit.jupiter:junit-jupiter:5.12.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.mockito:mockito-core:5.16.1'
testImplementation 'org.projectlombok:lombok:1.18.36'
testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
publishing {
publications {
mavenJava(MavenPublication) {
group = 'app.tozzi'
artifactId = 'pec-parser'
version = "5.1.0"
from components.java
pom {
name = 'pec-parser'
description = 'Utility per l\'elaborazione di messaggi di Posta Elettronica Certificata (e messaggi di posta ordinaria)'
url = 'https://www.tozzi.app'
licenses {
license {
name = 'Apache License 2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'biagio.tozzi'
name = 'Biagio Placido Tozzi'
email = '[email protected]'
url = 'https://www.tozzi.app'
}
}
scm {
connection = 'scm:git:git://github.com:biagioT/java-pec-parser.git'
developerConnection = 'scm:git:ssh://github.com:biagioT/java-pec-parser.git'
url = 'https://github.com/biagioT/java-pec-parser/tree/main'
}
}
}
}
repositories {
maven {
url = layout.buildDirectory.dir('staging-deploy')
}
}
}
javadoc {
options.addBooleanOption('html5', true)
options.encoding = 'UTF-8'
}
test {
useJUnitPlatform()
}
jar {
enabled = true
archiveClassifier.set('')
}