Skip to content

Commit

Permalink
Do not package dev.gradleplugins within the plugin (#677)
Browse files Browse the repository at this point in the history
* Do not package dev.gradleplugins within the plugin

* Changelog

* WIP

* WIP
  • Loading branch information
romtsn committed Mar 21, 2024
1 parent 8bd3c35 commit d89273a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
${{ github.workspace }}/plugin-build/build/distributions/*.zip
${{ github.workspace }}/sentry-kotlin-compiler-plugin/build/distributions/*.zip
- name: Verifies Sentry CLI is bundled
- name: Verify artifact contents
shell: bash
run: |
zipfile=$(ls -1 plugin-build/build/distributions | grep -v "PluginMarker")
Expand All @@ -55,3 +55,4 @@ jobs:
find /tmp/$filename | grep "pom-default.xml"
unzip /tmp/$filename/$filename.jar -d /tmp/jar/
find /tmp/jar | grep "bin/sentry-cli"
cat /tmp/$filename/pom-default.xml | grep -v "dev.gradleplugins"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixes

- Do not pollute build classpath with groovy dependencies ([#677](https://github.com/getsentry/sentry-android-gradle-plugin/pull/677))

### Dependencies

- Bump Android SDK from v7.5.0 to v7.6.0 ([#671](https://github.com/getsentry/sentry-android-gradle-plugin/pull/671))
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object BuildPluginsVersion {
// build/publications/maven
const val MAVEN_PUBLISH = "0.17.0"
const val PROGUARD = "7.1.0"
const val GROOVY_REDISTRIBUTED = "1.5"
const val GROOVY_REDISTRIBUTED = "1.2"
const val BUILDCONFIG = "3.1.0"

const val SPRING_BOOT = "2.7.4"
Expand Down

0 comments on commit d89273a

Please sign in to comment.