You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2015/09/05 17:50:52 UTC

svn commit: r1701399 - /webservices/axiom/trunk/distribution/pom.xml

Author: veithen
Date: Sat Sep  5 15:50:52 2015
New Revision: 1701399

URL: http://svn.apache.org/r1701399
Log:
Fix build failure.

Modified:
    webservices/axiom/trunk/distribution/pom.xml

Modified: webservices/axiom/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/distribution/pom.xml?rev=1701399&r1=1701398&r2=1701399&view=diff
==============================================================================
--- webservices/axiom/trunk/distribution/pom.xml (original)
+++ webservices/axiom/trunk/distribution/pom.xml Sat Sep  5 15:50:52 2015
@@ -126,7 +126,7 @@
                                 <!-- Process the release note for the current release, converting relative URLs to absolute ones -->
                                 <script>
                                     def release_version = project.version.replaceAll("-SNAPSHOT", "")
-                                    def release_note = new File("../src/site/markdown/release-notes/" + release_version + ".md")
+                                    def release_note = new File(project.basedir, "../src/site/markdown/release-notes/" + release_version + ".md")
                                     new File(project.build.directory).mkdirs()
                                     def out = new File(project.build.directory, "RELEASE-NOTE.txt").newPrintWriter('UTF-8')
                                     release_note.readLines('UTF-8').each({ line ->