Skip to content

Commit

Permalink
Login with One-time password for Two-factor authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
franklupo committed Sep 18, 2023
1 parent 880fd6d commit 0047ec5
Show file tree
Hide file tree
Showing 8 changed files with 863 additions and 722 deletions.
2 changes: 1 addition & 1 deletion 3rd-party-licenses.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# License overview of included 3rd party libraries

The project is licensed under the terms of the [LICENSE.md](LICENSE.md)
The project is licensed under the terms of the [LICENSE](LICENSE)

However, includes several third-party Open-Source libraries, which are licensed under their own respective Open-Source licenses.

Expand Down
1,346 changes: 673 additions & 673 deletions LICENSE.md → LICENSE

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Proxmox VE Client API Java

[![License](https://img.shields.io/github/license/Corsinvest/cv4pve-api-java.svg)](LICENSE.md) ![GitHub release](https://img.shields.io/github/release/Corsinvest/cv4pve-api-java.svg)
![GitHub release](https://img.shields.io/github/release/Corsinvest/cv4pve-api-java.svg)

[Proxmox VE Api](https://pve.proxmox.com/pve-docs/api-viewer/)

Expand All @@ -19,7 +19,7 @@ Corsinvest for Proxmox VE Api Client (Made in Italy)
## Copyright and License

Copyright: Corsinvest Srl
For licensing details please visit [LICENSE.md](LICENSE.md)
For licensing details please visit [LICENSE](LICENSE)

## Commercial Support

Expand Down Expand Up @@ -71,6 +71,7 @@ The result is class **Result** and contain methods:
* Minimal dependency library
* ClientBase lite function
* Form Proxmox VE 6.2 support Api Token for user
* Login with One-time password for Two-factor authentication

## Api token

Expand Down
96 changes: 87 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,29 +1,53 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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>it.corsinvest.proxmoxve.api</groupId>
<groupId>it.corsinvest.proxmoxve</groupId>
<artifactId>cv4pve-api-java</artifactId>
<version>8.0.0</version>
<version>8.0.1</version>
<packaging>jar</packaging>
<name>cv4pve-api-java</name>
<description>Corsinvest for Proxmox VE Client API Java</description>
<url>http://www.corsinvest.it/cv4pve</url>


<scm>
<connection>scm:git:git://github.com/corsinvest/cv4pve-api-java.git</connection>
<developerConnection>scm:git:ssh://github.com:corsinvest/cv4pve-api-java.git</developerConnection>
<url>http://github.com/corsinvest/cv4pve-api-java/tree/master</url>
</scm>

<organization>
<name>Corsinvest Srl</name>
</organization>
<licenses>
<license>
<name>GPL-3.0 license</name>
<distribution>>https://www.gnu.org/licenses/gpl-3.0.txt</distribution>
</license>
</licenses>


<!--
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/corsinvest/cv4pve-api-java</url>
</repository>
</distributionManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>github</id>
<name>GitHub OWNER Apache Maven Packages</name>
<url>https://maven.pkg.github.com/corsinvest/cv4pve-api-java</url>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

-->

<developers>
<developer>
<id>dc</id>
Expand All @@ -50,4 +74,58 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<source>8</source>
</configuration>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>
Loading

0 comments on commit 0047ec5

Please sign in to comment.