Skip to content

Fix for issue #6 & #7. #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 31, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions api.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,12 @@ <h3>
<pre><code>&lt;dependency&gt;
&lt;groupId&gt;javax.money&lt;/groupId&gt;
&lt;artifactId&gt;money-api&lt;/artifactId&gt;
&lt;version&gt;0.8-SNAPSHOT&lt;/version&gt;
&lt;version&gt;1.0-RC1&lt;/version&gt;
&lt;/dependency&gt;
</code></pre>

<p>Further versions can be found <a href="http://mvnrepository.com/artifact/org.javamoney/moneta/" target="_blank"></a> here.</p>

<p>Though it is possible to compile your programs completely with the API, in most cases, you will also have to
add an implementation, e.g. the <a href="ri.html">Moneta</a> reference implementation.</p>

Expand All @@ -142,7 +144,7 @@ <h3>
<p>
The API basically consists of three packages:
<ul>
<li><b>javax.money</b> contains the main artifacts of the API, e.g. the interfaces for <code>MonetaryAmount, CurrencyUnit, MonetaryOPerator, MonetaryQuery</code>, and the
<li><b>javax.money</b> contains the main artifacts of the API, e.g. the interfaces for <code>MonetaryAmount, CurrencyUnit, MonetaryOperator, MonetaryQuery</code>, and the
accessor singletons for amounts, currencies and roundings.</li>
<li><b>javax.money.format</b> contains the formatting logic, which has some similarities with <code>java.text</code> but relies
more on immutable artifacts and builders.</li>
Expand Down
2 changes: 1 addition & 1 deletion ri.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h3>
<pre><code>&lt;dependency&gt;
&lt;groupId&gt;org.javamoney&lt;/groupId&gt;
&lt;artifactId&gt;moneta&lt;/artifactId&gt;
&lt;version&gt;0.8-SNAPSHOT&lt;/version&gt;
&lt;version&gt;1.0-RC1&lt;/version&gt;
&lt;/dependency&gt;
</code></pre>

Expand Down
2 changes: 1 addition & 1 deletion tck.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h3>
<pre><code>&lt;dependency&gt;
&lt;groupId&gt;org.javamoney&lt;/groupId&gt;
&lt;artifactId&gt;money-tck&lt;/artifactId&gt;
&lt;version&gt;0.8-SNAPSHOT&lt;/version&gt;
&lt;version&gt;1.0-RC1&lt;/version&gt;
&lt;/dependency&gt;
</code></pre>

Expand Down