All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.com.bluecatcode.junit.junit-4.11-extended.pom.xml Maven / Gradle / Ivy

<?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">
  <parent>
    <artifactId>project</artifactId>
    <groupId>com.bluecatcode.common</groupId>
    <version>1.1.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.bluecatcode.junit</groupId>
  <artifactId>junit-4.11-extended</artifactId>
  <name>${project.groupId}:${project.artifactId}</name>
  <version>1.1.0</version>
  <description>JUnit library extensions.</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <artifactSet>
            <excludes>
              <exclude>junit:junit</exclude>
              <exclude>org.hamcrest:*</exclude>
            </excludes>
            <includes>
              <include>org.apache.commons:commons-lang3</include>
            </includes>
          </artifactSet>
          <relocations>
            <relocation>
              <pattern>org.apache.commons.lang3</pattern>
              <shadedPattern>${project.groupId}.shaded.org.apache.commons.lang3</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>3.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <properties>
    <junit.version>4.12</junit.version>
  </properties>
</project>





© 2015 - 2024 Weber Informatics LLC | Privacy Policy