comparison Resources/Testing/Issue32/Java/pom.xml @ 3123:58ea4ef84c92

reproduced issue #32 in Java
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 15 Jan 2019 18:46:59 +0100
parents
children
comparison
equal deleted inserted replaced
3122:df4f977c2f88 3123:58ea4ef84c92
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>io.osimis</groupId>
8 <artifactId>issue32</artifactId>
9 <version>1.0-SNAPSHOT</version>
10
11 <name>issue32</name>
12 <!-- FIXME change it to the project's website -->
13 <url>http://www.example.com</url>
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 <maven.compiler.source>1.8</maven.compiler.source>
18 <maven.compiler.target>1.8</maven.compiler.target>
19 </properties>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.apache.httpcomponents</groupId>
24 <artifactId>httpclient</artifactId>
25 <version>4.5.3</version>
26 </dependency>
27
28 <dependency>
29 <groupId>junit</groupId>
30 <artifactId>junit</artifactId>
31 <version>4.11</version>
32 <scope>test</scope>
33 </dependency>
34 </dependencies>
35 </project>