intro
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.patterntesting.samples</groupId>
<artifactId>intro</artifactId>
<version>1.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
$Id: pom.xml,v 1.66 2017/08/12 20:24:41 oboehm Exp $
Project Object Model (POM) for Maven
If you are behind a proxy try the following command:
'mvn -Dhttp.proxyHost=10.253.1.158 -Dhttp.proxyPort=8080 validate'
Instead of 'validate' you can use also another goal. The following goals
should work (see also iX 2/2006, p.77):
validate
generate-sources
install
Some other useful goals are:
jar
source:jar
source:test-jar
PS: If you want to update the maven plugins use the option -U.
see http://maven.apache.org/guides/introduction/introduction-to-the-pom.html
see http://maven.apache.org/pom.htm
(c)reated 21-Mar-2010 by ob@aosd.de
last up$Date: 2017/08/12 20:24:41 $ by $Author: oboehm $
-->
<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>org.patterntesting</groupId>
<artifactId>samples</artifactId>
<version>1.8.0</version>
<relativePath>..</relativePath>
</parent>
<!--
The Basics
must be set if you want to upload it to the Central Repository
see http://maven.apache.org/guides/mini/guide-central-repository-upload.html
-->
<modelVersion>4.0.0</modelVersion>
<groupId>org.patterntesting.samples</groupId>
<artifactId>intro</artifactId>
<packaging>jar</packaging>
<name>samples-intro</name>
<!-- see http://maven.apache.org/pom.html#Licenses -->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<inceptionYear>2010</inceptionYear>
<description>This is an introduction to PatternTesting. It demonstrates the use of PatternTesting as Java library for testing.</description>
<url>http://patterntesting.org/release/samples/intro</url>
<!--
Deployment
see "Better Builds with Maven", p. 74
see http://maven.apache.org/plugins/maven-deploy-plugin/
-->
<distributionManagement>
<!--
Deployment of the Web-Site
(try 'mvn site-deploy' to deploy it)
-->
<site>
<id>ftp-patterntesting.org</id>
<name>PatternTesting Website</name>
<url>${patterntesting.site.url}/${project.version}/samples/intro/</url>
</site>
</distributionManagement>
<scm>
<connection>scm:cvs:pserver:anonymous@patterntesting.cvs.sourceforge.net:/cvsroot/patterntesting:PatternTesting10/patterntesting-samples/intro</connection>
<url>http://patterntesting.cvs.sourceforge.net/viewvc/patterntesting/PatternTesting10/patterntesting-samples/intro</url>
<tag>patterntesting-1_3_0</tag>
</scm>
<developers>
<developer>
<name>Oliver Boehm</name>
<id>oboehm</id>
<email>ob@aosd.de</email>
<url>http://www.aosd.de/</url>
<organization>agentes AG</organization>
<organizationUrl>http://www.agentes.de</organizationUrl>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<contributors>
</contributors>
<!--
L I B R A R I E S
see http://www.ibiblio.org/maven2/ for available libraries (default repository)
see http://repository.codehaus.org/ for libraries from codehaus
-->
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-rt</artifactId>
</dependency>
<dependency>
<groupId>org.patterntesting</groupId>
<artifactId>patterntesting-concurrent</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!--
General Properties
(see parent POM)
-->
<properties>
<patterntesting.site.artifact.dir>${patterntesting.site.dir}/samples/intro</patterntesting.site.artifact.dir>
</properties>
</project>