Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
- name: Check out code
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
publish-artifacts:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
- name: Check out code
Expand All @@ -21,6 +21,6 @@ jobs:
with:
args: publish
env:
ORG_GRADLE_PROJECT_artifactory_contextUrl: ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
ORG_GRADLE_PROJECT_maven_repo_url: ${{ secrets.HAR_REPO_URL }}
ORG_GRADLE_PROJECT_maven_user: ${{ secrets.HAR_PUBLISH_USER }}
ORG_GRADLE_PROJECT_maven_password: ${{ secrets.HAR_PUBLISH_TOKEN }}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.hypertrace.gradle.publishing.License.APACHE_2_0

plugins {
id("org.hypertrace.publish-plugin") version "1.0.5"
id("org.hypertrace.publish-plugin") version "1.1.1"
id("org.hypertrace.ci-utils-plugin") version "0.3.2"
`java-gradle-plugin`
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pluginManagement {
mavenLocal()
gradlePluginPortal()
maven {
url = uri("https://hypertrace.jfrog.io/artifactory/maven")
url = uri("https://us-maven.pkg.dev/hypertrace-repos/maven")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class HypertraceDependencySettingsPlugin implements Plugin<Settings> {
private static final String HYPERTRACE_REPOSITORY_URL =
"https://hypertrace.jfrog.io/artifactory/maven";
"https://us-maven.pkg.dev/hypertrace-repos/maven";
private static final String CONFLUENT_REPOSITORY_URL = "https://packages.confluent.io/maven";
private static final List<String> DEFAULT_LOCKED_CONFIGURATIONS =
List.of(
Expand Down Expand Up @@ -187,7 +187,7 @@ private void addVersionCatalog(
* mavenLocal()
* mavenCentral()
* maven("https://packages.confluent.io/maven")
* maven("https://hypertrace.jfrog.io/artifactory/maven")
* maven("https://us-maven.pkg.dev/hypertrace-repos/maven")
* }
* }
* </pre>
Expand Down