82 lines
2.9 KiB
XML
82 lines
2.9 KiB
XML
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>com.sequencelogic</groupId>
|
||
|
|
<artifactId>masterbuild</artifactId>
|
||
|
|
<version>2.3.0</version>
|
||
|
|
<!-- relative path must be specified to pick up parent pom changes, otherwise
|
||
|
|
the parent POM must first be installed in the local repo -->
|
||
|
|
<relativePath>../masterbuild</relativePath>
|
||
|
|
</parent>
|
||
|
|
<artifactId>release</artifactId>
|
||
|
|
<name>SLEDS release</name>
|
||
|
|
<!-- .zip file version -->
|
||
|
|
<version>2.3.0</version>
|
||
|
|
<description>Build a zip of the release</description>
|
||
|
|
<properties>
|
||
|
|
<releaseDirectory>${basedir}/../</releaseDirectory>
|
||
|
|
<componentVersion>2.3.0</componentVersion>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-resources-plugin</artifactId>
|
||
|
|
<version>2.4.3</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>filter-resources</id>
|
||
|
|
<phase>validate</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>copy-resources</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<outputDirectory>target</outputDirectory>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/assembly</directory>
|
||
|
|
<filtering>true</filtering>
|
||
|
|
</resource>
|
||
|
|
</resources>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
|
||
|
|
<configuration>
|
||
|
|
<descriptor>target/dep.xml</descriptor>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
||
|
|
<phase>package</phase> <!-- append to the packaging phase. -->
|
||
|
|
<goals>
|
||
|
|
<goal>single</goal> <!-- goals == mojos -->
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<distributionManagement>
|
||
|
|
<repository>
|
||
|
|
<id>Sequence Logic Repository</id>
|
||
|
|
<name>Sequence Logic Repository-releases</name>
|
||
|
|
<url>http://artifactory.sl.int:8081/artifactory/libs-release-local</url>
|
||
|
|
</repository>
|
||
|
|
<snapshotRepository>
|
||
|
|
<id>Sequence Logic Repository</id>
|
||
|
|
<name>Sequence Logic Repository-snapshots</name>
|
||
|
|
<url>http://artifactory.sl.int:8081/artifactory/libs-snapshot-local</url>
|
||
|
|
</snapshotRepository>
|
||
|
|
</distributionManagement>
|
||
|
|
</project>
|