Skip to content

Commit

Permalink
Merge pull request #579 from IETS3/feature/PublishItemisCloud
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderpann authored Jul 6, 2022
2 parents de05769 + 62a2b07 commit 319ea23
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,18 @@ publishing {
}
}
}
maven {
name = "itemisCloud"
url = version.toString().endsWith("-SNAPSHOT")
? uri("https://artifacts.itemis.cloud/repository/maven-mps-snapshots/")
: uri("https://artifacts.itemis.cloud/repository/maven-mps-releases/")
if (project.hasProperty("artifacts.itemis.cloud.user") && project.hasProperty("artifacts.itemis.cloud.pw")) {
credentials {
username = project.findProperty("artifacts.itemis.cloud.user")
password = project.findProperty("artifacts.itemis.cloud.pw")
}
}
}
}
repositories {
if(currentBranch == "master" || currentBranch.startsWith("maintenance") || currentBranch.startsWith("mps")) {
Expand Down

0 comments on commit 319ea23

Please sign in to comment.