Skip to content

Commit f8ea817

Browse files
committed
1 parent b831ca2 commit f8ea817

27 files changed

+594
-1086
lines changed

api.html

Lines changed: 35 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@
6262
<li><a href="https://github.com/JavaMoney/javamoney-examples" target="_blank">Examples</a></li>
6363
<li><a href="shelter.html">Shelter</a></li>
6464
<li><a href="http://jadira.sourceforge.net/usertype.extended/" target="_blank">Jadira Usertype Extended (Hibernate support)</a></li>
65+
<li><a href="https://github.com/zalando/jackson-datatype-money" target="_blank">Jackson Datatype Money by Zalando</a></li>
6566
<li class="divider"></li>
6667
<li class="nav-header">Additional Information</li>
6768
<li><a href="https://jcp.org/en/jsr/detail?id=354" target="_blank">JSR 354 Detail Page</a></li>
68-
<!--
69-
<li><a href="https://javamoney.java.net" target="_blank">JSR 354 Project on Java.net</a></li>
70-
<li><a href="blog.html">Blog (Events &amp; History)</a></li></li>
71-
-->
7269
</ul>
7370
</li>
7471
</ul>
@@ -83,87 +80,43 @@ <h1>Specification (JSR 354)</h1>
8380

8481
<p><em>14 April 2018</em></p>
8582

