diff --git a/demos/gyokuro/demo/ceylonhtml/module.ceylon b/demos/gyokuro/demo/ceylonhtml/module.ceylon
index 4d54f34..5f96d6d 100644
--- a/demos/gyokuro/demo/ceylonhtml/module.ceylon
+++ b/demos/gyokuro/demo/ceylonhtml/module.ceylon
@@ -1,4 +1,4 @@
native("jvm")
-module gyokuro.demo.ceylonhtml "0.2-dev" {
- import com.github.bjansen.gyokuro.view.ceylonhtml "0.2-dev";
+module gyokuro.demo.ceylonhtml "0.2" {
+ import com.github.bjansen.gyokuro.view.ceylonhtml "0.2";
}
diff --git a/demos/gyokuro/demo/gson/module.ceylon b/demos/gyokuro/demo/gson/module.ceylon
index 4d3326e..b4ed1a5 100644
--- a/demos/gyokuro/demo/gson/module.ceylon
+++ b/demos/gyokuro/demo/gson/module.ceylon
@@ -1,6 +1,6 @@
native("jvm")
-module gyokuro.demo.gson "0.2-dev" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
- import com.github.bjansen.gyokuro.transform.gson "0.2-dev";
+module gyokuro.demo.gson "0.2" {
+ import com.github.bjansen.gyokuro.core "0.2";
+ import com.github.bjansen.gyokuro.transform.gson "0.2";
import ceylon.logging "1.3.1";
}
diff --git a/demos/gyokuro/demo/mustache/module.ceylon b/demos/gyokuro/demo/mustache/module.ceylon
index c1e85c9..10fc045 100644
--- a/demos/gyokuro/demo/mustache/module.ceylon
+++ b/demos/gyokuro/demo/mustache/module.ceylon
@@ -1,5 +1,5 @@
native("jvm")
-module gyokuro.demo.mustache "0.2-dev" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
- import com.github.bjansen.gyokuro.view.mustache "0.2-dev";
+module gyokuro.demo.mustache "0.2" {
+ import com.github.bjansen.gyokuro.core "0.2";
+ import com.github.bjansen.gyokuro.view.mustache "0.2";
}
diff --git a/demos/gyokuro/demo/report/module.ceylon b/demos/gyokuro/demo/report/module.ceylon
index be8c73c..023226e 100644
--- a/demos/gyokuro/demo/report/module.ceylon
+++ b/demos/gyokuro/demo/report/module.ceylon
@@ -1,5 +1,5 @@
native("jvm")
-module gyokuro.demo.report "0.2-dev" {
- import com.github.bjansen.gyokuro.report "0.2-dev";
+module gyokuro.demo.report "0.2" {
+ import com.github.bjansen.gyokuro.report "0.2";
import gyokuro.demo.rest "1.0.0";
}
diff --git a/demos/gyokuro/demo/rest/module.ceylon b/demos/gyokuro/demo/rest/module.ceylon
index deda10d..284932e 100644
--- a/demos/gyokuro/demo/rest/module.ceylon
+++ b/demos/gyokuro/demo/rest/module.ceylon
@@ -1,5 +1,5 @@
native("jvm")
module gyokuro.demo.rest "1.0.0" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
+ import com.github.bjansen.gyokuro.core "0.2";
import ceylon.logging "1.3.1";
}
diff --git a/demos/gyokuro/demo/rythm/module.ceylon b/demos/gyokuro/demo/rythm/module.ceylon
index 6a65568..efbdf5b 100644
--- a/demos/gyokuro/demo/rythm/module.ceylon
+++ b/demos/gyokuro/demo/rythm/module.ceylon
@@ -1,5 +1,5 @@
native("jvm")
-module gyokuro.demo.rythm "0.2-dev" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
- import com.github.bjansen.gyokuro.view.rythm "0.2-dev";
+module gyokuro.demo.rythm "0.2" {
+ import com.github.bjansen.gyokuro.core "0.2";
+ import com.github.bjansen.gyokuro.view.rythm "0.2";
}
diff --git a/demos/gyokuro/demo/thymeleaf/module.ceylon b/demos/gyokuro/demo/thymeleaf/module.ceylon
index 503714d..ffb0f21 100644
--- a/demos/gyokuro/demo/thymeleaf/module.ceylon
+++ b/demos/gyokuro/demo/thymeleaf/module.ceylon
@@ -1,6 +1,6 @@
native("jvm")
-module gyokuro.demo.thymeleaf "0.2-dev" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
- import com.github.bjansen.gyokuro.view.thymeleaf "0.2-dev";
+module gyokuro.demo.thymeleaf "0.2" {
+ import com.github.bjansen.gyokuro.core "0.2";
+ import com.github.bjansen.gyokuro.view.thymeleaf "0.2";
import ceylon.logging "1.3.1";
}
diff --git a/source/com/github/bjansen/gyokuro/core/module.ceylon b/source/com/github/bjansen/gyokuro/core/module.ceylon
index 5611e07..a904a1a 100644
--- a/source/com/github/bjansen/gyokuro/core/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/core/module.ceylon
@@ -2,9 +2,9 @@
and Spark, for creating web applications with very little boilerplate.
It is based on the Ceylon SDK and uses ceylon."
native("jvm")
-module com.github.bjansen.gyokuro.core "0.2-dev" {
- shared import com.github.bjansen.gyokuro.view.api "0.2-dev";
- shared import com.github.bjansen.gyokuro.transform.api "0.2-dev";
+module com.github.bjansen.gyokuro.core "0.2" {
+ shared import com.github.bjansen.gyokuro.view.api "0.2";
+ shared import com.github.bjansen.gyokuro.transform.api "0.2";
shared import ceylon.http.server "1.3.1";
shared import ceylon.json "1.3.1";
diff --git a/source/com/github/bjansen/gyokuro/report/module.ceylon b/source/com/github/bjansen/gyokuro/report/module.ceylon
index 8e3c3f9..12db71b 100644
--- a/source/com/github/bjansen/gyokuro/report/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/report/module.ceylon
@@ -1,7 +1,7 @@
native("jvm")
-module com.github.bjansen.gyokuro.report "0.2-dev" {
+module com.github.bjansen.gyokuro.report "0.2" {
shared import ceylon.file "1.3.1";
import ceylon.html "1.3.1";
- import com.github.bjansen.gyokuro.core "0.2-dev";
+ import com.github.bjansen.gyokuro.core "0.2";
}
diff --git a/source/com/github/bjansen/gyokuro/transform/api/module.ceylon b/source/com/github/bjansen/gyokuro/transform/api/module.ceylon
index 900cffa..ff3765f 100644
--- a/source/com/github/bjansen/gyokuro/transform/api/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/transform/api/module.ceylon
@@ -1,4 +1,4 @@
native("jvm")
-module com.github.bjansen.gyokuro.transform.api "0.2-dev" {
+module com.github.bjansen.gyokuro.transform.api "0.2" {
import ceylon.interop.java "1.3.1";
}
diff --git a/source/com/github/bjansen/gyokuro/transform/gson/module.ceylon b/source/com/github/bjansen/gyokuro/transform/gson/module.ceylon
index 82c9eed..3f39e30 100644
--- a/source/com/github/bjansen/gyokuro/transform/gson/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/transform/gson/module.ceylon
@@ -1,6 +1,6 @@
native("jvm")
-module com.github.bjansen.gyokuro.transform.gson "0.2-dev" {
- shared import com.github.bjansen.gyokuro.transform.api "0.2-dev";
+module com.github.bjansen.gyokuro.transform.gson "0.2" {
+ shared import com.github.bjansen.gyokuro.transform.api "0.2";
shared import maven:"com.google.code.gson:gson" "2.5";
import ceylon.interop.java "1.3.1";
diff --git a/source/com/github/bjansen/gyokuro/view/api/module.ceylon b/source/com/github/bjansen/gyokuro/view/api/module.ceylon
index 7213a2e..dc76a95 100644
--- a/source/com/github/bjansen/gyokuro/view/api/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/api/module.ceylon
@@ -1,7 +1,7 @@
"An extension point for gyokuro to provide support for
a template engine."
native("jvm")
-module com.github.bjansen.gyokuro.view.api "0.2-dev" {
+module com.github.bjansen.gyokuro.view.api "0.2" {
shared import ceylon.http.server "1.3.1";
shared import ceylon.interop.java "1.3.1";
}
diff --git a/source/com/github/bjansen/gyokuro/view/ceylonhtml/module.ceylon b/source/com/github/bjansen/gyokuro/view/ceylonhtml/module.ceylon
index 0b02833..46cd1c7 100644
--- a/source/com/github/bjansen/gyokuro/view/ceylonhtml/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/ceylonhtml/module.ceylon
@@ -1,6 +1,6 @@
native("jvm")
-module com.github.bjansen.gyokuro.view.ceylonhtml "0.2-dev" {
- shared import com.github.bjansen.gyokuro.view.api "0.2-dev";
- shared import com.github.bjansen.gyokuro.core "0.2-dev";
+module com.github.bjansen.gyokuro.view.ceylonhtml "0.2" {
+ shared import com.github.bjansen.gyokuro.view.api "0.2";
+ shared import com.github.bjansen.gyokuro.core "0.2";
shared import ceylon.html "1.3.1";
}
diff --git a/source/com/github/bjansen/gyokuro/view/mustache/module.ceylon b/source/com/github/bjansen/gyokuro/view/mustache/module.ceylon
index b16312b..50987e4 100644
--- a/source/com/github/bjansen/gyokuro/view/mustache/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/mustache/module.ceylon
@@ -1,8 +1,8 @@
"An extension of gyokuro that adds support for
[Mustache.java](https://github.com/spullara/mustache.java)."
native("jvm")
-module com.github.bjansen.gyokuro.view.mustache "0.2-dev" {
- shared import com.github.bjansen.gyokuro.view.api "0.2-dev";
+module com.github.bjansen.gyokuro.view.mustache "0.2" {
+ shared import com.github.bjansen.gyokuro.view.api "0.2";
shared import maven:"com.github.spullara.mustache.java:compiler" "0.8.18";
import ceylon.interop.java "1.3.1";
diff --git a/source/com/github/bjansen/gyokuro/view/pebble/module.ceylon b/source/com/github/bjansen/gyokuro/view/pebble/module.ceylon
index 4eadad3..76d52e8 100644
--- a/source/com/github/bjansen/gyokuro/view/pebble/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/pebble/module.ceylon
@@ -1,8 +1,8 @@
"An extension of gyokuro that adds support for
[Pebble](http://www.mitchellbosecke.com/pebble)."
native("jvm")
-module com.github.bjansen.gyokuro.view.pebble "0.2-dev" {
- shared import com.github.bjansen.gyokuro.core "0.2-dev";
+module com.github.bjansen.gyokuro.view.pebble "0.2" {
+ shared import com.github.bjansen.gyokuro.core "0.2";
shared import maven:"com.mitchellbosecke:pebble" "2.2.0";
import java.base "7";
import ceylon.interop.java "1.3.1";
diff --git a/source/com/github/bjansen/gyokuro/view/rythm/module.ceylon b/source/com/github/bjansen/gyokuro/view/rythm/module.ceylon
index d52d1af..8a89dc1 100644
--- a/source/com/github/bjansen/gyokuro/view/rythm/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/rythm/module.ceylon
@@ -1,8 +1,8 @@
"An extension of gyokuro that adds support for
[Rythm](http://rythmengine.org/)."
native("jvm")
-module com.github.bjansen.gyokuro.view.rythm "0.2-dev" {
- shared import com.github.bjansen.gyokuro.view.api "0.2-dev";
+module com.github.bjansen.gyokuro.view.rythm "0.2" {
+ shared import com.github.bjansen.gyokuro.view.api "0.2";
shared import maven:"org.rythmengine:rythm-engine" "1.0.1";
import java.base "7";
diff --git a/source/com/github/bjansen/gyokuro/view/thymeleaf/module.ceylon b/source/com/github/bjansen/gyokuro/view/thymeleaf/module.ceylon
index ddebdc0..63ad469 100644
--- a/source/com/github/bjansen/gyokuro/view/thymeleaf/module.ceylon
+++ b/source/com/github/bjansen/gyokuro/view/thymeleaf/module.ceylon
@@ -1,8 +1,8 @@
"An extension of gyokuro that adds support for
[Thymeleaf](http://www.thymeleaf.org/)."
native("jvm")
-module com.github.bjansen.gyokuro.view.thymeleaf "0.2-dev" {
- shared import com.github.bjansen.gyokuro.view.api "0.2-dev";
+module com.github.bjansen.gyokuro.view.thymeleaf "0.2" {
+ shared import com.github.bjansen.gyokuro.view.api "0.2";
shared import maven:"org.thymeleaf:thymeleaf" "3.0.0.BETA01";
import java.base "7";
diff --git a/test-source/test/com/github/bjansen/gyokuro/core/module.ceylon b/test-source/test/com/github/bjansen/gyokuro/core/module.ceylon
index 1166bc4..b878553 100644
--- a/test-source/test/com/github/bjansen/gyokuro/core/module.ceylon
+++ b/test-source/test/com/github/bjansen/gyokuro/core/module.ceylon
@@ -1,6 +1,6 @@
native("jvm")
-module test.com.github.bjansen.gyokuro.core "0.2-dev" {
- import com.github.bjansen.gyokuro.core "0.2-dev";
+module test.com.github.bjansen.gyokuro.core "0.2" {
+ import com.github.bjansen.gyokuro.core "0.2";
import ceylon.test "1.3.1";
import ceylon.logging "1.3.1";
import ceylon.html "1.3.1";