java-sdk-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ovirt.engine.api</groupId> <artifactId>java-sdk-parent</artifactId> <version>4.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2016 Red Hat, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <groupId>org.ovirt.engine.api</groupId> <artifactId>java-sdk-parent</artifactId> <packaging>pom</packaging> <version>4.5.1</version> <name>oVirt Java SDK Parent</name> <description>This package contains the Java SDK for version 4 of the oVirt Engine API.</description> <url>http://www.ovirt.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Michael Pasternak</name> <email>mishka8520@yahoo.com</email> </developer> <developer> <name>Ondra Machacek</name> <email>omachace@redhat.com</email> <organization>oVirt</organization> <organizationUrl>http://www.ovirt.org</organizationUrl> </developer> <developer> <name>Juan Hernandez</name> <email>juan.hernandez@redhat.com</email> <organization>oVirt</organization> <organizationUrl>http://www.ovirt.org</organizationUrl> </developer> <developer> <name>Ori Liel</name> <email>oliel@redhat.com</email> <organization>oVirt</organization> <organizationUrl>http://www.ovirt.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/oVirt/ovirt-engine-sdk-java.git</connection> <developerConnection>scm:git:ssh://git@github.com/oVirt/ovirt-engine-sdk-java.git</developerConnection> <url>https://github.com/oVirt/ovirt-engine-sdk-java.git</url> <tag>4.5.1</tag> </scm> <properties> <!-- Make sure that we always compile with UTF-8 encoding: --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Version of the metamodel and model used to generate the SDK: --> <metamodel.version>1.3.7</metamodel.version> <model.version>4.5.7</model.version> <!-- Dependencies --> <commons-cli.version>1.3</commons-cli.version> <commons-io.version>2.7</commons-io.version> <httpclient.version>4.5.13</httpclient.version> <httpcore.version>4.4.14</httpcore.version> <jackson.version>2.10.0</jackson.version> <junit.version>4.13.1</junit.version> <slf4j.version>1.7.7</slf4j.version> <undertow.version>2.2.12.Final</undertow.version> <weld-se.version>2.3.0.Final</weld-se.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.ovirt.engine.api</groupId> <artifactId>metamodel-concepts</artifactId> <version>${metamodel.version}</version> </dependency> <dependency> <groupId>org.ovirt.engine.api</groupId> <artifactId>metamodel-analyzer</artifactId> <version>${metamodel.version}</version> </dependency> <dependency> <groupId>org.ovirt.engine.api</groupId> <artifactId>metamodel-tool</artifactId> <version>${metamodel.version}</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>${commons-cli.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> <version>${undertow.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${httpclient.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>${httpcore.version}</version> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se</artifactId> <version>${weld-se.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <!-- Attach the sources: --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Configure release: --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <tagNameFormat>@{version}</tagNameFormat> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <profiles> <!-- This profile is used to sign the artifacts when performing releases. --> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- This profile is used to generate the documentation. Note: this profile is currently functional only when running maven with java 1.8, because asciidoclet does not have a version compatible with Java 11, see: https://github.com/asciidoctor/asciidoclet/pull/96 --> <profile> <id>document</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> <target>8</target> <additionalparam> -Xdoclint:none </additionalparam> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <modules> <module>generator</module> <module>sdk</module> </modules> </project>