root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ovirt.vdsm-jsonrpc-java</groupId> <artifactId>root</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>root</name> <description>Root module for jsonrpc</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> <developers> <developer> <name>Piotr Kliczewski</name> <email>pkliczew@redhat.com</email> </developer> <developer> <name>Artur Socha</name> <email>asocha@redhat.com</email> </developer> </developers> <scm> <connection>scm:git: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>root</artifactId> <version>1.7.3</version> <packaging>pom</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <commons-lang.version>3.7</commons-lang.version> <jackson.version>2.12.7</jackson.version> <junit.version>4.12</junit.version> <slf4j.version>1.7.22</slf4j.version> <mockito.version>2.20.0</mockito.version> </properties> <modules> <module>client</module> </modules> <profiles> <profile> <id>release-sign-artifacts</id> <properties> <skipTests>true</skipTests> </properties> <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>test</id> <activation> <activeByDefault>true</activeByDefault> </activation> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>1.7.30</version> <scope>test</scope> </dependency> </dependencies> <properties> <skipTests>false</skipTests> </properties> </profile> <profile> <id>no-test</id> <properties> <skipTests>true</skipTests> </properties> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>