Skip to content

Commit dbbf2d1

Browse files
authored
Merge pull request #4 from hypertrace/publish-ht-artifactory
publish plugin artifacts to hypertrace artifactory
2 parents 692cd0e + 2f310ba commit dbbf2d1

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
with:
3434
args: publish
3535
env:
36-
ORG_GRADLE_PROJECT_publishUser: ${{ secrets.BINTRAY_USER }}
37-
ORG_GRADLE_PROJECT_publishApiKey: ${{ secrets.BINTRAY_API_KEY }}
38-
39-
36+
ORG_GRADLE_PROJECT_artifactory_contextUrl: ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
37+
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
38+
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import org.hypertrace.gradle.publishing.License.APACHE_2_0
22

33
plugins {
44
`java-gradle-plugin`
5-
id("org.hypertrace.repository-plugin") version "0.2.1"
6-
id("org.hypertrace.ci-utils-plugin") version "0.1.1"
7-
id("org.hypertrace.publish-plugin") version "0.3.1"
5+
id("org.hypertrace.repository-plugin") version "0.4.0"
6+
id("org.hypertrace.ci-utils-plugin") version "0.3.0"
7+
id("org.hypertrace.publish-plugin") version "1.0.2"
88
}
99

1010
group = "org.hypertrace.gradle.code.style"
@@ -15,7 +15,7 @@ java {
1515
}
1616

1717
dependencies {
18-
api("com.diffplug.spotless:spotless-plugin-gradle:5.11.0")
18+
api("com.diffplug.spotless:spotless-plugin-gradle:5.11.1")
1919
}
2020

2121
gradlePlugin {
@@ -29,4 +29,4 @@ gradlePlugin {
2929

3030
hypertracePublish {
3131
license.set(APACHE_2_0)
32-
}
32+
}

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pluginManagement {
33
mavenLocal()
44
gradlePluginPortal()
55
maven {
6-
url = uri("https://dl.bintray.com/hypertrace/maven")
6+
url = uri("https://hypertrace.jfrog.io/artifactory/maven")
77
}
88
}
99
}
1010

1111
plugins {
12-
id("org.hypertrace.version-settings") version "0.1.1"
12+
id("org.hypertrace.version-settings") version "0.2.0"
1313
}
1414

1515
rootProject.name = "hypertrace-gradle-code-style-plugin"

0 commit comments

Comments
 (0)