<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>
  <artifactId>iterator-reflection</artifactId>
  <version>1.0.0</version>

  <parent>
    <groupId>uk.co.iterator</groupId>
    <artifactId>iterator-library</artifactId>
    <version>1.10.0</version>
  </parent>

  <name>Reflection</name>
  <url>${scm.https.home}</url>
  <scm>
    <url>${scm.https.home}</url>
    <connection>${scm.uri}</connection>
    <developerConnection>${scm.uri}</developerConnection>
    <tag>iterator-reflection-1.0.0</tag>
  </scm>
  <description>Utility wrapper around the Java reflection APIs</description>

  <repositories>
    <repository>
      <id>bintray</id>
      <name>bintray</name>
      <url>https://dl.bintray.com/iteratoruk/maven</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
    </dependency>
    <dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>
