77 lines
2.7 KiB
XML
77 lines
2.7 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>scorewalker</artifactId>
|
||
|
|
<version>2.3.0</version>
|
||
|
|
<relativePath>../</relativePath>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>release</artifactId>
|
||
|
|
<name>Scorewalker release</name>
|
||
|
|
<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>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
|
<version>1.8</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>validate</id>
|
||
|
|
<phase>validate</phase>
|
||
|
|
<configuration>
|
||
|
|
<exportAntProperties>true</exportAntProperties>
|
||
|
|
<target>
|
||
|
|
<echo message="Determining build.branch"/>
|
||
|
|
<exec failifexecutionfails="false" command="../../utils/git-branch.sh" outputproperty="build.branch"/>
|
||
|
|
</target>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
|
<version>3.0.0</version>
|
||
|
|
<configuration>
|
||
|
|
<descriptors>
|
||
|
|
<descriptor>src/main/assembly/dep.xml</descriptor>
|
||
|
|
</descriptors>
|
||
|
|
</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>
|