2020-05-01 11:15:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
-->
|
|
|
|
|
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>
|
2020-05-01 11:15:53 -04:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven</artifactId>
|
|
|
|
<version>3.7.0-SNAPSHOT</version>
|
2013-03-04 11:21:40 -05:00
|
|
|
</parent>
|
|
|
|
|
2015-04-03 00:01:24 -04:00
|
|
|
<artifactId>maven-wrapper</artifactId>
|
|
|
|
<name>Maven Wrapper</name>
|
2020-05-01 11:15:53 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName> <!-- to simplify installation for maven-integration-testing -->
|
|
|
|
</build>
|
|
|
|
|
2013-03-04 11:21:40 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-04-03 00:01:24 -04:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-05-02 07:41:13 -04:00
|
|
|
<version>4.13</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<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>
|
2020-05-02 07:41:13 -04:00
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<version>2.2</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<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>
|
2017-07-03 19:58:14 -04:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2020-05-02 07:41:13 -04:00
|
|
|
<version>2.23.0</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<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>
|
2020-09-15 06:00:29 -04:00
|
|
|
<version>1.10.8</version>
|
2015-04-03 00:01:24 -04:00
|
|
|
<scope>test</scope>
|
2013-03-04 11:21:40 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-11-24 16:37:10 -05:00
|
|
|
</project>
|