You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2013/12/04 13:12:23 UTC

[2/2] git commit: MARMOTTA-392: fixed os-dependant paths to the temporal dir, where suitable

MARMOTTA-392: fixed os-dependant paths to the temporal dir, where suitable


Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/ae58e2f4
Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/ae58e2f4
Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/ae58e2f4

Branch: refs/heads/develop
Commit: ae58e2f48d6fac5677a97c279333d56126757bd9
Parents: 2e854cd
Author: Sergio Fernández <wi...@apache.org>
Authored: Wed Dec 4 13:00:36 2013 +0100
Committer: Sergio Fernández <wi...@apache.org>
Committed: Wed Dec 4 13:00:36 2013 +0100

----------------------------------------------------------------------
 .../src/main/resources/archetype-resources/pom.xml               | 2 +-
 client/marmotta-client-java/pom.xml                              | 2 +-
 launchers/marmotta-webapp-bigdata/pom.xml                        | 2 +-
 parent/pom.xml                                                   | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/ae58e2f4/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 b278e6c..d96f5f8 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>/tmp/marmotta</marmotta.home>
+        <marmotta.home>${java.io.tmpdir}marmotta</marmotta.home>
         <marmotta.context>/</marmotta.context>
         <marmotta.port>8080</marmotta.port>
     </properties>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/ae58e2f4/client/marmotta-client-java/pom.xml
----------------------------------------------------------------------
diff --git a/client/marmotta-client-java/pom.xml b/client/marmotta-client-java/pom.xml
index 4f5197c..acdb042 100644
--- a/client/marmotta-client-java/pom.xml
+++ b/client/marmotta-client-java/pom.xml
@@ -66,7 +66,7 @@
                 <configuration>
                     <filesets>
                         <fileset>
-                            <directory>/tmp/marmotta-test</directory>
+                            <directory>${java.io.tmpdir}marmotta-test</directory>
                             <followSymlinks>true</followSymlinks>
                         </fileset>
                     </filesets>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/ae58e2f4/launchers/marmotta-webapp-bigdata/pom.xml
----------------------------------------------------------------------
diff --git a/launchers/marmotta-webapp-bigdata/pom.xml b/launchers/marmotta-webapp-bigdata/pom.xml
index d016874..ed43888 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>/tmp/marmotta</marmotta.home>
+        <marmotta.home>${java.io.tmpdir}marmotta</marmotta.home>
         <marmotta.context>/</marmotta.context>
         <marmotta.port>8080</marmotta.port>
     </properties>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/ae58e2f4/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 6fa3cde..1f5500d 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:///tmp/repo</url>
+                    <url>file://${java.io.tmpdir}repo</url>
                 </repository>
                 <snapshotRepository>
                     <id>apache.snapshots</id>
                     <name>Apache Snapshots Repository</name>
-                    <url>file:///tmp/repo</url>
+                    <url>file://${java.io.tmpdir}repo</url>
                 </snapshotRepository>
             </distributionManagement>