-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 895 Bytes
/
build.gradle
File metadata and controls
44 lines (36 loc) · 895 Bytes
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.1'
id 'maven-publish'
}
group 'github.Cobeine'
version '1.6.6-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.26'
compileOnly 'org.jetbrains:annotations:23.0.0'
compileOnly 'org.slf4j:slf4j-jdk14:1.6.0' // 2.0.0 fails to bind with SLF4J somehow
compileOnly 'com.zaxxer:HikariCP:4.0.3'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
maven {
url 'https://jitpack.io'
}
}
}
shadowJar {
println "We have been here :P"
archiveBaseName.set("SQLava")
archiveClassifier.set("")
}
apply plugin: 'com.github.johnrengelman.shadow'