From 880bd9c25045f72e05215a1af2e6ddf20900d23a Mon Sep 17 00:00:00 2001 From: Bobby Warner Date: Thu, 10 Jul 2014 09:22:23 -0500 Subject: [PATCH] Cleanup plugin name change from manual merge of tomcat8 repo --- .project | 4 ++-- TomcatGrailsPlugin.groovy | 2 +- scripts/_Events.groovy | 2 +- travis-build.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.project b/.project index cdb221c..db43a81 100644 --- a/.project +++ b/.project @@ -1,6 +1,6 @@ - grails-tomcat8 + tomcat @@ -26,7 +26,7 @@ .link_to_grails_plugins 2 - /home/burt/workspace.grails/plugins/grails-tomcat8-plugin/target/plugins + GRAILS_ROOT/grails-tomcat-plugin/target/plugins diff --git a/TomcatGrailsPlugin.groovy b/TomcatGrailsPlugin.groovy index bf29e29..f9ce655 100644 --- a/TomcatGrailsPlugin.groovy +++ b/TomcatGrailsPlugin.groovy @@ -12,7 +12,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -class Tomcat8GrailsPlugin { +class TomcatGrailsPlugin { def version = '8.0.5.1-SNAPSHOT' def grailsVersion = '2.3 > *' def scopes = [excludes: 'war'] diff --git a/scripts/_Events.groovy b/scripts/_Events.groovy index 3a96550..ae18bb6 100644 --- a/scripts/_Events.groovy +++ b/scripts/_Events.groovy @@ -8,7 +8,7 @@ eventCreatePluginArchiveStart = { stagingDir -> return } - ant.jar(destfile: "$stagingDir/grails-plugin-tomcat8-${plugin.version}.jar", filesonly: true) { + ant.jar(destfile: "$stagingDir/grails-plugin-tomcat-${plugin.version}.jar", filesonly: true) { fileset(dir: classesDir, includes: 'org/grails/plugins/tomcat/**/*.class') } } diff --git a/travis-build.sh b/travis-build.sh index e58abe6..87ac77d 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -16,7 +16,7 @@ plugin=${plugin/"-$version"/} echo "Publishing plugin $plugin with version $version" -if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_REPO_SLUG == "grails-plugins/grails-tomcat8-plugin" && $TRAVIS_PULL_REQUEST == 'false' ]]; then +if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_REPO_SLUG == "grails-plugins/grails-tomcat-plugin" && $TRAVIS_PULL_REQUEST == 'false' ]]; then git config --global user.name "$GIT_NAME" git config --global user.email "$GIT_EMAIL" git config --global credential.helper "store --file=~/.git-credentials"