86-
<p>
87-
<h2>Money &amp; Currency API</h2>
88-
89-
<section id="downloads" class="clearfix">
90-
<a href="https://github.com/JavaMoney/jsr354-api/zipball/master"
91-
id="download-zip" class="button"><span>Download .zip</span></a> <a
92-
href="https://github.com/JavaMoney/jsr354-api/tarball/master"
93-
id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
94-
<a href="https://github.com/JavaMoney/jsr354-api" id="view-on-github"
95-
class="button"><span>View on GitHub</span></a>
96-
</section>
97-
98-
<hr>
99-
100-
<section id="main_content">
101-
<h3>
102-
<a name="what-is-jsr-354"
103-
class="anchor"
104-
href="#what-is-jsr-354"><span
105-
class="octicon octicon-link"></span></a>What is JSR 354?
106-
</h3>
107-
108-
<p>JSR 354 provides a portable and extendible framework for handling of Money &amp; Currency. The API
109-
models monetary amounts and currencies in a platform independent and portable way, including well
110-
defined extension points. It's API defines a simple yet flexible contract that enables users to choose
111-
the implementation matching their target requirements best and having full control about the numeric state
112-
at all stages during monetary processing. <br/>
113-
The JSR is lead by Anatole Tresch (Credit Suisse) (<a href="https://github.com/atsticks" class="user-mention">@atsticks</a>).
114-
<br/>You can access the API by adding the following Maven
115-
dependencies:</p>
116-
117-
<pre><code>&lt;dependency&gt;
83+
<p><h2>Money &amp; Currency API</h2>
84+
<section id="downloads" class="clearfix">
85+
<a href="https://github.com/JavaMoney/jsr354-api/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
86+
<a href="https://github.com/JavaMoney/jsr354-api/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
87+
<a href="https://github.com/JavaMoney/jsr354-api" id="view-on-github" class="button"><span>View on GitHub</span></a>
88+
</section>
89+
<hr>
90+
<section id="main_content">
91+
<h3> <a name="what-is-jsr-354" class="anchor" href="#what-is-jsr-354"><span class="octicon octicon-link"></span></a>What is JSR 354? </h3>
92+
<p>JSR 354 provides a portable and extendible framework for handling of Money &amp; Currency. The API models monetary amounts and currencies in a platform independent and portable way, including well defined extension points. It's API defines a simple yet flexible contract that enables users to choose the implementation matching their target requirements best and having full control about the numeric state at all stages during monetary processing. <br> The JSR is lead by Anatole Tresch (Credit Suisse) (<a href="https://github.com/atsticks" class="user-mention">@atsticks</a>). <br>You can access the API by adding the following Maven dependencies:</p>
93+
<pre><code>&lt;dependency&gt;
11894
&lt;groupId&gt;javax.money&lt;/groupId&gt;
11995
&lt;artifactId&gt;money-api&lt;/artifactId&gt;
12096
&lt;version&gt;1.0.2&lt;/version&gt;
12197
&lt;/dependency&gt;
122-
</code></pre>
123-
124-
<p>Further versions can be found <a href="http://mvnrepository.com/artifact/javax.money/money-api/" target="_blank">here</a>.</p>
125-
<p>
126-
The release artifacts should be accessible from the following repositories:
127-
<ul>
128-
<li>Maven Central</li>
129-
<li>JCenter by Bintray</li>
130-
</ul>
131-
</p>
132-
133-
<p>Though it is possible to compile your programs completely with the API, in most cases, you will also have to
134-
add an implementation, e.g. the <a href="ri.html">Moneta</a> reference implementation.</p>
135-
136-
<h3>
137-
<a name="overview" class="anchor"
138-
href="#overview"><span
139-
class="octicon octicon-link"></span></a>Overview
140-
</h3>
141-
142-
<p>
143-
The API basically consists of four packages:
144-
<ul>
145-
<li><code>javax.money</code> contains the main artifacts of the API, e.g. the interfaces for <code>MonetaryAmount</code>, <code>CurrencyUnit</code>, <code>MonetaryOperator</code>, <code>MonetaryQuery</code>, and the
146-
accessor singletons for amounts, currencies and roundings.</li>
147-
<li><code>javax.money.convert</code> contains currency conversion logic.</li>
148-
<li><code>javax.money.format</code> contains the formatting logic, which has some similarities with <code>java.text</code> but relies
149-
more on immutable artifacts and builders.</li>
150-
<li><code>javax.money.spi</code> contains the service provider interfaces and the bootstrap logic, which allows to configure the API
151-
also within EE contexts (e.g. running it within a CDI container).</li>
152-
</ul>
153-
154-
The Java 9 "Jigsaw" module is <code>java.money</code>.
155-
</p>
156-
157-
<h3>
158-
<a name="documentation" class="anchor" href="#documentation"><span
159-
class="octicon octicon-link"></span></a>Documentation
160-
</h3>
161-
162-
<p>
163-
Since it a Java Specification Request check out out JSR's specification from the <a href="https://jcp.org/en/jsr/detail?id=354">JSR 354 Detail Page</a>.
164-
</p>
165-
</section>
166-
</p>
98+
</code></pre>
99+
<p>Further versions can be found <a href="http://mvnrepository.com/artifact/javax.money/money-api/" target="_blank">here</a>.</p>
100+
<p> The release artifacts should be accessible from the following repositories: </p>
101+
<ul>
102+
<li>Maven Central</li>
103+
<li>JCenter by Bintray</li>
104+
</ul>
105+
<p></p>
106+
<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>
107+
<h3> <a name="overview" class="anchor" href="#overview"><span class="octicon octicon-link"></span></a>Overview </h3>
108+
<p> The API basically consists of four packages: </p>
109+
<ul>
110+
<li><code>javax.money</code> contains the main artifacts of the API, e.g. the interfaces for <code>MonetaryAmount</code>, <code>CurrencyUnit</code>, <code>MonetaryOperator</code>, <code>MonetaryQuery</code>, and the accessor singletons for amounts, currencies and roundings.</li>
111+
<li><code>javax.money.convert</code> contains currency conversion logic.</li>
112+
<li><code>javax.money.format</code> contains the formatting logic, which has some similarities with <code>java.text</code> but relies more on immutable artifacts and builders.</li>
113+
<li><code>javax.money.spi</code> contains the service provider interfaces and the bootstrap logic, which allows to configure the API also within EE contexts (e.g. running it within a CDI container).</li>
114+
</ul> The Java 9 "Jigsaw" module is
115+
<code>java.money</code>.
116+
<p></p>
117+
<h3> <a name="documentation" class="anchor" href="#documentation"><span class="octicon octicon-link"></span></a>Documentation </h3>
118+
<p> Since it a Java Specification Request check out out JSR's specification from the <a href="https://jcp.org/en/jsr/detail?id=354">JSR 354 Detail Page</a>. </p>
119+
</section></p>
167120

168121
<hr>
169122

@@ -178,7 +131,7 @@ <h3>
178131
Join the Gitter chat <a href="https://gitter.im/orgs/JavaMoney/rooms" target="_blank"><img src="https://badges.gitter.im/Join%20Chat.svg"/></a>.
179132
Or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>
180133
</p>
181-
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a></p>
134+
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.6.1</a></p>
182135
</div>
183136
</div>
184137

