Skip to content

Commit 1d8039d

Browse files
committed
finishing up
1 parent e4dcb92 commit 1d8039d

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

build.gradle

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group 'me.Cobeine'
10-
version '1.0-SNAPSHOT'
10+
version '1.0-Beta'
1111

1212
repositories {
1313
mavenCentral()
@@ -31,14 +31,23 @@ dependencies {
3131

3232
}
3333

34-
/*
35-
compileJava {
36-
sourceCompatibility = '11'
37-
targetCompatibility = '11'
34+
publishing {
35+
publications {
36+
mavenJava(MavenPublication) {
37+
from components.java
38+
}
39+
}
40+
repositories {
41+
maven {
42+
url 'https://jitpack.io'
43+
}
44+
}
3845
}
39-
*/
40-
4146
shadowJar {
4247
println "We have been here UWU"
48+
archiveBaseName.set("SQLava")
49+
archiveClassifier.set("")
4350
}
51+
52+
4453
apply plugin: 'com.github.johnrengelman.shadow'

0 commit comments

Comments
 (0)