Moved libs and war directories under target to make mvn clean properly working. The generated tar.gz remain the same. Fixes #3334
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/distributions/smartgears-distribution@114459 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
818c88b1c5
commit
a12e38c2ed
|
@ -14,4 +14,7 @@
|
|||
<Changeset component="org.gcube.distribution.smartgears-distribution.1-2-1" date="2015-04-15">
|
||||
<Change>smartgear-distribution-bundle version is published on ghn profile</Change>
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.distribution.smartgears-distribution.1-2-2" date="2015-04-28">
|
||||
<Change>Moved libs and war directories under target to make mvn clean properly working. The generated tar.gz remain the same</Change>
|
||||
</Changeset>
|
||||
</ReleaseNotes>
|
|
@ -33,13 +33,13 @@
|
|||
<filtered>true</filtered>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>libs</directory>
|
||||
<directory>target/libs</directory>
|
||||
<outputDirectory>libs</outputDirectory>
|
||||
<useDefaultExcludes>true</useDefaultExcludes>
|
||||
<fileMode>755</fileMode>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>war</directory>
|
||||
<directory>target/war</directory>
|
||||
<outputDirectory>apps</outputDirectory>
|
||||
<useDefaultExcludes>true</useDefaultExcludes>
|
||||
<fileMode>755</fileMode>
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -8,7 +8,7 @@
|
|||
</parent>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>smartgears-distribution</artifactId>
|
||||
<version>1.2.1-SNAPSHOT</version>
|
||||
<version>1.2.2-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>A distribution for the SmartGears Framework</name>
|
||||
|
||||
|
@ -74,7 +74,7 @@
|
|||
<goal>copy-dependencies</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>${basedir}/libs</outputDirectory>
|
||||
<outputDirectory>${basedir}/target/libs</outputDirectory>
|
||||
<includeScope>provided</includeScope>
|
||||
<overWriteReleases>false</overWriteReleases>
|
||||
<overWriteSnapshots>false</overWriteSnapshots>
|
||||
|
@ -90,7 +90,7 @@
|
|||
<goal>copy-dependencies</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>${basedir}/war</outputDirectory>
|
||||
<outputDirectory>${basedir}/target/war</outputDirectory>
|
||||
<overWriteReleases>false</overWriteReleases>
|
||||
<overWriteSnapshots>false</overWriteSnapshots>
|
||||
<overWriteIfNewer>true</overWriteIfNewer>
|
||||
|
|
Loading…
Reference in New Issue