1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
Description: Build only the propdeps-plugin module
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,6 +1,3 @@
rootProject.name = 'gradle-plugins'
-include 'bundlor-plugin'
-include 'docbook-reference-plugin'
include 'propdeps-plugin'
-include 'spring-io-plugin'
\ No newline at end of file
--- a/build.gradle
+++ b/build.gradle
@@ -29,70 +29,6 @@
}
}
-project(':spring-io-plugin') {
- version = springIoPluginVersion
-
- dependencies {
- testCompile 'org.spockframework:spock-core:0.7-groovy-1.8'
- }
-}
-
-project(':bundlor-plugin') {
- version = bundlorPluginVersion
- // dependencies are configured within BundlorPlugin
-}
-
-project(':docbook-reference-plugin') {
- version = docbookPluginVersion
- dependencies {
- compile 'net.sf.docbook:docbook-xsl:1.75.2:resources@zip'
- compile 'net.sf.docbook:docbook-xml:5.0:xsd-resources@zip'
- compile 'net.sf.docbook:docbook-xsl-saxon:1.0.0'
- compile 'org.apache.xerces:resolver:2.9.1'
- compile 'org.apache.xerces:xercesImpl:2.9.1'
- compile 'saxon:saxon:6.5.3'
- compile 'net.sf.xslthl:xslthl:2.0.1'
- compile 'org.apache.xmlgraphics:fop:0.95-1@jar'
- compile 'org.apache.xmlgraphics:xmlgraphics-commons:1.3'
- compile 'org.apache.xmlgraphics:batik-bridge:1.7@jar'
- compile 'org.apache.xmlgraphics:batik-util:1.7@jar'
- compile 'org.apache.xmlgraphics:batik-css:1.7@jar'
- compile 'org.apache.xmlgraphics:batik-dom:1.7'
- compile 'org.apache.xmlgraphics:batik-svg-dom:1.7@jar'
- compile 'org.apache.avalon.framework:avalon-framework-api:4.3.1'
- }
-
- task copyDocbookResources {
- outputs.dir "${project.buildDir}/docbook"
-
- doLast() {
- def docbookZip = configurations.compile.files.find { file -> file.name.contains('docbook-xsl-')};
-
- copy { // copy all images and highlighting files from docbook dist
- from zipTree(docbookZip)
- include 'docbook/images/**'
- include 'docbook/highlighting/**'
- into project.buildDir
- }
-
- copy { // copy docbook resources from src/main
- from 'src/main/docbook'
- into "${project.buildDir}/docbook"
- }
- }
- }
-
-
- task docbookResourcesZip(type: Zip, dependsOn: copyDocbookResources) {
- from copyDocbookResources.outputs.files
- destinationDir = new File(project.sourceSets.main.output.classesDir, "META-INF")
- archiveName = 'docbook-resources.zip'
- }
-
- jar.dependsOn docbookResourcesZip
-}
-
-
ext.repoUser = project.properties['REPO_USERNAME']
ext.repoPass = project.properties['REPO_PASSWORD']
|