Skip to content

Commit ea5a782

Browse files
committed
refactor: remove unused publishing configuration from build.gradle
1 parent 4a391e8 commit ea5a782

1 file changed

Lines changed: 0 additions & 54 deletions

File tree

build.gradle

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -34,58 +34,4 @@ tasks.withType(JavaCompile).configureEach {
3434

3535
javadoc {
3636
options.encoding = 'UTF-8'
37-
options.charSet = 'UTF-8'
38-
options.links(
39-
'https://jd.papermc.io/paper/1.21/',
40-
'https://javadoc.io/doc/org.projectlombok/lombok/latest/'
41-
)
42-
}
43-
44-
publishing {
45-
publications {
46-
mavenJava(MavenPublication) {
47-
groupId = 'io.github.pluginlangcore'
48-
artifactId = 'pluginlangcore'
49-
version = project.version
50-
from components.java
51-
52-
pom {
53-
name = 'PluginLangCore'
54-
description = 'A comprehensive language and message management library for Minecraft plugins'
55-
url = 'https://github.com/NighterDevelopment/PluginLangCore'
56-
57-
licenses {
58-
license {
59-
name = 'MIT License'
60-
url = 'https://opensource.org/licenses/MIT'
61-
}
62-
}
63-
64-
developers {
65-
developer {
66-
id = 'nighter'
67-
name = 'Nighter'
68-
email = 'notnighter@gmail.com'
69-
}
70-
}
71-
72-
scm {
73-
connection = 'scm:git:git://github.com/NighterDevelopment/PluginLangCore.git'
74-
developerConnection = 'scm:git:ssh://github.com/NighterDevelopment/PluginLangCore.git'
75-
url = 'https://github.com/NighterDevelopment/PluginLangCore'
76-
}
77-
}
78-
}
79-
}
80-
81-
repositories {
82-
maven {
83-
name = "GitHubPackages"
84-
url = uri("https://maven.pkg.github.com/YOUR_USERNAME/PluginLangCore")
85-
credentials {
86-
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
87-
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
88-
}
89-
}
90-
}
9137
}

0 commit comments

Comments
 (0)