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-07-21 17:49:37 +02:00
|
|
|
<version>0.2-gossip-SNAPSHOT</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>eclair-demo_2.11</artifactId>
|
|
|
|
<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>
|
|
|
|
<groupId>com.github.chrischristo</groupId>
|
|
|
|
<artifactId>capsule-maven-plugin</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<types>fat</types>
|
|
|
|
<appClass>fr.acinq.eclair.Boot</appClass>
|
|
|
|
<customDescriptorFat>-${git.commit.id.abbrev}-capsule-fat</customDescriptorFat>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-08-19 13:57:05 +02:00
|
|
|
<dependencies>
|
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>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-http-experimental_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2015-08-19 13:57:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.acinq</groupId>
|
2015-08-19 15:50:41 +02:00
|
|
|
<artifactId>bitcoin-lib_${scala.version.short}</artifactId>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependency>
|
2016-01-20 12:20:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.acinq.acinq-tools</groupId>
|
|
|
|
<artifactId>bitcoin-async-api_${scala.version.short}</artifactId>
|
|
|
|
<version>${acinqtools.version}</version>
|
|
|
|
</dependency>
|
2015-08-19 15:43:58 +02:00
|
|
|
<dependency>
|
2015-08-19 15:51:30 +02:00
|
|
|
<groupId>fr.acinq.eclair</groupId>
|
2015-08-19 15:50:41 +02:00
|
|
|
<artifactId>lightning-types_${scala.version.short}</artifactId>
|
2015-09-09 11:30:36 +02:00
|
|
|
<version>${project.parent.version}</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.trueaccord.scalapb</groupId>
|
2015-08-19 15:50:41 +02:00
|
|
|
<artifactId>scalapb-runtime_${scala.version.short}</artifactId>
|
2015-08-19 13:57:05 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.trueaccord.lenses</groupId>
|
2015-08-19 15:50:41 +02:00
|
|
|
<artifactId>lenses_${scala.version.short}</artifactId>
|
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>
|
2015-08-24 18:06:04 +02:00
|
|
|
<dependency>
|
|
|
|
<!--conditional logging -->
|
|
|
|
<groupId>janino</groupId>
|
|
|
|
<artifactId>janino</artifactId>
|
|
|
|
<version>2.5.10</version>
|
|
|
|
</dependency>
|
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>
|
|
|
|
</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>
|