Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ jobs:
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
run: ./gradlew publishPlugins

- name: Create GitHub Release
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ plugins {
}
```

## Migration from older versions

If you were using the old plugin ID `com.github.akazver.mapstruct`, you can continue using it for backward compatibility. However, we recommend migrating to the new ID `io.github.akazver.mapstruct`

## How it works

The plugin automatically:
Expand Down
7 changes: 0 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ gradlePlugin {
implementationClass = 'io.github.akazver.gradle.plugins.mapstruct.MapstructPlugin'
tags.set(['mapstruct', 'mapping', 'lombok', 'spring', 'quarkus', 'camel', 'protobuf'])
}
mapstructLegacy {
id = 'com.github.akazver.mapstruct'
displayName = 'MapStruct Plugin (Legacy)'
description = 'Automatic MapStruct configuration (legacy ID, use io.github.akazver.mapstruct instead)'
implementationClass = 'io.github.akazver.gradle.plugins.mapstruct.MapstructPlugin'
tags.set(['mapstruct', 'mapping', 'lombok', 'spring', 'quarkus', 'camel', 'protobuf'])
}
}
}

Expand Down