-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (65 loc) · 2.22 KB
/
Copy pathbuild.gradle
File metadata and controls
80 lines (65 loc) · 2.22 KB
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
import com.vanniktech.maven.publish.SonatypeHost
plugins {
id 'java'
id "com.vanniktech.maven.publish" version "0.29.0"
id 'signing'
}
group = 'io.github._3xhaust'
version = '0.1.9'
repositories {
mavenCentral()
}
tasks.withType(Javadoc) {
options {
encoding 'UTF-8'
}
}
signing {
sign publishing.publications
}
mavenPublishing {
signAllPublications()
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
coordinates("io.github.3x-haust", "avnoi-framework", version)
pom {
name = "Avnoi Framework"
description = "Java framework inspired by Nestjs"
inceptionYear = "2024"
url = "https://github.com/3x-haust/Java_AvnoiFramework"
licenses {
license {
name = "MIT License"
url = "https://github.com/3x-haust/Java_AvnoiFramework/blob/main/LICENSE"
distribution = "https://github.com/3x-haust/Java_AvnoiFramework/blob/main/LICENSE"
}
}
developers {
developer {
id = "3xhaust"
name = "3xhaust"
url = "https://github.com/3x-haust/"
}
}
scm {
url = "https://github.com/3x-haust/Java_AvnoiFramework"
connection = "scm:git:git://github.com/3x-haust/Java_AvnoiFramework.git"
developerConnection = "scm:git:ssh://git@github.com/3x-haust/Java_AvnoiFramework.git"
}
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
implementation 'org.reflections:reflections:0.9.11'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.2'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.46.1.0'
implementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.13'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
}
test {
useJUnitPlatform()
}