Skip to content
This repository was archived by the owner on May 18, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class ManifestDependencyPlugin implements Plugin<Project> {
def evaluationStrategy = {
def parsedXML = new XmlSlurper().parse(it)
def extractFromXML = { String nodeName, String attribute ->
return parsedXML.'**'.findAll { node -> node.name() == nodeName }.collect { it["@$attribute"] }
return parsedXML.'**'.findAll { node -> node.name() == nodeName }.collect { it["@$attribute"].text() }
}
return extractFromXML("plugin", "id") + extractFromXML("import", "plugin") + extractFromXML("include", "id")
}
Expand Down
6 changes: 6 additions & 0 deletions examples/example1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ apply plugin: 'de.monkeyworks.buildmonkey.p2.P2MirrorPlugin'
def buildUri = buildDir.toURI()
def buildUrl = buildUri.toURL()

// Configure Eclipse SDK Download
eclipseConfiguration {
eclipseSdkURL = 'http://ftp.halifax.rwth-aachen.de/eclipse//eclipse/downloads/drops4/R-4.7.3-201803010715/'
eclipseVersion = '4.7.3'
}

// Configure mirroring plugin
eclipseMirror {
// Both parameters on false means a lazy dependency resolving but matching the exact versions of the defined features
Expand Down
6 changes: 6 additions & 0 deletions examples/exampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ apply plugin: 'de.monkeyworks.buildmonkey.mavenizer.MavenizerPlugin'
def buildUri = buildDir.toURI()
def buildUrl = buildUri.toURL()

// Configure Eclipse SDK Download
eclipseConfiguration {
eclipseSdkURL = 'http://ftp.halifax.rwth-aachen.de/eclipse//eclipse/downloads/drops4/R-4.7.3-201803010715/'
eclipseVersion = '4.7.3'
}

eclipseMirror {
sliceStrict false
latestVersionOnly false
Expand Down