-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.44 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
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
}
group = 'dev.ultreon'
version = '0.1-SNAPSHOT'
base {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
// CoreLibs maven
maven { url = "https://github.com/Ultreon/corelibs/raw/main/.mvnrepo" }
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
// Google findbugs
implementation 'com.google.code.findbugs:jsr305:3.0.2'
// Jetbrains Annotations
implementation 'org.jetbrains:annotations:23.1.0'
// Ultreon CoreLibs
api "io.github.ultreon.corelibs:collections-v0:0.2.0"
api "io.github.ultreon.corelibs:commons-v0:0.2.0"
api "io.github.ultreon.corelibs:crash-v0:0.2.0"
api "io.github.ultreon.corelibs:datetime-v0:0.2.0"
api "io.github.ultreon.corelibs:events-v1:0.2.0"
api "io.github.ultreon.corelibs:functions-v0:0.2.0"
api "io.github.ultreon.corelibs:registries-v0:0.2.0"
api "io.github.ultreon.corelibs:resources-v0:0.2.0"
api "io.github.ultreon.corelibs:text-v0:0.2.0"
api "io.github.ultreon.corelibs:translations-v0:0.2.0"
}
test {
useJUnitPlatform()
}
java {
withSourcesJar()
}
publishing {
repositories {
mavenLocal()
}
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}