Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 9b48599

Browse files
committed
Update version to 1.1-SNAPSHOT and configure publishing repository
1 parent 4ac0345 commit 9b48599

1 file changed

Lines changed: 17 additions & 3 deletions

File tree

build.gradle

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'gg.nextforge'
9-
version = '1.0'
9+
version = '1.1-SNAPSHOT'
1010

1111
repositories {
1212
mavenCentral()
@@ -69,6 +69,12 @@ java {
6969
withSourcesJar()
7070
}
7171

72+
javadoc {
73+
options.encoding = 'UTF-8'
74+
options.addStringOption('Xdoclint:none', '-quiet')
75+
failOnError = false
76+
}
77+
7278
tasks {
7379
compileJava {
7480
options.encoding = "UTF-8"
@@ -99,13 +105,21 @@ shadowJar {
99105

100106
publishing {
101107
repositories {
102-
mavenLocal()
108+
maven {
109+
name = 'NextForge'
110+
url = uri("http://87.106.178.7:4231/releases")
111+
allowInsecureProtocol = true
112+
credentials {
113+
username = "push_access"
114+
password = project.findProperty("core_token") ?: System.getenv("CORE_TOKEN") ?: ""
115+
}
116+
}
103117
}
104118
publications {
105119
create("mavenJava", MavenPublication) {
106120
from components.java
107121
groupId = project.group
108-
artifactId = 'nextforge'
122+
artifactId = 'nextcore'
109123
version = project.version
110124

111125
pom {

0 commit comments

Comments
 (0)