mirror of https://github.com/apache/jclouds.git
Ensured work dirs are not created under version-controlled directories (mvn clean package works for me - sorry if it breaks for someone else!)
git-svn-id: http://jclouds.googlecode.com/svn/trunk@2416 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
2d17f39086
commit
9b3de58cea
|
@ -90,11 +90,11 @@
|
||||||
<systemProperties>
|
<systemProperties>
|
||||||
<property>
|
<property>
|
||||||
<name>test.basedir</name>
|
<name>test.basedir</name>
|
||||||
<value>src/test/resources/test-data</value>
|
<value>target/test-data</value>
|
||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>test.basedir.res</name>
|
<name>test.basedir.res</name>
|
||||||
<value>test-data</value>
|
<value>target/test-data</value>
|
||||||
</property>
|
</property>
|
||||||
</systemProperties>
|
</systemProperties>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -111,23 +111,22 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<descriptorRefs>
|
|
||||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
||||||
</descriptorRefs>
|
|
||||||
<archive>
|
|
||||||
<manifest>
|
|
||||||
<mainClass>org.jclouds.vfs.tools.blobstore.BlobStoreShell</mainClass>
|
|
||||||
</manifest>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>make-assembly</id>
|
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>single</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<descriptorRefs>
|
||||||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||||
|
</descriptorRefs>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<mainClass>org.jclouds.vfs.tools.blobstore.BlobStoreShell</mainClass>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -145,7 +144,7 @@
|
||||||
<systemProperties>
|
<systemProperties>
|
||||||
<property>
|
<property>
|
||||||
<name>test.basedir</name>
|
<name>test.basedir</name>
|
||||||
<value>src/test/resources/test-data</value>
|
<value>target/test-data</value>
|
||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>test.blobstore.uri</name>
|
<name>test.blobstore.uri</name>
|
||||||
|
|
|
@ -1,29 +1,30 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
|
$HeadURL$
|
||||||
|
$Revision$
|
||||||
|
$Date$
|
||||||
|
|
||||||
|
Copyright (C) 2009 Cloud Conscious, LLC.
|
||||||
|
<info@cloudconscious.com>
|
||||||
|
|
||||||
Copyright (C) 2009 Cloud Conscious, LLC.
|
====================================================================
|
||||||
<info@cloudconscious.com>
|
Licensed to the Apache Software Foundation (ASF) under one or
|
||||||
|
more contributor license agreements. See the NOTICE file
|
||||||
|
distributed with this work for additional information regarding
|
||||||
|
copyright ownership. The ASF licenses this file to you under the
|
||||||
|
Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain
|
||||||
|
a copy of the License at
|
||||||
|
|
||||||
====================================================================
|
http://www.apache.org/licenses/LICENSE-2.0 Unless required by
|
||||||
Licensed to the Apache Software Foundation (ASF) under one or
|
applicable law or agreed to in writing, software distributed
|
||||||
more contributor license agreements. See the NOTICE file
|
under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
distributed with this work for additional information regarding
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
copyright ownership. The ASF licenses this file to you under the
|
See the License for the specific language governing permissions
|
||||||
Apache License, Version 2.0 (the "License"); you may not use
|
and limitations under the License.
|
||||||
this file except in compliance with the License. You may obtain
|
====================================================================
|
||||||
a copy of the License at
|
-->
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0 Unless required by
|
|
||||||
applicable law or agreed to in writing, software distributed
|
|
||||||
under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
||||||
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions
|
|
||||||
and limitations under the License.
|
|
||||||
====================================================================
|
|
||||||
-->
|
|
||||||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
For more configuration infromation and examples see the Apache
|
For more configuration infromation and examples see the Apache
|
||||||
Log4j website: http://logging.apache.org/log4j/
|
Log4j website: http://logging.apache.org/log4j/
|
||||||
|
|
Loading…
Reference in New Issue