Skip to content

Commit

Permalink
using gradle portal publication mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Hihlovskiy committed Mar 14, 2017
1 parent 8a45320 commit 930f927
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
15 changes: 0 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,11 @@ import groovyx.net.http.ContentType
plugins {
id 'base'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.9.7'
}

apply plugin: 'com.jfrog.artifactory'
apply plugin: RestPlugin

pluginBundle {
website = 'http://akhikhl.github.io/gretty-doc/'
vcsUrl = 'https://github.com/akhikhl/gretty'
description = 'Advanced gradle plugin for running web-apps on jetty and tomcat.'

plugins {
gretty {
id = 'org.akhikhl.gretty'
displayName = 'Gretty plugin'
tags = [ 'gretty', 'jetty', 'gradle', 'plugin', 'spring', 'spring-boot' ]
}
}
}

ext {
project_website = "https://github.com/${developerId}/${projectId}"
project_scm = "scm:[email protected]:${developerId}/${projectId}.git"
Expand Down
18 changes: 18 additions & 0 deletions libs/gretty/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id 'com.gradle.plugin-publish' version '0.9.7'
}

apply from: rootProject.file('common.gradle')

dependencies {
Expand All @@ -12,3 +16,17 @@ dependencies {
compile "org.eclipse.jetty:jetty-util:$jetty8_version"
compile gradleApi()
}

pluginBundle {
website = 'http://akhikhl.github.io/gretty-doc/'
vcsUrl = 'https://github.com/akhikhl/gretty'
description = 'Advanced gradle plugin for running web-apps on jetty and tomcat.'

plugins {
gretty {
id = 'org.akhikhl.gretty'
displayName = 'Gretty plugin'
tags = [ 'gretty', 'jetty', 'gradle', 'plugin', 'spring', 'spring-boot' ]
}
}
}

0 comments on commit 930f927

Please sign in to comment.