openshift-restclient-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.openshift</groupId> <artifactId>openshift-restclient-java</artifactId> <version>9.0.5.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi:ts=2:sw=2:expandtab: --> <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 --> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>6-beta-2</version> <relativePath /> </parent> <!-- Model Information --> <modelVersion>4.0.0</modelVersion> <!-- Artifact Information --> <groupId>com.openshift</groupId> <artifactId>openshift-restclient-java</artifactId> <version>9.0.5.Final</version> <packaging>jar</packaging> <name>OpenShift Java REST Client</name> <url>http://openshift.redhat.com</url> <description>OpenShift Java Client</description> <properties> <!-- Explicitly declaring the source encoding eliminates the following message: --> <!-- [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- jboss-parent override --> <version.release.plugin>2.1</version.release.plugin> <version.enforcer.plugin>3.0.0-M1</version.enforcer.plugin> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <!-- External Deps --> <version.shrinkwrap_shrinkwrap>1.0.0-beta-6</version.shrinkwrap_shrinkwrap> <version.shrinkwrap_resolver>1.0.0-beta-5</version.shrinkwrap_resolver> <version.shrinkwrap_descriptors>1.1.0-beta-1</version.shrinkwrap_descriptors> <version.slf4j>2.0.1</version.slf4j> <version.log4j>2.19.0</version.log4j> <!-- integration test properties file --> <integrationtest.properties>${basedir}/src/test/resources/openshiftv3IntegrationTest.properties</integrationtest.properties> <jar.outputDir>${project.build.directory}</jar.outputDir> </properties> <!-- Issues --> <issueManagement> <system>jira</system> <url>https://issues.jboss.org/browse/OSJC</url> </issueManagement> <!-- Licenses --> <licenses> <license> <name>Eclipse Public License v1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.0</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.29</version> </dependency> </dependencies> <executions> <execution> <configuration> <configLocation>${project.basedir}/checkstyle.xml</configLocation> <encoding>UTF-8</encoding> <headerLocation>license.txt</headerLocation> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <linkXRef>false</linkXRef> <includeTestSourceDirectory>true</includeTestSourceDirectory> <violationSeverity>warning</violationSeverity> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <!-- read integration test properties --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0-alpha-1</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${integrationtest.properties}</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <outputDirectory>${jar.outputDir}</outputDirectory> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>package-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${jar.outputDir}</outputDirectory> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.10.0</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.32</version> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-dmr</artifactId> <version>1.6.1.Final</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.21</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${version.log4j}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${version.log4j}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${version.log4j}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.23.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.5.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.1.GA</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> <additionalparam>-sourceclasspath ${project.build.outputDirectory}</additionalparam> <stylesheetfile>${project.parent.parent.basedir}/javadoc/stylesheet.css</stylesheetfile> <javadocDirectory>${project.parent.parent.basedir}/javadoc</javadocDirectory> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- profile is enabled in Jenkins by -Daxis=defaultprofile --> <profile> <id>defaultprofile</id> <activation> <property> <name>axis</name> <value>defaultprofile</value> </property> </activation> <properties> <defaultprofile>true</defaultprofile> </properties> </profile> <!-- profile is enabled in Jenkins by -Daxis=integration-tests --> <profile> <id>integration-tests</id> <activation> <property> <name>axis</name> <value>integration-tests</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> <configuration> <systemPropertyVariables> <serverURL>${libra_server}</serverURL> <default.clusteradmin.user>${default_rhlogin}</default.clusteradmin.user> <default.clusteradmin.password>${rhpassword}</default.clusteradmin.password> <default.openshift.location>${openshift.binary.location}</default.openshift.location> </systemPropertyVariables> <excludes> <exclude>none</exclude> </excludes> <includes> <include>**/*IntegrationTest.java</include> </includes> <!--<forkMode>none</forkMode> --> </configuration> <executions> <execution> <id>integration-tests</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <skip>false</skip> <excludes> <exclude>none</exclude> </excludes> <includes> <include>**/*IntegrationTest.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk9</id> <activation> <jdk>9</jdk> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dfile.encoding=UTF-8 --add-modules=ALL-SYSTEM</argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> <scm> <url>https://github.com/openshift/openshift-restclient-java</url> </scm> <organization> <name>Red Hat, Inc</name> <url>http://www.redhat.com</url> </organization> </project>