vdsm-jsonrpc-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ovirt.vdsm-jsonrpc-java</groupId> <artifactId>vdsm-jsonrpc-java-client</artifactId> <version>1.7.3</version> </dependency>
<!-- vdsm-jsonrpc-java - vdsm json rpc Copyright (C) 2013 Red Hat, Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA --> <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> <name>vdsm-jsonrpc-java-client</name> <description>vdsm json rpc client</description> <url>http://ovirt.org</url> <licenses> <license> <name>GNU Lesser General Public License, version 2.1</name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git://gerrit.ovirt.org/vdsm-jsonrpc-java</connection> <developerConnection>scm:git:gerrit.ovirt.org:vdsm-jsonrpc-java</developerConnection> <url>http://gerrit.ovirt.org/gitweb?p=vdsm-jsonrpc-java.git</url> </scm> <groupId>org.ovirt.vdsm-jsonrpc-java</groupId> <artifactId>vdsm-jsonrpc-java-client</artifactId> <version>1.7.3</version> <packaging>jar</packaging> <parent> <groupId>org.ovirt.vdsm-jsonrpc-java</groupId> <artifactId>root</artifactId> <version>1.7.3</version> </parent> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang.version}</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> <configuration> <skipTests>${skipTests}</skipTests> <argLine>--illegal-access=permit</argLine> <parallel>all</parallel> <threadCount>4</threadCount> <perCoreThreadCount>true</perCoreThreadCount> <forkCount>4</forkCount> <reuseForks>true</reuseForks> <systemProperties> <property> <name>java.util.logging.config.file</name> <value>src/test/resources/logging.properties</value> </property> </systemProperties> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <release>11</release> <source>11</source> <target>11</target> </configuration> <executions> <execution> <id>default-testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <skip>${skipTests}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-javadoc</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> <finalName>${project.artifactId}-${project.version}</finalName> <sourceDirectory>src/main/java</sourceDirectory> <outputDirectory>target/classes</outputDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <directory>target</directory> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphrase>${gpg.passphrase}</passphrase> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>timedependant-tests-disabled</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludedGroups> org.ovirt.vdsm.jsonrpc.testutils.TimeDepending </excludedGroups> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>performance-tests-disabled</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludedGroups> org.ovirt.vdsm.jsonrpc.testutils.Performance </excludedGroups> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>