Package to Gitea now

This commit is contained in:
Steven Tracey 2022-11-09 10:13:47 -05:00
parent b7f0e13e70
commit 67e2731960

View File

@ -5,7 +5,7 @@ plugins {
}
group 'tech.nevets.osql4j'
version '1.0.1'
version '1.0.0'
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
@ -24,22 +24,22 @@ apply plugin: 'maven-publish'
publishing {
publications{
publish(MavenPublication) {
artifact("nexus/OSQL4J-$version" + ".jar") {
artifact("nexus/OSQL4J-$version" + "-no-deps.jar") {
classifier 'no-deps'
extension 'jar'
}
artifact("nexus/OSQL4J-$version" + "-bundled.jar") {
artifact("nexus/OSQL4J-$version" + ".jar") {
extension 'jar'
}
}
}
repositories {
maven {
name 'nexus'
url "https://repo.nevets.tech/repository/maven-releases/"
name 'gitea'
url "https://git.nevets.tech/api/packages/Steven/maven"
credentials {
username System.getenv('nexusUser')
password System.getenv('nexusPass')
username System.getenv('giteaUser')
password System.getenv('giteaPass')
}
}
}