Sleds/resources/LocaleStrings/pom.xml

101 lines
3.1 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/maven-v4_0_0.xsd">
<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>
<modelVersion>4.0.0</modelVersion>
<artifactId>LocaleStrings</artifactId>
<packaging>jar</packaging>
<name>Convert strings</name>
<url>http://maven.apache.org</url>
<build>
<sourceDirectory>.</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>log4j.properties</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<configuration>
<mainClass>LocaleStrings</mainClass>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<!-- Duplicates masterbuild/pom.xml but since we are 1 level lower need to path up additional parent -->
<exportAntProperties>true</exportAntProperties>
<target>
<echo message="Determining build.branch"/>
<exec failifexecutionfails="true" command="../../utils/git-branch.sh" outputproperty="build.branch"/>
<echo>build.branch: ${build.branch}</echo>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.dt</groupId>
<artifactId>dtcore</artifactId>
<version>1.0.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.dt</groupId>
<artifactId>dtcs</artifactId>
<version>1.0.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>
<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>