archive.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@
6262
<li><a href="https://github.com/JavaMoney/javamoney-examples" target="_blank">Examples</a></li>
6363
<li><a href="shelter.html">Shelter</a></li>
6464
<li><a href="http://jadira.sourceforge.net/usertype.extended/" target="_blank">Jadira Usertype Extended (Hibernate support)</a></li>
65+
<li><a href="https://github.com/zalando/jackson-datatype-money" target="_blank">Jackson Datatype Money by Zalando</a></li>
6566
<li class="divider"></li>
6667
<li class="nav-header">Additional Information</li>
6768
<li><a href="https://jcp.org/en/jsr/detail?id=354" target="_blank">JSR 354 Detail Page</a></li>
68-
<!--
69-
<li><a href="https://javamoney.java.net" target="_blank">JSR 354 Project on Java.net</a></li>
70-
<li><a href="blog.html">Blog (Events &amp; History)</a></li></li>
71-
-->
7269
</ul>
7370
</li>
7471
</ul>
@@ -82,9 +79,14 @@ <h1>Blog Archive</h1>
8279
</div>
8380

8481
<!--<ul>-->
85-
<h4>April 2018</h4>
82+
<h4>June 2018</h4>
8683
<ul>
8784

85+
<li>05 - <a href="blog/2018/xs2a.html">PSD2 XS2A</a></li>
86+
</ul>
87+
<h4>April 2018</h4>
88+
<ul>
89+
8890
<li>13 - <a href="blog/2018/moneta12.html">Moneta Release 1.2</a></li>
8991

9092
<li>10 - <a href="blog/2018/api102.html">API Release 1.0.2</a></li>
@@ -153,7 +155,7 @@ <h4>May 2013</h4>
153155
Join the Gitter chat <a href="https://gitter.im/orgs/JavaMoney/rooms" target="_blank"><img src="https://badges.gitter.im/Join%20Chat.svg"/></a>.
154156
Or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>
155157
</p>
156-
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a></p>
158+
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.6.1</a></p>
157159
</div>
158160
</div>
159161

blog/2013/edr.html

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@
6262
<li><a href="https://github.com/JavaMoney/javamoney-examples" target="_blank">Examples</a></li>
6363
<li><a href="shelter.html">Shelter</a></li>
6464
<li><a href="http://jadira.sourceforge.net/usertype.extended/" target="_blank">Jadira Usertype Extended (Hibernate support)</a></li>
65+
<li><a href="https://github.com/zalando/jackson-datatype-money" target="_blank">Jackson Datatype Money by Zalando</a></li>
6566
<li class="divider"></li>
6667
<li class="nav-header">Additional Information</li>
6768
<li><a href="https://jcp.org/en/jsr/detail?id=354" target="_blank">JSR 354 Detail Page</a></li>
68-
<!--
69-
<li><a href="https://javamoney.java.net" target="_blank">JSR 354 Project on Java.net</a></li>
70-
<li><a href="blog.html">Blog (Events &amp; History)</a></li></li>
71-
-->
7269
</ul>
7370
</li>
7471
</ul>
@@ -83,27 +80,14 @@ <h1>Early Draft</h1>
8380

8481
<p><em>01 May 2013</em></p>
8582

86-
<p>
87-
88-
<header>
89-
<h1>Early Draft Review</h1>
90-
</header>
91-
92-
<section id="downloads" class="clearfix"></section>
93-
94-
95-
<section id="main_content">
96-
<h3>Early Draft</h3>
97-
98-
<p>
99-
The JSR 354 <b>Early Draft</b> started on JCP.org. Check out the <a
100-
href="http://jcp.org/aboutJava/communityprocess/edr/jsr354/index.html">EDR
101-
Download Page</a>
102-
</p>
103-
</section>
104-
105-
106-
</p>
83+
<p><header>
84+
<h1>Early Draft Review</h1>
85+
</header>
86+
<section id="downloads" class="clearfix"></section>
87+
<section id="main_content">
88+
<h3>Early Draft</h3>
89+
<p> The JSR 354 <b>Early Draft</b> started on JCP.org. Check out the <a href="http://jcp.org/aboutJava/communityprocess/edr/jsr354/index.html">EDR Download Page</a> </p>
90+
</section></p>
10791

10892
<hr>
10993

@@ -118,7 +102,7 @@ <h3>Early Draft</h3>
118102
Join the Gitter chat <a href="https://gitter.im/orgs/JavaMoney/rooms" target="_blank"><img src="https://badges.gitter.im/Join%20Chat.svg"/></a>.
119103
Or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>
120104
</p>
121-
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a></p>
105+
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.6.1</a></p>
122106
</div>
123107
</div>
124108

