Skip to content

Commit

Permalink
revert: upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
zly2006 committed May 14, 2024
1 parent 988c588 commit 9b30e55
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,6 @@ ext.configurePublishing = { packageName, packageDesc, packageVersion ->
password = System.getenv('NEXUS_UPD_PASS')?.trim() ?: ''
}
}
maven {
name = "realRobotixMaven"
url = "https://maven.realrobotix.me/imgui-java/"
credentials {
username = System.getenv("MAVEN_USER") ?: project.findProperty("realRobotixMavenUsername")
password = System.getenv("MAVEN_TOKEN") ?: project.findProperty("realRobotixMavenPassword")
}
}
}
publications {
imgui(MavenPublication) {
Expand All @@ -51,21 +43,16 @@ ext.configurePublishing = { packageName, packageDesc, packageVersion ->
}
}
developers {
developer {
id = 'realRobotix'
name = 'realRobotix'
email = 'xzwmfki0p@mozmail.com'
}
developer {
id = 'SpaiR'
name = 'Ilya Prymshyts'
email = 'despsolver@gmail.com'
}
}
scm {
connection = 'scm:git:https://github.com/realRobotix/imgui-java.git'
developerConnection = 'scm:git:https://github.com/realRobotix/imgui-java.git'
url = 'https://github.com/realRobotix/imgui-java/'
connection = 'scm:git:https://github.com/SpaiR/imgui-java.git'
developerConnection = 'scm:git:https://github.com/SpaiR/imgui-java.git'
url = 'https://github.com/SpaiR/imgui-java.git'
}
}
}
Expand Down

0 comments on commit 9b30e55

Please sign in to comment.