Skip to content

Commit

Permalink
18: Build bitcoin module (all modules) with Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Aug 2, 2015
1 parent 1599cfe commit 1b6e46a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions digital-currency/bitcoin/pom.xml
Expand Up @@ -16,8 +16,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<showDeprecation>true</showDeprecation>
<debug>false</debug>
</configuration>
Expand Down Expand Up @@ -148,7 +148,7 @@
<dependency>
<groupId>org.javamoney</groupId>
<artifactId>moneta</artifactId>
<version>${javamoney.version}</version>
<version>${ri.version}</version>
<scope>compile</scope>
</dependency>

Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2014, Werner Keil and others by the @author tag.
* Copyright (c) 2013, 2015, Werner Keil and others by the @author tag.
* 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
Expand Down Expand Up @@ -37,7 +37,7 @@
import org.codehaus.jackson.map.ObjectMapper;
// TODO consider switching to JSR 353

import org.javamoney.moneta.convert.ExchangeRateBuilder;
import org.javamoney.moneta.ExchangeRateBuilder;
import org.javamoney.moneta.spi.DefaultNumberValue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
2 changes: 1 addition & 1 deletion lib-incubator/pom.xml
Expand Up @@ -11,7 +11,7 @@

<properties>
<jsr.version>1.0</jsr.version>
<ri.version>1.0.1-SNAPSHOT</ri.version>
<ri.version>1.0</ri.version>
<!-- dependency versions -->
<testng.version>6.8.5</testng.version>
<additionalparam>-Xdoclint:none</additionalparam>
Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Expand Up @@ -16,13 +16,15 @@
<inceptionYear>2013</inceptionYear>

<properties>
<jdk.version>1.7</jdk.version>
<basedir>.</basedir>
<!-- Dependency versions -->
<junit.version>4.8.2</junit.version>
<slf4j.version>1.6.1</slf4j.version>
<!-- JSR versions -->
<jsr.version>1.0</jsr.version>
<javamoney.version>1.0.1-SNAPSHOT</javamoney.version>
<ri.version>1.0</ri.version>
<javamoney.version>1.0</javamoney.version>
</properties>

<repositories>
Expand Down

0 comments on commit 1b6e46a

Please sign in to comment.