blog/2013/first-post-draft.html

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@
6262
<li><a href="https://github.com/JavaMoney/javamoney-examples" target="_blank">Examples</a></li>
6363
<li><a href="shelter.html">Shelter</a></li>
6464
<li><a href="http://jadira.sourceforge.net/usertype.extended/" target="_blank">Jadira Usertype Extended (Hibernate support)</a></li>
65+
<li><a href="https://github.com/zalando/jackson-datatype-money" target="_blank">Jackson Datatype Money by Zalando</a></li>
6566
<li class="divider"></li>
6667
<li class="nav-header">Additional Information</li>
6768
<li><a href="https://jcp.org/en/jsr/detail?id=354" target="_blank">JSR 354 Detail Page</a></li>
68-
<!--
69-
<li><a href="https://javamoney.java.net" target="_blank">JSR 354 Project on Java.net</a></li>
70-
<li><a href="blog.html">Blog (Events &amp; History)</a></li></li>
71-
-->
7269
</ul>
7370
</li>
7471
</ul>
@@ -83,20 +80,12 @@ <h1>First Post</h1>
8380

8481
<p><em>24 July 2013</em></p>
8582

86-
<p>
87-
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel diam purus. Curabitur ut nisi lacus.</p>
88-
89-
<ul>
90-
<li><a href="http://example.org">http://example.org</a></li>
91-
<li><a href="http://example.org">Example.org</a></li>
92-
</ul>
93-
94-
<p>Nam id nisl quam. Donec a lorem sit amet libero pretium vulputate vel ut purus. Suspendisse leo arcu,
95-
mattis et imperdiet luctus, pulvinar vitae mi. Quisque fermentum sollicitudin feugiat. Mauris nec leo
96-
ligula. Vestibulum tristique odio ut risus ultricies a hendrerit quam iaculis. Duis tempor elit sit amet
97-
ligula vehicula et iaculis sem placerat. Fusce dictum, metus at volutpat lacinia, elit massa auctor risus,
98-
id auctor arcu enim eu augue. Donec ultrices turpis in mi imperdiet ac venenatis sapien sodales.</p>
99-
83+
<p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel diam purus. Curabitur ut nisi lacus.</p>
84+
<ul>
85+
<li><a href="http://example.org">http://example.org</a></li>
86+
<li><a href="http://example.org">Example.org</a></li>
87+
</ul>
88+
<p>Nam id nisl quam. Donec a lorem sit amet libero pretium vulputate vel ut purus. Suspendisse leo arcu, mattis et imperdiet luctus, pulvinar vitae mi. Quisque fermentum sollicitudin feugiat. Mauris nec leo ligula. Vestibulum tristique odio ut risus ultricies a hendrerit quam iaculis. Duis tempor elit sit amet ligula vehicula et iaculis sem placerat. Fusce dictum, metus at volutpat lacinia, elit massa auctor risus, id auctor arcu enim eu augue. Donec ultrices turpis in mi imperdiet ac venenatis sapien sodales.</p>
10089
<pre class="prettyprint">
10190
<code>
10291
package org.jbake;
@@ -107,11 +96,8 @@ <h1>First Post</h1>
10796
}
10897
}
10998
</code>
110-
</pre>
111-
112-
<p>In consequat imperdiet nunc quis bibendum. Nulla semper, erat quis ornare tristique, lectus massa posuere
113-
libero, ut vehicula lectus nunc ut lorem. Aliquam erat volutpat.</p>
114-
</p>
99+
</pre>
100+
<p>In consequat imperdiet nunc quis bibendum. Nulla semper, erat quis ornare tristique, lectus massa posuere libero, ut vehicula lectus nunc ut lorem. Aliquam erat volutpat.</p></p>
115101

116102
<hr>
117103

@@ -126,7 +112,7 @@ <h1>First Post</h1>
126112
Join the Gitter chat <a href="https://gitter.im/orgs/JavaMoney/rooms" target="_blank"><img src="https://badges.gitter.im/Join%20Chat.svg"/></a>.
127113
Or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>
128114
</p>
129-
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a></p>
115+
<p class="muted credit">&copy; 2018 JavaMoney | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.6.1</a></p>
130116
</div>
131117
</div>
132118

0 commit comments

Comments
 (0)