diff --git a/backend/build.gradle b/backend/build.gradle index d9dda2d..51b032b 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - buildscript { repositories { mavenCentral() @@ -100,6 +99,18 @@ dockerCompose { useComposeFiles.addAll("docker-compose-integration-test.yml") } +jar { + enabled = true + manifest { + attributes( + "Implementation-Title": "spotler-plugin", + "Implementation-Version": "0.1" + ) + archiveBaseName.set("spotler-plugin") + } + +} + test { useJUnitPlatform() }