example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.org.retep.microkernel</groupId>
<artifactId>example</artifactId>
<version>9.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>uk.org.retep</groupId>
<artifactId>retepMicroKernel</artifactId>
<version>9.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>uk.org.retep.microkernel</groupId>
<artifactId>example</artifactId>
<name>retepMicroKernel-example</name>
<version>9.7</version>
<url>http://maven.apache.org</url>
<repositories>
<repository>
<id>retep.releases</id>
<name>retep.org Maven 2 Repository</name>
<url>http://kenai.com/svn/reteptools~maven/releases/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>retep.releases</id>
<name>retep.org Maven 2 Repository</name>
<url>http://kenai.com/svn/reteptools~maven/releases/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>uk.org.retep</groupId>
<artifactId>retepTools</artifactId>
<version>[9.6,)</version>
</dependency>
<dependency>
<groupId>uk.org.retep.microkernel</groupId>
<artifactId>core</artifactId>
<version>9.7</version>
</dependency>
<dependency>
<groupId>uk.org.retep</groupId>
<artifactId>retepMicroKernel-manager</artifactId>
<version>9.7</version>
</dependency>
<dependency>
<groupId>org.terracotta.modules</groupId>
<artifactId>tim-annotations</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>uk.org.retep.microkernel</groupId>
<artifactId>maven</artifactId>
<version>9.7</version>
<executions>
<execution>
<id>assemble-application</id>
<phase>package</phase>
<goals>
<goal>assemble-application</goal>
</goals>
<configuration>
<applicationName>example</applicationName>
<!-- generate a zip containing the application -->
<zip>false</zip>
<!-- generate a tar containing the application -->
<tar>false</tar>
<!-- generate a tar compressed with GZip containing the application -->
<tarGz>false</tarGz>
<!-- generate a tar compressed with BZip2 containing the application -->
<tarBZip2>false</tarBZip2>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>