File tree Expand file tree Collapse file tree
exporters/otlp/testing-internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 - name : Set up gradle
2525 uses : gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
2626
27- - run : ./gradlew ossIndexAudit
27+ - run : ./gradlew ossIndexAudit --no-configuration-cache
2828 id : audit
2929 continue-on-error : true
3030 env :
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ plugins {
55description = " OpenTelemetry All"
66otelJava.moduleName.set(" io.opentelemetry.all" )
77
8+ // Skip ossIndexAudit on test module
9+ tasks.named(" ossIndexAudit" ) {
10+ enabled = false
11+ }
12+
813val testTasks = mutableListOf<Task >()
914val jarTasks = mutableListOf<Jar >()
1015
Original file line number Diff line number Diff line change @@ -15,4 +15,7 @@ dependencies {
1515 implementation(" org.mockito:mockito-core" )
1616}
1717
18-
18+ // Skip ossIndexAudit on test module
19+ tasks.named(" ossIndexAudit" ) {
20+ enabled = false
21+ }
Original file line number Diff line number Diff line change @@ -80,3 +80,8 @@ configurations {
8080 }
8181 }
8282}
83+
84+ // Skip ossIndexAudit on test module
85+ tasks.named(" ossIndexAudit" ) {
86+ enabled = false
87+ }
Original file line number Diff line number Diff line change @@ -37,3 +37,8 @@ dependencies {
3737 implementation(" org.assertj:assertj-core" )
3838 implementation(" org.mock-server:mockserver-netty" )
3939}
40+
41+ // Skip ossIndexAudit on test module
42+ tasks.named(" ossIndexAudit" ) {
43+ enabled = false
44+ }
Original file line number Diff line number Diff line change @@ -42,3 +42,8 @@ tasks {
4242 dependsOn(testing.suites)
4343 }
4444}
45+
46+ // Skip ossIndexAudit on test module
47+ tasks.named(" ossIndexAudit" ) {
48+ enabled = false
49+ }
Original file line number Diff line number Diff line change @@ -33,3 +33,8 @@ tasks {
3333 jvmArgs(" -Dio.opentelemetry.testArchive=${shadowJar.get().archiveFile.get().asFile.absolutePath} " )
3434 }
3535}
36+
37+ // Skip ossIndexAudit on test module
38+ tasks.named(" ossIndexAudit" ) {
39+ enabled = false
40+ }
You can’t perform that action at this time.
0 commit comments