-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
93 lines (84 loc) · 1.85 KB
/
Copy pathbuild.gradle
File metadata and controls
93 lines (84 loc) · 1.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
plugins {
id "java"
id "idea"
id "com.gradleup.shadow" version "9.3.1"
}
group = "xyz.taskov1ch.auction"
version = "0.10.19"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenLocal()
mavenCentral()
maven {
name = "luminiadevRepositorySnapshots"
url = uri("https://repo.luminiadev.com/snapshots")
content {
includeGroup "com.koshakmine"
}
}
maven {
name = "luminiadevRepositoryReleases"
url = uri("https://repo.luminiadev.com/releases")
content {
includeGroup "com.luminiadev.fakeinventories"
}
}
maven {
name "opencollabRepositoryMavenReleases"
url "https://repo.opencollab.dev/maven-releases"
content {
includeGroup "me.onebone"
}
}
maven {
name = "densyRepositorySnapshots"
url = uri("https://repo.densy.org/snapshots")
content {
includeGroup "org.densy.polyglot"
}
}
maven {
url "https://jitpack.io"
content {
includeGroup "com.github.MEFRREEX"
includeGroup "org.jooq"
}
}
}
dependencies {
compileOnly "com.koshakmine:Lumi:1.4.0-SNAPSHOT"
compileOnly "com.luminiadev.fakeinventories:fakeinventories:1.2.1"
implementation "com.github.MEFRREEX:JOOQConnector:1.0.1"
implementation "org.jooq:jooq:3.20.11"
implementation "me.onebone:economyapi:2.0.3"
compileOnly "org.densy.polyglot:api:1.1.1-SNAPSHOT"
compileOnly "org.densy.polyglot:core:1.1.1-SNAPSHOT"
compileOnly "org.densy.polyglot:common:1.1.1-SNAPSHOT"
shadow "org.densy.polyglot:api:1.1.1-SNAPSHOT"
shadow "org.densy.polyglot:core:1.1.1-SNAPSHOT"
shadow "org.densy.polyglot:common:1.1.1-SNAPSHOT"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
jar {
enabled = false
}
shadowJar {
configurations = [project.configurations.shadow]
archiveClassifier.set("")
mergeServiceFiles()
}
assemble {
dependsOn shadowJar
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}