File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
src/main/java/org/hypertrace/gradle/dependency Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 build :
12- runs-on : ubuntu-22 .04
12+ runs-on : ubuntu-24 .04
1313 steps :
1414 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1515 - name : Check out code
Original file line number Diff line number Diff line change 88
99jobs :
1010 publish-artifacts :
11- runs-on : ubuntu-22 .04
11+ runs-on : ubuntu-24 .04
1212 steps :
1313 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1414 - name : Check out code
2121 with :
2222 args : publish
2323 env :
24- ORG_GRADLE_PROJECT_artifactory_contextUrl : ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
25- ORG_GRADLE_PROJECT_artifactory_user : ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
26- ORG_GRADLE_PROJECT_artifactory_password : ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
24+ ORG_GRADLE_PROJECT_maven_repo_url : ${{ secrets.HAR_REPO_URL }}
25+ ORG_GRADLE_PROJECT_maven_user : ${{ secrets.HAR_PUBLISH_USER }}
26+ ORG_GRADLE_PROJECT_maven_password : ${{ secrets.HAR_PUBLISH_TOKEN }}
Original file line number Diff line number Diff line change 11import org.hypertrace.gradle.publishing.License.APACHE_2_0
22
33plugins {
4- id(" org.hypertrace.publish-plugin" ) version " 1.0.5 "
4+ id(" org.hypertrace.publish-plugin" ) version " 1.1.1 "
55 id(" org.hypertrace.ci-utils-plugin" ) version " 0.3.2"
66 `java- gradle- plugin`
77}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ pluginManagement {
33 mavenLocal()
44 gradlePluginPortal()
55 maven {
6- url = uri(" https://hypertrace.jfrog.io/artifactory /maven" )
6+ url = uri(" https://us-maven.pkg.dev/hypertrace-repos /maven" )
77 }
88 }
99}
Original file line number Diff line number Diff line change 2121
2222public class HypertraceDependencySettingsPlugin implements Plugin <Settings > {
2323 private static final String HYPERTRACE_REPOSITORY_URL =
24- "https://hypertrace.jfrog.io/artifactory /maven" ;
24+ "https://us-maven.pkg.dev/hypertrace-repos /maven" ;
2525 private static final String CONFLUENT_REPOSITORY_URL = "https://packages.confluent.io/maven" ;
2626 private static final List <String > DEFAULT_LOCKED_CONFIGURATIONS =
2727 List .of (
@@ -187,7 +187,7 @@ private void addVersionCatalog(
187187 * mavenLocal()
188188 * mavenCentral()
189189 * maven("https://packages.confluent.io/maven")
190- * maven("https://hypertrace.jfrog.io/artifactory /maven")
190+ * maven("https://us-maven.pkg.dev/hypertrace-repos /maven")
191191 * }
192192 * }
193193 * </pre>
You can’t perform that action at this time.
0 commit comments