mirror of
https://github.com/ACINQ/eclair.git
synced 2025-03-06 18:40:08 +01:00
* implement BOLT 11 (payment request) * (javafx) Added QR Code in receive payment modal, using zxing to generate QR code
108 lines
4.2 KiB
XML
108 lines
4.2 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>fr.acinq.eclair</groupId>
|
|
<artifactId>eclair_2.11</artifactId>
|
|
<version>0.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>eclair-node-javafx_2.11</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>pl.project13.maven</groupId>
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>revision</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<!-- we hide the git commit in the Specification-Version standard field-->
|
|
<Specification-Version>${git.commit.id}</Specification-Version>
|
|
<Url>${project.parent.url}</Url>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>sg.enixsoft</groupId>
|
|
<artifactId>capsule-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
<configuration>
|
|
<appClass>fr.acinq.eclair.JavafxBoot</appClass>
|
|
<type>fat</type>
|
|
<customDescriptor>-${git.commit.id.abbrev}-capsule-fat</customDescriptor>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.zenjava</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>8.8.3</version>
|
|
<executions>
|
|
<execution>
|
|
<!-- required before build-native -->
|
|
<id>create-jfxjar</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>build-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>build-native</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<vendor>ACINQ</vendor>
|
|
<needShortcut>true</needShortcut>
|
|
<appName>Eclair (Alpha 3)</appName>
|
|
<nativeReleaseVersion>0.2.0</nativeReleaseVersion>
|
|
<mainClass>fr.acinq.eclair.JavafxBoot</mainClass>
|
|
<verbose>false</verbose>
|
|
<bundler>EXE</bundler>
|
|
<updateExistingJar>true</updateExistingJar>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>fr.acinq.eclair</groupId>
|
|
<artifactId>eclair-node_${scala.version.short}</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>3.3.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|