Skip to content

Commit b8cdae7

Browse files
authored
publish artifacts to hypertrace artifactory (#34)
* publish artifacts to hypertrace artifactory * update service framework version
1 parent e2e26cf commit b8cdae7

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
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,11 +2,11 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22
import org.hypertrace.gradle.publishing.License
33

44
plugins {
5-
id("org.hypertrace.repository-plugin") version "0.2.3"
6-
id("org.hypertrace.ci-utils-plugin") version "0.2.0"
7-
id("org.hypertrace.avro-plugin") version "0.2.4" apply false
8-
id("org.hypertrace.publish-plugin") version "0.3.3" apply false
9-
id("org.hypertrace.jacoco-report-plugin") version "0.1.3" apply false
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.avro-plugin") version "0.3.1" apply false
8+
id("org.hypertrace.publish-plugin") version "1.0.2" apply false
9+
id("org.hypertrace.jacoco-report-plugin") version "0.2.0" apply false
1010
}
1111

1212
subprojects {

kafka-streams-framework/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies {
1616
api("io.confluent:kafka-streams-avro-serde:6.1.0")
1717

1818
implementation("com.google.guava:guava:30.1-jre")
19-
implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.21")
20-
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.21")
19+
implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.23")
20+
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.23")
2121
implementation("org.apache.kafka:kafka-clients:6.1.0-ccs")
2222

2323
testImplementation("org.apache.kafka:kafka-streams-test-utils:6.1.0-ccs")

kafka-streams-serdes/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tasks.test {
1212

1313
dependencies {
1414
api("org.apache.kafka:kafka-streams:6.1.0-ccs")
15-
implementation("org.apache.avro:avro:1.9.2")
15+
implementation("org.apache.avro:avro:1.10.2")
1616
implementation("org.apache.kafka:kafka-clients:6.1.0-ccs")
1717
testImplementation("org.junit.jupiter:junit-jupiter:5.7.0")
1818
constraints {
@@ -26,4 +26,4 @@ dependencies {
2626
// Disabling compatibility check for the test avro definitions.
2727
tasks.named<org.hypertrace.gradle.avro.CheckAvroCompatibility>("avroCompatibilityCheck") {
2828
enabled = false
29-
}
29+
}

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
maven("https://dl.bintray.com/hypertrace/maven")
7+
maven("https://hypertrace.jfrog.io/artifactory/maven")
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
include(":kafka-streams-framework")

0 commit comments

Comments
 (0)