File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 35
35
- name : Build
36
36
shell : bash
37
37
id : build
38
+ run : ${{ inputs.workspace_path }}/gradlew build -p ${{ inputs.workspace_path }}
39
+
40
+ - name : Build Jar
41
+ shell : bash
42
+ id : buildjar
38
43
run : ${{ inputs.workspace_path }}/gradlew jar -p ${{ inputs.workspace_path }}
39
44
40
45
- name : Run Tests
Original file line number Diff line number Diff line change @@ -38,13 +38,19 @@ dependencies {
38
38
implementation " io.opentelemetry:opentelemetry-api:1.2.0"
39
39
}
40
40
41
+ java {
42
+ withJavadocJar()
43
+ withSourcesJar()
44
+ }
45
+
41
46
publishing {
42
47
publications {
43
48
mavenJava(MavenPublication ) {
44
- from( components[ " java" ])
49
+ from components. java
45
50
46
51
pom {
47
52
name. set(" LaunchDarkly Java Server Otel Integration" )
53
+ description. set(" This package can be used to integrate OpenTelemetry with the LaunchDarkly Java Server SDK." )
48
54
url. set(" https://github.com/launchdarkly/java-core" )
49
55
licenses {
50
56
license {
You can’t perform that action at this time.
0 commit comments