2015-04-03 00:02:40 -04:00
|
|
|
<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">
|
2013-03-04 11:21:40 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>io.takari</groupId>
|
|
|
|
<artifactId>takari</artifactId>
|
2017-04-17 15:46:27 -04:00
|
|
|
<version>25</version>
|
2013-03-04 11:21:40 -05:00
|
|
|
</parent>
|
|
|
|
|
2015-04-03 00:01:24 -04:00
|
|
|
<artifactId>maven-wrapper</artifactId>
|
2017-10-26 00:17:12 -04:00
|
|
|
<version>0.3.0-SNAPSHOT</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<packaging>provisio</packaging>
|
|
|
|
<name>Maven Wrapper</name>
|
2015-07-14 13:33:24 -04:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2017-03-07 21:05:44 -05:00
|
|
|
<properties>
|
|
|
|
<takari.javaSourceVersion>1.5</takari.javaSourceVersion>
|
|
|
|
</properties>
|
2013-03-04 11:21:40 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<!-- Using zip util class, should be replaced with a zip lib -->
|
2013-03-04 11:21:40 -05:00
|
|
|
<dependency>
|
2015-10-26 17:33:38 -04:00
|
|
|
<groupId>org.apache.ant</groupId>
|
2015-04-03 00:01:24 -04:00
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.7.0</version>
|
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-04-03 00:01:24 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.takari.maven.plugins</groupId>
|
|
|
|
<artifactId>provisio-maven-plugin</artifactId>
|
2017-04-04 17:09:34 -04:00
|
|
|
<version>0.1.46</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<extensions>true</extensions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-11-24 16:37:10 -05:00
|
|
|
</project>
|