Updated Branches: refs/heads/develop f6db7d9cc -> fe53dfb82
MARMOTTA-392: trying to file a proper solution on all operative systems Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/2f59b41f Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/2f59b41f Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/2f59b41f Branch: refs/heads/develop Commit: 2f59b41f63096185e0319bce7efdedb3c3530331 Parents: f6db7d9 Author: Sergio Fernández <[email protected]> Authored: Fri Dec 6 08:57:50 2013 +0100 Committer: Sergio Fernández <[email protected]> Committed: Fri Dec 6 08:57:50 2013 +0100 ---------------------------------------------------------------------- .../src/main/resources/archetype-resources/pom.xml | 2 +- client/marmotta-client-java/pom.xml | 2 +- launchers/marmotta-webapp-bigdata/pom.xml | 2 +- launchers/marmotta-webapp/pom.xml | 2 +- parent/pom.xml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/2f59b41f/build/archetypes/marmotta-archetype-webapp/src/main/resources/archetype-resources/pom.xml ---------------------------------------------------------------------- diff --git a/build/archetypes/marmotta-archetype-webapp/src/main/resources/archetype-resources/pom.xml b/build/archetypes/marmotta-archetype-webapp/src/main/resources/archetype-resources/pom.xml index d96f5f8..941ed2d 100644 --- a/build/archetypes/marmotta-archetype-webapp/src/main/resources/archetype-resources/pom.xml +++ b/build/archetypes/marmotta-archetype-webapp/src/main/resources/archetype-resources/pom.xml @@ -27,7 +27,7 @@ <version>${version}</version> <properties> - <marmotta.home>${java.io.tmpdir}marmotta</marmotta.home> + <marmotta.home>${java.io.tmpdir}${file.separator}marmotta</marmotta.home> <marmotta.context>/</marmotta.context> <marmotta.port>8080</marmotta.port> </properties> http://git-wip-us.apache.org/repos/asf/marmotta/blob/2f59b41f/client/marmotta-client-java/pom.xml ---------------------------------------------------------------------- diff --git a/client/marmotta-client-java/pom.xml b/client/marmotta-client-java/pom.xml index acdb042..5172827 100644 --- a/client/marmotta-client-java/pom.xml +++ b/client/marmotta-client-java/pom.xml @@ -66,7 +66,7 @@ <configuration> <filesets> <fileset> - <directory>${java.io.tmpdir}marmotta-test</directory> + <directory>${java.io.tmpdir}${file.separator}marmotta-test</directory> <followSymlinks>true</followSymlinks> </fileset> </filesets> http://git-wip-us.apache.org/repos/asf/marmotta/blob/2f59b41f/launchers/marmotta-webapp-bigdata/pom.xml ---------------------------------------------------------------------- diff --git a/launchers/marmotta-webapp-bigdata/pom.xml b/launchers/marmotta-webapp-bigdata/pom.xml index ed43888..656af87 100644 --- a/launchers/marmotta-webapp-bigdata/pom.xml +++ b/launchers/marmotta-webapp-bigdata/pom.xml @@ -36,7 +36,7 @@ <properties> <!-- these are used for the goals tomcat6/7:run or jetty:run --> - <marmotta.home>${java.io.tmpdir}marmotta</marmotta.home> + <marmotta.home>${java.io.tmpdir}${file.separator}marmotta</marmotta.home> <marmotta.context>/</marmotta.context> <marmotta.port>8080</marmotta.port> </properties> http://git-wip-us.apache.org/repos/asf/marmotta/blob/2f59b41f/launchers/marmotta-webapp/pom.xml ---------------------------------------------------------------------- diff --git a/launchers/marmotta-webapp/pom.xml b/launchers/marmotta-webapp/pom.xml index 614343a..0d79cb4 100644 --- a/launchers/marmotta-webapp/pom.xml +++ b/launchers/marmotta-webapp/pom.xml @@ -34,7 +34,7 @@ <properties> <!-- these are used for the goals tomcat6/7:run or jetty:run --> - <marmotta.home>${java.io.tmpdir}marmotta</marmotta.home> + <marmotta.home>${java.io.tmpdir}${file.separator}marmotta</marmotta.home> <marmotta.context>/</marmotta.context> <marmotta.port>8080</marmotta.port> </properties> http://git-wip-us.apache.org/repos/asf/marmotta/blob/2f59b41f/parent/pom.xml ---------------------------------------------------------------------- diff --git a/parent/pom.xml b/parent/pom.xml index 1f5500d..9d8242e 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -1599,12 +1599,12 @@ <repository> <id>apache.releases</id> <name>Apache Relesases Repository</name> - <url>file://${java.io.tmpdir}repo</url> + <url>file://${java.io.tmpdir}${file.separator}repo</url> </repository> <snapshotRepository> <id>apache.snapshots</id> <name>Apache Snapshots Repository</name> - <url>file://${java.io.tmpdir}repo</url> + <url>file://${java.io.tmpdir}${file.separator}repo</url> </snapshotRepository> </distributionManagement>
