Skip to content

Commit e262794

Browse files
Fix path to licenses.xml in gradle publishing code.
More of the bork from license gathering migration.
1 parent 5848095 commit e262794

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pdf2htmlEX/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ publishing{
135135
thisProjLicense.appendNode('url', "pdf2htmlEX-Android/LICENSE\n\n" + new File("$projectDir/../LICENSE").getText('UTF-8') + "\n\n")
136136
thisProjLicense.appendNode('distribution', 'repo')
137137

138-
new XmlSlurper().parse("../dependency-builder/build/licenses.xml").license.each {
138+
new XmlSlurper().parse("$projectDir/../dependency-builder/build/licenses.xml").license.each {
139139
def license = licensesNode.appendNode('license')
140140
license.appendNode('name', it.name)
141141
license.appendNode('url', it.url)

0 commit comments

Comments
 (0)