mirror of
https://github.com/ACINQ/eclair.git
synced 2024-11-19 18:10:42 +01:00
set version to 0.1-SNAPSHOT
Squashed commit of the following: commit 668e6c5b1df18a4e1a1e6d293bc2667dcce67f21 Author: sstone <samuel.stone@hotmail.co.za> Date: Wed Feb 17 16:11:30 2016 +0100 format pom.xml properly commit ab8f626145a0e6291da80000b47b4ac42a943b3c Author: sstone <samuel.stone@hotmail.co.za> Date: Wed Feb 17 15:47:22 2016 +0100 fix pom.xml commit 068afa08d6b498ec2f46b5b4addea676e199d228 Author: sstone <samuel.stone@hotmail.co.za> Date: Wed Feb 17 15:20:07 2016 +0100 mvn does not need . on the PATH anymore
This commit is contained in:
parent
de4caeb1fd
commit
030a7cf2d3
@ -3,8 +3,6 @@ before_install:
|
||||
- wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.bz2
|
||||
- tar -xjvf protobuf-2.6.1.tar.bz2
|
||||
- cd protobuf-2.6.1 && ./configure --prefix=/usr && make && sudo make install && cd ..
|
||||
env:
|
||||
- PATH=$PATH:.
|
||||
scala:
|
||||
- 2.11.7
|
||||
jdk:
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>fr.acinq.eclair</groupId>
|
||||
<artifactId>eclair_2.11</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>eclair-demo_2.11</artifactId>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>fr.acinq.eclair</groupId>
|
||||
<artifactId>eclair_2.11</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>lightning-types_2.11</artifactId>
|
||||
@ -29,7 +29,7 @@
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<executable>generate</executable>
|
||||
<executable>${project.basedir}/generate${script.extension}</executable>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
@ -58,4 +58,27 @@
|
||||
<artifactId>scalapb-runtime_${scala.version.short}</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>default</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<properties>
|
||||
<script.extension></script.extension>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>Windows</id>
|
||||
<activation>
|
||||
<os>
|
||||
<family>Windows</family>
|
||||
</os>
|
||||
</activation>
|
||||
<properties>
|
||||
<script.extension>.bat</script.extension>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
Loading…
Reference in New Issue
Block a user