67 lines
1.9 KiB
XML
67 lines
1.9 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>jmaa.pbc</groupId>
|
|
<artifactId>pbc-vanity-address</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>4.0.0</version>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>gitlab-partisiablockchain</id>
|
|
<url>https://gitlab.com/api/v4/groups/12499775/-/packages/maven/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<parent>
|
|
<groupId>com.partisiablockchain</groupId>
|
|
<artifactId>pom</artifactId>
|
|
<version>4.57.0</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.secata.tools</groupId>
|
|
<artifactId>coverage</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.partisiablockchain.core</groupId>
|
|
<artifactId>contract</artifactId>
|
|
<version>4.55.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.4.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>execute</id>
|
|
<phase>package</phase>
|
|
<goals><goal>exec</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<executable>java</executable>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|