cv4pve-api-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.corsinvest.proxmoxve</groupId>
<artifactId>cv4pve-api-java</artifactId>
<version>9.1.1</version>
</dependency><?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- === PROJECT INFO === -->
<groupId>it.corsinvest.proxmoxve</groupId>
<artifactId>cv4pve-api-java</artifactId>
<version>9.1.1</version>
<packaging>jar</packaging>
<name>cv4pve-api-java</name>
<description>Java client library for Proxmox VE API - Comprehensive REST API wrapper for managing Proxmox Virtual Environment clusters, VMs, containers, storage, and networking</description>
<url>https://github.com/corsinvest/cv4pve-api-java</url>
<organization>
<name>Corsinvest Srl</name>
<url>https://www.corsinvest.it</url>
</organization>
<!-- === LICENSE === -->
<licenses>
<license>
<name>GPL-3.0 License</name>
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>manual</distribution>
</license>
</licenses>
<!-- === DEVELOPERS === -->
<developers>
<developer>
<id>dc</id>
<name>Daniele Corsini</name>
<email>daniele.corsini@corsinvest.it</email>
<url>https://github.com/corsinvest</url>
<organization>Corsinvest Srl</organization>
<timezone>Europe/Rome</timezone>
</developer>
</developers>
<!-- === SOURCE CONTROL === -->
<scm>
<url>https://github.com/corsinvest/cv4pve-api-java</url>
<connection>scm:git:https://github.com/corsinvest/cv4pve-api-java.git</connection>
<developerConnection>scm:git:ssh://git@github.com:corsinvest/cv4pve-api-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<!-- === ISSUE MANAGEMENT === -->
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/corsinvest/cv4pve-api-java/issues</url>
</issueManagement>
<!-- === PROPERTIES === -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<jackson.version>2.17.0</jackson.version>
<junit.version>5.10.0</junit.version>
</properties>
<!-- === DEPENDENCIES === -->
<dependencies>
<!-- Jackson (JSON) -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- JUnit Jupiter -->
<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-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- === DISTRIBUTION MANAGEMENT (Central Portal) === -->
<distributionManagement>
<repository>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
</distributionManagement>
<!-- === BUILD CONFIG === -->
<build>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>17</release>
</configuration>
</plugin>
<!-- Source JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG signing -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<skip>${gpg.skip}</skip>
</configuration>
</execution>
</executions>
</plugin>
<!-- Central Publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<!-- Exec plugin for running test examples -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<mainClass>it.corsinvest.proxmoxve.api.Test</mainClass>
<classpathScope>test</classpathScope>
</configuration>
</plugin>
</plugins>
</build>
<!-- === PROFILES === -->
<profiles>
<profile>
<id>dev</id>
<properties>
<gpg.skip>true</gpg.skip>
</properties>
</profile>
<profile>
<id>release</id>
<properties>
<gpg.skip>false</gpg.skip>
</properties>
<build>
<plugins>
<!-- GPG signing for release -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Central Publishing for release -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>