2017-06-06 18:37:34 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-03-21 16:29:42 +01:00
|
|
|
<!--
|
2019-05-09 16:40:37 +02:00
|
|
|
~ Copyright 2019 ACINQ SAS
|
2018-03-21 16:29:42 +01:00
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2017-06-06 18:37:34 +02:00
|
|
|
<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>
|
2020-04-27 13:11:55 +02:00
|
|
|
<artifactId>eclair_2.13</artifactId>
|
2022-02-01 10:42:29 +01:00
|
|
|
<version>0.7.1-SNAPSHOT</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
</parent>
|
|
|
|
|
2020-04-27 13:11:55 +02:00
|
|
|
<artifactId>eclair-core_2.13</artifactId>
|
2017-06-06 18:37:34 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.maven-download-plugin</groupId>
|
|
|
|
<artifactId>download-maven-plugin</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>download-bitcoind</id>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>wget</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-05-13 15:19:48 +02:00
|
|
|
<skip>${maven.test.skip}</skip>
|
2017-06-06 18:37:34 +02:00
|
|
|
<url>${bitcoind.url}</url>
|
|
|
|
<unpack>true</unpack>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
<md5>${bitcoind.md5}</md5>
|
|
|
|
<sha1>${bitcoind.sha1}</sha1>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
2020-10-12 10:41:52 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
2020-12-08 18:41:51 +01:00
|
|
|
<phase>test-compile</phase>
|
2020-10-12 10:41:52 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2017-06-06 18:37:34 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2021-06-09 14:20:00 +02:00
|
|
|
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-x86_64-linux-gnu.tar.gz</bitcoind.url>
|
|
|
|
<bitcoind.md5>e283a98b5e9f0b58e625e1dde661201d</bitcoind.md5>
|
|
|
|
<bitcoind.sha1>5101e29b39c33cc8e40d5f3b46dda37991b037a0</bitcoind.sha1>
|
2017-06-06 18:37:34 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2017-09-12 14:51:43 +02:00
|
|
|
<profile>
|
|
|
|
<id>Mac</id>
|
|
|
|
<activation>
|
2017-11-21 20:08:15 +01:00
|
|
|
<os>
|
|
|
|
<family>mac</family>
|
|
|
|
</os>
|
2017-09-12 14:51:43 +02:00
|
|
|
</activation>
|
|
|
|
<properties>
|
2021-06-09 14:20:00 +02:00
|
|
|
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-osx64.tar.gz</bitcoind.url>
|
|
|
|
<bitcoind.md5>dfd1f323678eede14ae2cf6afb26ff6a</bitcoind.md5>
|
|
|
|
<bitcoind.sha1>4273696f90a2648f90142438221f5d1ade16afa2</bitcoind.sha1>
|
2017-09-12 14:51:43 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2017-06-06 18:37:34 +02:00
|
|
|
<profile>
|
|
|
|
<id>Windows</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>Windows</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
2021-06-09 14:20:00 +02:00
|
|
|
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-win64.zip</bitcoind.url>
|
|
|
|
<bitcoind.md5>1c6f5081ea68dcec7eddb9e6cdfc508d</bitcoind.md5>
|
|
|
|
<bitcoind.sha1>a782cd413fc736f05fad3831d6a9f59dde779520</bitcoind.sha1>
|
2017-06-06 18:37:34 +02:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-04-27 13:11:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang.modules</groupId>
|
|
|
|
<artifactId>scala-collection-contrib_${scala.version.short}</artifactId>
|
|
|
|
<version>0.2.1</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<!-- AKKA -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-actor_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2020-09-16 09:46:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-actor-typed_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-slf4j_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2020-12-08 18:41:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-cluster_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-cluster-typed_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-cluster-tools_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
</dependency>
|
2018-10-25 16:45:27 +02:00
|
|
|
<!-- HTTP CLIENT -->
|
|
|
|
<dependency>
|
2022-02-08 11:37:24 +01:00
|
|
|
<groupId>com.softwaremill.sttp.client3</groupId>
|
2018-11-23 11:58:23 +01:00
|
|
|
<artifactId>okhttp-backend_${scala.version.short}</artifactId>
|
2018-10-25 16:45:27 +02:00
|
|
|
<version>${sttp.version}</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<!-- JSON -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json4s</groupId>
|
|
|
|
<artifactId>json4s-jackson_${scala.version.short}</artifactId>
|
2022-02-08 11:37:24 +01:00
|
|
|
<version>4.0.3</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
</dependency>
|
2018-10-25 16:45:27 +02:00
|
|
|
<dependency>
|
2022-02-08 11:37:24 +01:00
|
|
|
<groupId>com.softwaremill.sttp.client3</groupId>
|
2018-10-25 16:45:27 +02:00
|
|
|
<artifactId>json4s_${scala.version.short}</artifactId>
|
|
|
|
<version>${sttp.version}</version>
|
|
|
|
</dependency>
|
2018-12-11 18:13:38 +01:00
|
|
|
<!-- TCP -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
2019-10-03 15:01:10 +02:00
|
|
|
<version>4.1.42.Final</version>
|
2018-12-11 18:13:38 +01:00
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<!-- BITCOIN -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.acinq</groupId>
|
|
|
|
<artifactId>bitcoin-lib_${scala.version.short}</artifactId>
|
|
|
|
<version>${bitcoinlib.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.zeromq</groupId>
|
|
|
|
<artifactId>jeromq</artifactId>
|
2021-05-17 15:32:25 +02:00
|
|
|
<version>0.5.2</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- SERIALIZATION -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scodec</groupId>
|
|
|
|
<artifactId>scodec-core_${scala.version.short}</artifactId>
|
2022-02-08 11:37:24 +01:00
|
|
|
<version>1.11.9</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
</dependency>
|
2022-01-31 12:49:39 +01:00
|
|
|
<dependency>
|
|
|
|
<!-- needed to fix "No implicit Ordering defined for scodec.bits.ByteVector" -->
|
|
|
|
<groupId>org.scodec</groupId>
|
|
|
|
<artifactId>scodec-bits_${scala.version.short}</artifactId>
|
2022-02-08 11:37:24 +01:00
|
|
|
<version>1.1.30</version>
|
2022-01-31 12:49:39 +01:00
|
|
|
</dependency>
|
2019-02-08 10:18:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<!-- LOGGING -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.clapper</groupId>
|
|
|
|
<artifactId>grizzled-slf4j_${scala.version.short}</artifactId>
|
2020-04-24 15:31:25 +02:00
|
|
|
<version>1.3.4</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- OTHER -->
|
2018-12-20 16:52:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jheaps</groupId>
|
|
|
|
<artifactId>jheaps</artifactId>
|
|
|
|
<version>0.9</version>
|
|
|
|
</dependency>
|
2017-08-29 15:35:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
2021-07-16 19:02:18 +02:00
|
|
|
<version>3.36.0.1</version>
|
2017-08-29 15:35:28 +02:00
|
|
|
</dependency>
|
2020-07-01 14:52:36 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2022-02-08 11:37:24 +01:00
|
|
|
<version>42.3.2</version>
|
2020-07-01 14:52:36 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>3.4.2</version>
|
|
|
|
</dependency>
|
2021-04-22 11:39:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<version>1.68</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<dependency>
|
|
|
|
<!-- This is to get rid of '[WARNING] warning: Class javax.annotation.Nonnull not found - continuing with a stub.' compile errors -->
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</dependency>
|
2018-02-20 14:26:38 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
</dependency>
|
2021-07-08 13:57:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.softwaremill.quicklens</groupId>
|
|
|
|
<artifactId>quicklens_${scala.version.short}</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
2019-09-06 14:37:26 +02:00
|
|
|
<!-- MONITORING -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.kamon</groupId>
|
|
|
|
<artifactId>kamon-core_${scala.version.short}</artifactId>
|
|
|
|
<version>${kamon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.kamon</groupId>
|
|
|
|
<artifactId>kamon-akka_${scala.version.short}</artifactId>
|
|
|
|
<version>${kamon.version}</version>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<!-- TESTS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-testkit_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-16 09:46:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-actor-testkit-typed_${scala.version.short}</artifactId>
|
|
|
|
<version>${akka.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.2.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-20 14:22:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
2020-04-24 15:31:25 +02:00
|
|
|
<artifactId>mockito-scala-scalatest_${scala.version.short}</artifactId>
|
|
|
|
<version>1.5.9</version>
|
2019-05-20 14:22:09 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-07-01 14:52:36 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.opentable.components</groupId>
|
|
|
|
<artifactId>otj-pg-embedded</artifactId>
|
|
|
|
<version>0.13.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-06 18:37:34 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|