Skip to content

Commit 069e9b9

Browse files
build: update repos (#6)
1 parent bd07cc0 commit 069e9b9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
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

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
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
@@ -21,6 +21,6 @@ jobs:
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 }}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.hypertrace.gradle.publishing.License.APACHE_2_0
22

33
plugins {
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
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/main/java/org/hypertrace/gradle/dependency/HypertraceDependencySettingsPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
public 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>

0 commit comments

Comments
 (0)