Skip to content

Commit

Permalink
Try to fix Plugin Publication
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Mar 22, 2020
1 parent e8a01f8 commit 740982e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions buildSrc/build.gradle
@@ -1,6 +1,6 @@
/**
*
* Copyright 2013-2019 Martin Goellnitz
* Copyright 2013-2020 Martin Goellnitz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
Expand Down Expand Up @@ -30,6 +30,7 @@ buildscript {

plugins {
id 'com.gradle.plugin-publish' version '0.10.1'
id 'java-gradle-plugin'
}

apply plugin: 'groovy'
Expand Down Expand Up @@ -124,16 +125,25 @@ publishing {
}
}

gradlePlugin {
plugins {
tangramTools {
id = 'tangram.tools'
implementationClass = 'org.tangram.gradle.plugin.TangramPlugin'
}
}
}

pluginBundle {
website = 'https://github.com/mgoellnitz/tangram/wiki/Plugin'
vcsUrl = 'https://github.com/mgoellnitz/tangram/'
description = 'Generic JPA, JDO, EBean byte code transformation plugin, webapp overlay helper, and minifying plugin developed for Tangram.'
tags = ['tangram', 'jdo', 'jpa', 'ebean', 'datanucleus', 'eclipselink', 'hibernate', 'openjpa', 'overlay', 'minify']

plugins {
greetingsPlugin {
id = 'tangram.tools'
displayName = 'Tangram Gradle plugin'
tangramTools {
// id = 'tangram.tools'
displayName = 'Tangram Tools Gradle Plugin'
}
}
}

0 comments on commit 740982e

Please sign in to comment.