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.
|
|
|
|
-->
|
|
|
|
|
2015-08-19 13:57:05 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2015-08-19 14:05:14 +02:00
|
|
|
<groupId>fr.acinq.eclair</groupId>
|
2020-04-27 13:11:55 +02:00
|
|
|
<artifactId>eclair_2.13</artifactId>
|
2020-07-20 12:00:01 +02:00
|
|
|
<version>0.4.2-SNAPSHOT</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
2017-06-06 18:37:34 +02:00
|
|
|
<module>eclair-core</module>
|
2016-08-26 18:31:12 +02:00
|
|
|
<module>eclair-node</module>
|
2017-08-23 19:28:18 +02:00
|
|
|
<module>eclair-node-gui</module>
|
2015-08-19 13:57:05 +02:00
|
|
|
</modules>
|
|
|
|
|
2016-01-21 15:04:42 +01:00
|
|
|
<description>A scala implementation of the Lightning Network</description>
|
|
|
|
<url>https://github.com/ACINQ/eclair</url>
|
2015-08-19 13:57:05 +02:00
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
2016-01-21 15:04:42 +01:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<url>https://raw.githubusercontent.com/ACINQ/eclair/master/LICENSE</url>
|
|
|
|
<name>Apache License</name>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:ACINQ/eclair.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:ACINQ/eclair.git</developerConnection>
|
|
|
|
<url>git@github.com:ACINQ/eclair.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
2017-09-20 15:16:49 +02:00
|
|
|
<id>dpad85</id>
|
2016-01-21 15:04:42 +01:00
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>pm47</id>
|
|
|
|
</developer>
|
2017-09-20 15:16:49 +02:00
|
|
|
<developer>
|
|
|
|
<id>sstone</id>
|
|
|
|
</developer>
|
2016-01-21 15:04:42 +01:00
|
|
|
</developers>
|
|
|
|
|
2015-08-19 13:57:05 +02:00
|
|
|
<properties>
|
2020-01-30 15:27:02 +01:00
|
|
|
<project.build.outputTimestamp>2020-01-01T00:00:00Z</project.build.outputTimestamp>
|
2015-08-19 13:57:05 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-09-16 11:04:10 +02:00
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2020-04-27 15:22:18 +02:00
|
|
|
<scala.version>2.13.1</scala.version>
|
2020-04-27 13:11:55 +02:00
|
|
|
<scala.version.short>2.13</scala.version.short>
|
|
|
|
<akka.version>2.6.4</akka.version>
|
|
|
|
<akka.http.version>10.1.11</akka.http.version>
|
2020-04-24 15:31:25 +02:00
|
|
|
<sttp.version>1.7.2</sttp.version>
|
2020-04-27 13:11:55 +02:00
|
|
|
<bitcoinlib.version>0.18</bitcoinlib.version>
|
2018-02-20 14:26:38 +01:00
|
|
|
<guava.version>24.0-android</guava.version>
|
2020-05-06 15:58:08 +02:00
|
|
|
<kamon.version>2.1.0</kamon.version>
|
2015-08-19 13:57:05 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2017-12-03 17:46:41 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
2020-02-24 15:42:26 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2017-12-03 17:46:41 +01:00
|
|
|
</plugin>
|
2017-03-27 11:14:54 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2020-01-30 15:27:02 +01:00
|
|
|
<version>3.2.0</version>
|
2017-03-27 11:14:54 +02:00
|
|
|
</plugin>
|
2015-08-19 13:57:05 +02:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
2020-02-24 15:42:26 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
</plugin>
|
2017-06-06 18:37:34 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</plugin>
|
2017-12-05 17:29:47 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2017-12-08 16:24:43 +01:00
|
|
|
<version>2.2.3</version>
|
2017-12-05 17:29:47 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-08-19 13:57:05 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
2018-10-11 19:01:41 +02:00
|
|
|
<version>3.4.2</version>
|
2017-06-06 18:37:34 +02:00
|
|
|
<configuration>
|
2017-12-03 20:33:22 +01:00
|
|
|
<args combine.children="append">
|
2020-04-27 13:11:55 +02:00
|
|
|
<!--arg>-Xlint:deprecation</arg-->
|
2017-07-17 14:28:07 +02:00
|
|
|
<arg>-feature</arg>
|
|
|
|
<arg>-language:postfixOps</arg>
|
|
|
|
<arg>-language:implicitConversions</arg>
|
2020-04-27 13:11:55 +02:00
|
|
|
<!--arg>-Werror</arg-->
|
2017-12-22 21:01:40 +01:00
|
|
|
<arg>-unchecked</arg>
|
2017-07-17 14:28:07 +02:00
|
|
|
</args>
|
2019-07-02 10:06:57 +02:00
|
|
|
<jvmArgs>
|
|
|
|
<jvmArg>-Xmx1024m</jvmArg>
|
|
|
|
<jvmArg>-Xms1024m</jvmArg>
|
|
|
|
<jvmArg>-Xss32m</jvmArg>
|
|
|
|
</jvmArgs>
|
2017-06-06 18:37:34 +02:00
|
|
|
<scalaCompatVersion>${scala.version.short}</scalaCompatVersion>
|
|
|
|
</configuration>
|
2015-08-19 13:57:05 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2017-12-03 20:33:22 +01:00
|
|
|
<id>scalac</id>
|
2015-08-19 13:57:05 +02:00
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2016-01-21 15:04:42 +01:00
|
|
|
<execution>
|
2017-12-03 20:33:22 +01:00
|
|
|
<id>scaladoc</id>
|
2016-01-21 15:04:42 +01:00
|
|
|
<goals>
|
|
|
|
<goal>doc-jar</goal>
|
|
|
|
</goals>
|
2017-12-03 20:33:22 +01:00
|
|
|
<configuration>
|
2020-05-13 15:19:48 +02:00
|
|
|
<skip>${maven.test.skip}</skip>
|
2017-12-03 20:33:22 +01:00
|
|
|
<args>
|
|
|
|
<arg>-no-link-warnings</arg>
|
|
|
|
</args>
|
|
|
|
</configuration>
|
2016-01-21 15:04:42 +01:00
|
|
|
</execution>
|
2015-08-19 13:57:05 +02:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2020-01-30 15:27:02 +01:00
|
|
|
<version>3.2.0</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2017-06-06 18:37:34 +02:00
|
|
|
<version>3.0.0</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src/main/scala</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>add-test-source</id>
|
|
|
|
<phase>generate-test-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-test-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src/test/scala</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-10-11 19:01:41 +02:00
|
|
|
<!-- disable surefire -->
|
2015-09-08 19:36:57 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2017-06-06 18:37:34 +02:00
|
|
|
<version>2.20</version>
|
2015-09-08 19:36:57 +02:00
|
|
|
<configuration>
|
2018-10-11 19:01:41 +02:00
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<!-- enable scalatest -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.scalatest</groupId>
|
|
|
|
<artifactId>scalatest-maven-plugin</artifactId>
|
|
|
|
<version>2.0.0</version>
|
|
|
|
<configuration>
|
2019-09-11 13:40:46 +02:00
|
|
|
<parallel>true</parallel>
|
2018-10-11 19:01:41 +02:00
|
|
|
<systemProperties>
|
2017-03-16 16:18:52 +01:00
|
|
|
<buildDirectory>${project.build.directory}</buildDirectory>
|
2018-10-11 19:01:41 +02:00
|
|
|
</systemProperties>
|
2019-09-11 10:55:43 +02:00
|
|
|
<argLine>-Xmx1024m -Dfile.encoding=UTF-8</argLine>
|
2015-09-08 19:36:57 +02:00
|
|
|
</configuration>
|
2018-10-11 19:01:41 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-09-08 19:36:57 +02:00
|
|
|
</plugin>
|
2019-05-09 11:42:38 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.scoverage</groupId>
|
|
|
|
<artifactId>scoverage-maven-plugin</artifactId>
|
|
|
|
<version>1.4.0-RC1</version>
|
|
|
|
<configuration>
|
2020-05-13 15:19:48 +02:00
|
|
|
<skip>${maven.test.skip}</skip>
|
2019-05-09 11:42:38 +02:00
|
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-08-19 13:57:05 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype snapshots</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang</groupId>
|
|
|
|
<artifactId>scala-library</artifactId>
|
|
|
|
<version>${scala.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scalatest</groupId>
|
2015-08-19 15:50:41 +02:00
|
|
|
<artifactId>scalatest_${scala.version.short}</artifactId>
|
2020-04-24 15:31:25 +02:00
|
|
|
<version>3.1.1</version>
|
2015-08-19 13:57:05 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|