Skip to content

Commit

Permalink
publish artifacts to hypertrace artifactory (#22)
Browse files Browse the repository at this point in the history
* publish artifacts to hypertrace artifactory

* update avro version
  • Loading branch information
ravisingal authored Apr 9, 2021
1 parent ef08726 commit 44f36c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
with:
args: publish -x avroCompatibility
env:
ORG_GRADLE_PROJECT_publishUser: ${{ secrets.BINTRAY_USER }}
ORG_GRADLE_PROJECT_publishApiKey: ${{ secrets.BINTRAY_API_KEY }}
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 }}


8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
import org.hypertrace.gradle.publishing.License

plugins {
id("org.hypertrace.repository-plugin") version "0.1.2"
id("org.hypertrace.ci-utils-plugin") version "0.1.1"
id("org.hypertrace.publish-plugin") version "0.3.0" apply false
id("org.hypertrace.jacoco-report-plugin") version "0.1.0" apply false
id("org.hypertrace.repository-plugin") version "0.4.0"
id("org.hypertrace.ci-utils-plugin") version "0.3.0"
id("org.hypertrace.publish-plugin") version "1.0.2" apply false
id("org.hypertrace.jacoco-report-plugin") version "0.2.0" apply false
}

subprojects {
Expand Down
4 changes: 2 additions & 2 deletions data-model/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
`java-library`
jacoco
id("org.hypertrace.avro-plugin") version "0.2.1"
id("org.hypertrace.avro-plugin") version "0.3.1"
id("org.hypertrace.publish-plugin")
id("org.hypertrace.jacoco-report-plugin")
}
Expand All @@ -11,7 +11,7 @@ tasks.test {
}

dependencies {
api("org.apache.avro:avro:1.10.1")
api("org.apache.avro:avro:1.10.2")
api("commons-codec:commons-codec:1.14")
api("io.micrometer:micrometer-core:1.5.3")

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven("https://dl.bintray.com/hypertrace/maven")
maven("https://hypertrace.jfrog.io/artifactory/maven")
}
}

plugins {
id("org.hypertrace.version-settings") version "0.1.1"
id("org.hypertrace.version-settings") version "0.2.0"
}

include(":data-model")

0 comments on commit 44f36c0

Please sign in to comment.