Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
update version to 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasnieberler committed Mar 17, 2024
1 parent b268785 commit 12bfe74
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
apply plugin: 'maven-publish'

group 'eu.thesimplecloud.clientserverapi'
version '4.1.18'
version '4.2.0'

sourceCompatibility = 1.8

Expand Down Expand Up @@ -61,26 +61,21 @@ tasks.register('sourcesJar', Jar) {
}

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
}
}
repositories {
maven {
if (project.version.endsWith("SNAPSHOT")) {
url 'https://repo.thesimplecloud.eu/artifactory/list/gradle-dev-local/'
} else {
url 'https://repo.thesimplecloud.eu/artifactory/list/gradle-release-local//'
}

name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/avionik-world/clientserverapi")
credentials {
username = project.hasProperty("mavenUser") ? project.property("mavenUser") : System.getenv("MAVEN_USERNAME")
password = project.hasProperty("mavenPassword") ? project.property("mavenPassword") : System.getenv("MAVEN_PASSWORD")
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
from(components.java)
}
}
}

compileKotlin {
Expand Down

0 comments on commit 12bfe74

Please sign in to comment.