Skip to content

Commit

Permalink
/issues/63 Fixed module declaration and build.
Browse files Browse the repository at this point in the history
  • Loading branch information
atsticks committed Apr 8, 2018
1 parent a45d482 commit 9d535fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 33 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -805,14 +805,14 @@
<!-- recompile everything for target VM except the module-info.java -->
<configuration>
<excludes>
<exclude>javax/money/module-info.java</exclude>
<exclude>javax.money/module-info.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
<configuration>
<source>${maven.compile.sourceLevel}</source>
<target>${maven.compile.targetLevel}</target>
<source>9</source>
<target>9</target>
<excludes>
<exclude>javax/money/module-info.java</exclude>
</excludes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* @author Anatole Tresch
* @author Werner Keil
*/
final class DefaultMonetaryRoundingsSingletonSpi implements MonetaryRoundingsSingletonSpi {
public final class DefaultMonetaryRoundingsSingletonSpi implements MonetaryRoundingsSingletonSpi {

/**
* An adaptive rounding instance that transparently looks up the correct
Expand Down
29 changes: 0 additions & 29 deletions src/main/java/javax/money/module-info.java

This file was deleted.

0 comments on commit 9d535fe

Please sign in to comment.