File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99
1010jobs :
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
16- uses : actions/checkout@v3
16+ uses : actions/checkout@v4
1717 with :
1818 ref : ${{github.event.pull_request.head.ref}}
1919 repository : ${{github.event.pull_request.head.repo.full_name}}
Original file line number Diff line number Diff line change 77
88jobs :
99 test :
10- runs-on : ubuntu-22 .04
10+ runs-on : ubuntu-24 .04
1111 steps :
1212 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1313 - name : Check out code
14- uses : actions/checkout@v3
14+ uses : actions/checkout@v4
1515 with :
1616 fetch-depth : 0
1717
4646 files : ./**/build/test-results/**/*.xml
4747
4848 dependency-check :
49- runs-on : ubuntu-22 .04
49+ runs-on : ubuntu-24 .04
5050 steps :
5151 - name : Dependency Check
5252 uses : hypertrace/github-actions/dependency-check@main
53+ with :
54+ nvd-api-key : ${{ secrets.NVD_API_KEY }}
Original file line number Diff line number Diff line change 88
99jobs :
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
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
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 }}
Original file line number Diff line number Diff line change 11# Kafka streams application framework
22###### org.hypertrace.core.kafkastreams.framework
33
4- [ ![ CircleCI] ( https://circleci.com/gh/hypertrace/kafka-streams-framework.svg?style=svg )] ( https://circleci.com/gh/hypertrace/kafka-streams-framework )
5-
64A library to create kafka streams based applications (services)
75
Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22import org.hypertrace.gradle.publishing.License
33
44plugins {
5- id(" org.hypertrace.repository-plugin" ) version " 0.4.2 "
6- id(" org.hypertrace.ci-utils-plugin" ) version " 0.3.2 "
7- id(" org.hypertrace.avro-plugin" ) version " 0.4 .0" apply false
8- id(" org.hypertrace.publish-plugin" ) version " 1.0.5 " apply false
9- id(" org.hypertrace.jacoco-report-plugin" ) version " 0.2.1 " apply false
10- id(" org.hypertrace.code-style-plugin" ) version " 2.0.0 " apply false
11- id(" org.owasp.dependencycheck" ) version " 8.2.1 "
5+ id(" org.hypertrace.repository-plugin" ) version " 0.5.0 "
6+ id(" org.hypertrace.ci-utils-plugin" ) version " 0.4.0 "
7+ id(" org.hypertrace.avro-plugin" ) version " 0.5 .0" apply false
8+ id(" org.hypertrace.publish-plugin" ) version " 1.1.1 " apply false
9+ id(" org.hypertrace.jacoco-report-plugin" ) version " 0.3.0 " apply false
10+ id(" org.hypertrace.code-style-plugin" ) version " 2.1.2 " apply false
11+ id(" org.owasp.dependencycheck" ) version " 12.1.0 "
1212}
1313
1414subprojects {
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ pluginManagement {
44 repositories {
55 mavenLocal()
66 gradlePluginPortal()
7- maven(" https://hypertrace.jfrog.io/artifactory /maven" )
7+ maven(" https://us-maven.pkg.dev/hypertrace-repos /maven" )
88 }
99}
1010
1111plugins {
12- id(" org.hypertrace.version-settings" ) version " 0.2 .0"
12+ id(" org.hypertrace.version-settings" ) version " 0.3 .0"
1313}
1414
1515include(" :kafka-streams-framework" )
You can’t perform that action at this time.
0 commit comments