1
0
mirror of https://github.com/ACINQ/eclair.git synced 2024-11-19 01:43:22 +01:00
eclair/pom.xml

205 lines
7.6 KiB
XML
Raw Normal View History

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>
2015-08-19 13:57:05 +02:00
<artifactId>eclair_2.11</artifactId>
2017-04-25 18:37:26 +02:00
<version>0.2-SNAPSHOT</version>
2015-08-19 13:57:05 +02:00
<packaging>pom</packaging>
<modules>
<module>eclair-core</module>
2016-08-26 18:31:12 +02:00
<module>eclair-node</module>
<module>eclair-node-javafx</module>
2015-08-19 13:57:05 +02:00
</modules>
<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>
<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>
<id>sstone</id>
</developer>
<developer>
<id>pm47</id>
</developer>
</developers>
2015-08-19 13:57:05 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-02-03 13:55:25 +01:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<scala.version>2.11.11</scala.version>
2015-08-19 13:57:05 +02:00
<scala.version.short>2.11</scala.version.short>
<akka.version>2.4.18</akka.version>
<bitcoinlib.version>0.9.10</bitcoinlib.version>
2015-08-19 13:57:05 +02:00
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.2</version>
</plugin>
<plugin>
<groupId>sg.enixsoft</groupId>
<artifactId>capsule-maven-plugin</artifactId>
<version>1.3.0</version>
</plugin>
2015-08-19 13:57:05 +02:00
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
2015-08-19 13:57:05 +02:00
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<addScalacArgs>-deprecation</addScalacArgs>
<addScalacArgs>-feature</addScalacArgs>
<addScalacArgs>-language:postfixOps</addScalacArgs>
<scalaCompatVersion>${scala.version.short}</scalaCompatVersion>
</configuration>
2015-08-19 13:57:05 +02:00
<executions>
<execution>
<id>process-resources</id>
<phase>process-resources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>doc-jar</goal>
</goals>
</execution>
2015-08-19 13:57:05 +02:00
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</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>
<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>
2015-09-08 19:36:57 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
2015-09-08 19:36:57 +02:00
<configuration>
<argLine>-Xmx1024m</argLine>
2015-09-08 19:36:57 +02:00
<useFile>false</useFile>
<disableXmlReport>false</disableXmlReport>
<!-- If you have classpath issue like NoDefClassError,... -->
<!-- useManifestOnlyJar>false</useManifestOnlyJar -->
<includes>
<include>**/*Spec.*</include>
<include>**/*Test.*</include>
<include>**/*Suite.*</include>
</includes>
<systemPropertyVariables>
<buildDirectory>${project.build.directory}</buildDirectory>
</systemPropertyVariables>
2015-09-08 19:36:57 +02:00
</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>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.version.short}</artifactId>
2016-05-30 18:07:02 +02:00
<version>2.2.6</version>
2015-08-19 13:57:05 +02:00
<scope>test</scope>
</dependency>
</dependencies>
</project>