Replaced hamcrest-all through hamcrest-library
This commit is contained in:
parent
28a5b8f2c7
commit
8c2050f8f2
1 changed files with 39 additions and 45 deletions
84
pom.xml
84
pom.xml
|
@ -1,37 +1,37 @@
|
|||
<?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/maven-v4_0_0.xsd">
|
||||
<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">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.rometools</groupId>
|
||||
<artifactId>rome-parent</artifactId>
|
||||
<version>1.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>com.rometools</groupId>
|
||||
<artifactId>rome-parent</artifactId>
|
||||
<version>1.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>rome-utils</artifactId>
|
||||
<version>1.6.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<artifactId>rome-utils</artifactId>
|
||||
<version>1.6.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>rome-utils</name>
|
||||
<name>rome-utils</name>
|
||||
|
||||
<description>Utility classes for ROME projects</description>
|
||||
<description>Utility classes for ROME projects</description>
|
||||
|
||||
<url>http://rometools.github.io/rome-utils/</url>
|
||||
<url>http://rometools.github.io/rome-utils/</url>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection>
|
||||
<url>https://github.com/rometools/rome-utils</url>
|
||||
</scm>
|
||||
<scm>
|
||||
<connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection>
|
||||
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection>
|
||||
<url>https://github.com/rometools/rome-utils</url>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Patrick Gotthard</name>
|
||||
<url>http://www.patrick-gotthard.de</url>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Patrick Gotthard</name>
|
||||
<url>http://www.patrick-gotthard.de</url>
|
||||
<timezone>+1</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
|
@ -46,23 +46,17 @@
|
|||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>hamcrest-core</artifactId>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest-all</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest-library</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
Loading…
Reference in a new issue