Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Features

- Add meta option to attach ANR thread dumps ([#3791](https://github.com/getsentry/sentry-java/pull/3791))
- Include javadoc & sources in Gradle .module metadata file

### Fixes

Expand Down
4 changes: 4 additions & 0 deletions sentry-apache-http-client-5/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-apollo-3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-apollo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-compose-helper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ kotlin {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-graphql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-jdbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-jul/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-kotlin-extensions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-log4j2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-logback/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-okhttp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-openfeign/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-quartz/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-console/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ application {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-jul/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ application {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-log4j2/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ application {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-logback/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ application {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-openfeign/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ application {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ repositories {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-samples/sentry-samples-spring-boot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ repositories {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-servlet-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-servlet/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring-boot-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring-boot-starter-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring-boot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-spring/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry-test-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down
4 changes: 4 additions & 0 deletions sentry/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ plugins {
}

configure<JavaPluginExtension> {
// https://docs.gradle.org/current/userguide/java_plugin.html#packaging
withJavadocJar()
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
Expand Down