![JAR search and dependency download from the Maven repository](/logo.png)
foblox-java.0.0.1.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoblox-java Show documentation
Show all versions of infoblox-java Show documentation
A pure java API for Infoblox DNS appliance.
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.oneops</groupId> <artifactId>buildsupport</artifactId> <version>3</version> </parent> <artifactId>infoblox-java</artifactId> <version>0.0.1</version> <name>infoblox-java</name> <packaging>jar</packaging> <description>A pure java API for Infoblox DNS appliance.</description> <url>https://github.com/oneops/infoblox-java</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <developerConnection>scm:git:[email protected]:oneops/infoblox-java.git</developerConnection> <url>https://github.com/oneops/infoblox-java</url> <tag>release-0.0.1</tag> </scm> <issueManagement> <system>github</system> <url>https://github.com/oneops/infoblox-java/issues</url> </issueManagement> <developers> <developer> <name>The OneOps Team</name> <organization>OneOps</organization> <organizationUrl>https://github.com/orgs/oneops/people</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <autovalue.version>1.5.3</autovalue.version> <okhttp.version>3.9.1</okhttp.version> <moshi.version>1.5.0</moshi.version> <retrofit.version>2.3.0</retrofit.version> <mockito.version>2.8.9</mockito.version> <junit.platform.version>1.0.0</junit.platform.version> <junit.version>5.1.0-M1</junit.version> <jsr305.version>3.0.2</jsr305.version> <java.version>1.8</java.version> <maven.build.timestamp.format>yyyy-MM-dd hh:mm:ss a z</maven.build.timestamp.format> </properties> <dependencies> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>${retrofit.version}</version> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>converter-moshi</artifactId> <version>${retrofit.version}</version> </dependency> <dependency> <groupId>com.squareup.moshi</groupId> <artifactId>moshi</artifactId> <version>${moshi.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-urlconnection</artifactId> <version>${okhttp.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <version>${okhttp.version}</version> </dependency> <!-- Auto Value and extensions --> <dependency> <groupId>com.google.auto.value</groupId> <artifactId>auto-value</artifactId> <version>${autovalue.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.ryanharter.auto.value</groupId> <artifactId>auto-value-moshi</artifactId> <version>0.4.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.auto.value</groupId> <artifactId>auto-value-redacted</artifactId> <version>1.0.1</version> <scope>provided</scope> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</version> </dependency> <!-- Nullability --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>${jsr305.version}</version> <scope>provided</scope> </dependency> <!-- JUnit5 Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-surefire-provider</artifactId> <version>${junit.platform.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <phase>validate</phase> <goals> <goal>display-info</goal> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <message>Maven 3.5.2 or higher required.</message> <version>[3.5.2,)</version> </requireMavenVersion> <requireJavaVersion> <version>${java.version}</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <!-- Integration Tests that are long running --> <id>its</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.19.1</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <includes> <include>**/IT*.class</include> </includes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy