2015-08-19 13:57:05 +02:00
|
|
|
<?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>
|
2015-08-19 14:05:14 +02:00
|
|
|
<groupId>fr.acinq.eclair</groupId>
|
2015-08-19 13:57:05 +02:00
|
|
|
<artifactId>eclair_2.11</artifactId>
|
2016-08-25 15:29:33 +02:00
|
|
|
<version>0.2-SNAPSHOT</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</parent>
|
|
|
|
|
2016-08-26 18:31:12 +02:00
|
|
|
<artifactId>eclair-node_2.11</artifactId>
|
2015-08-19 13:57:05 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
2016-02-15 19:19:08 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
|
|
<version>2.1.13</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2016-08-11 14:35:05 +02:00
|
|
|
<groupId>sg.enixsoft</groupId>
|
2016-02-15 19:19:08 +01:00
|
|
|
<artifactId>capsule-maven-plugin</artifactId>
|
2016-08-11 14:35:05 +02:00
|
|
|
<version>1.3.0</version>
|
2016-02-15 19:19:08 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<appClass>fr.acinq.eclair.Boot</appClass>
|
2016-08-11 14:35:05 +02:00
|
|
|
<type>fat</type>
|
|
|
|
<customDescriptor>-${git.commit.id.abbrev}-capsule-fat</customDescriptor>
|
2016-02-15 19:19:08 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-03-15 16:06:19 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.zenjava</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>8.8.3</version>
|
|
|
|
<configuration>
|
|
|
|
<vendor>ACINQ</vendor>
|
|
|
|
<needShortcut>true</needShortcut>
|
|
|
|
<appName>Eclair (Alpha 1)</appName>
|
|
|
|
<nativeReleaseVersion>0.2.0</nativeReleaseVersion>
|
|
|
|
<mainClass>fr.acinq.eclair.Boot</mainClass>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-02-15 19:19:08 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-08-19 13:57:05 +02:00
|
|
|
<dependencies>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- AKKA -->
|
2015-08-20 12:29:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-actor_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2015-08-20 12:42:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-slf4j_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2016-02-20 18:36:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-http-core_${scala.version.short}</artifactId>
|
2017-02-03 13:55:25 +01:00
|
|
|
<version>10.0.3</version>
|
2016-02-20 18:36:50 +01:00
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- JSON -->
|
2016-02-20 18:36:50 +01:00
|
|
|
<dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<groupId>org.json4s</groupId>
|
|
|
|
<artifactId>json4s-jackson_${scala.version.short}</artifactId>
|
|
|
|
<version>3.5.0</version>
|
2016-02-20 18:36:50 +01:00
|
|
|
</dependency>
|
2015-08-19 13:57:05 +02:00
|
|
|
<dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<groupId>de.heikoseeberger</groupId>
|
|
|
|
<artifactId>akka-http-json4s_${scala.version.short}</artifactId>
|
2017-02-03 13:55:25 +01:00
|
|
|
<version>1.11.0</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- BITCOIN -->
|
2016-01-20 12:20:01 +01:00
|
|
|
<dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<groupId>fr.acinq</groupId>
|
|
|
|
<artifactId>bitcoin-lib_${scala.version.short}</artifactId>
|
2016-12-19 16:15:50 +01:00
|
|
|
<version>${bitcoinlib.version}</version>
|
2016-01-20 12:20:01 +01:00
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- SERIALIZATION -->
|
2016-11-17 13:12:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.scodec</groupId>
|
|
|
|
<artifactId>scodec-core_${scala.version.short}</artifactId>
|
|
|
|
<version>1.10.3</version>
|
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- LOGGING -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.clapper</groupId>
|
|
|
|
<artifactId>grizzled-slf4j_${scala.version.short}</artifactId>
|
|
|
|
<version>1.3.0</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependency>
|
2015-08-20 12:42:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.1.3</version>
|
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<dependency>
|
|
|
|
<!--conditional logging -->
|
|
|
|
<groupId>janino</groupId>
|
|
|
|
<artifactId>janino</artifactId>
|
|
|
|
<version>2.5.10</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- OTHER -->
|
2016-08-10 17:48:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jgrapht</groupId>
|
|
|
|
<artifactId>jgrapht-core</artifactId>
|
2017-01-27 20:22:21 +01:00
|
|
|
<version>1.0.1</version>
|
2016-08-18 12:46:10 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jgrapht</groupId>
|
|
|
|
<artifactId>jgrapht-ext</artifactId>
|
2017-01-27 20:22:21 +01:00
|
|
|
<version>1.0.1</version>
|
2017-03-15 16:06:19 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.tinyjee.jgraphx</groupId>
|
|
|
|
<artifactId>jgraphx</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-08-10 17:48:44 +02:00
|
|
|
</dependency>
|
2017-03-15 18:06:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.scopt</groupId>
|
|
|
|
<artifactId>scopt_${scala.version.short}</artifactId>
|
|
|
|
<version>3.5.0</version>
|
|
|
|
</dependency>
|
2016-08-10 17:48:44 +02:00
|
|
|
<dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- This is to get rid of '[WARNING] warning: Class javax.annotation.Nonnull not found - continuing with a stub.' compile errors -->
|
2016-08-10 17:48:44 +02:00
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
</dependency>
|
2016-11-08 18:57:22 +01:00
|
|
|
<!-- TESTS -->
|
2015-09-02 12:43:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-testkit_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
2016-11-08 18:57:22 +01:00
|
|
|
<scope>test</scope>
|
2015-09-02 12:43:37 +02:00
|
|
|
</dependency>
|
2015-10-24 20:28:14 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>18.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|