www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,86 @@
<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>
<groupId>it.acxent</groupId>
<artifactId>acxent-bank</artifactId>
<version>1.0.1</version>
<name>Acxent Banche</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.7.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>11</version>
</jdk>
</toolchains>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github-repo</id>
<name>GitHub acolzi Apache Maven Packages</name>
<url>https://maven.pkg.github.com/acolzi/repo</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>github-repo</id>
<name>GitHub Repository</name>
<url>https://maven.pkg.github.com/acolzi/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>22.29.0</version>
</dependency>
<dependency>
<groupId>com.paypal.sdk</groupId>
<artifactId>checkout-sdk</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>it.acxent</groupId>
<artifactId>acxent-core</artifactId>
<version>1.0.1</version>
</dependency>
<!--
<dependency>
<groupId>it.acxent</groupId>
<artifactId>poste-e24paymentpipe</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>it.acxent</groupId>
<artifactId>poste-igfs-cg-plugins</artifactId>
<version>0.0.2</version>
</dependency>-->
</dependencies>
</project>