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 {
|
||||
id 'java'
|
||||
id 'java-library'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
group = 'cc.lndnr'
|
||||
version = '0.1.0-SNAPSHOT'
|
||||
version = '0.1.1-SNAPSHOT'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
@ -22,15 +22,14 @@ repositories {
|
|||
}
|
||||
|
||||
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 {
|
||||
publications {
|
||||
maven(MavenPublication) {
|
||||
groupId = "cc.lndnr"
|
||||
artifactId = "core-system"
|
||||
version = version
|
||||
corePublication(MavenPublication) {
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
rootProject.name = 'core'
|
||||
rootProject.name = 'core-system'
|
||||
|
|
|
|||
Loading…
Reference in New Issue