tink-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.tink</groupId>
<artifactId>tink-sample</artifactId>
<version>0.0.1</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sourceforge.tink</groupId>
<artifactId>tink</artifactId>
<version>0.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>tink-sample</artifactId>
<packaging>pom</packaging>
<name>Tink Samples</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.2</version>
<configuration>
<projectsDirectory>${basedir}</projectsDirectory>
<pomIncludes>
<pomInclude>sample*-pom.xml</pomInclude>
</pomIncludes>
<encoding>UTF-8</encoding>
<showErrors>true</showErrors>
</configuration>
<executions>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<goals>
<goal>verify</goal>
</goals>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-nodeps</artifactId>
<version>1.7.1</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="build.tink-ant.jar" value="../tink-ant/target/tink-ant-${project.version}-deps.jar" />
<property name="build.tink-app-standard.jar" value="../tink-app/target/tink-app-${project.version}-standard.jar" />
<subant target="build">
<fileset dir="${basedir}" includes="sample*-build.xml" />
</subant>
<ant dir="${basedir}" target="run" inheritAll="true" antfile="run.xml" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<topdir>../</topdir>
</properties>
</project>