Update project name, add mongodb dependency and fix maven publish
Gitea Test Publishing / Build-Project (push) Successful in 1m25s
Details
Gitea Test Publishing / Build-Project (push) Successful in 1m25s
Details
This commit is contained in:
parent
ec6d5b9f9e
commit
dd669bb4f9
13
build.gradle
13
build.gradle
|
|
@ -1,10 +1,10 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java-library'
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'cc.lndnr'
|
group = 'cc.lndnr'
|
||||||
version = '0.1.0-SNAPSHOT'
|
version = '0.1.1-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
@ -22,15 +22,14 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT"
|
implementation "io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT"
|
||||||
|
api "org.mongodb:mongodb-driver-sync:4.11.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
maven(MavenPublication) {
|
corePublication(MavenPublication) {
|
||||||
groupId = "cc.lndnr"
|
from components.java
|
||||||
artifactId = "core-system"
|
|
||||||
version = version
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
rootProject.name = 'core'
|
rootProject.name = 'core-system'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue