Hi,
I just grabbed the latest sources from git and tried to build it offline.
The build would not succeed, failing with some version mismatches in
the poms.
I had to update a few references to 1.0.0 to 1.0.1-SNAPSHOT before
this could be done.
Is it really a case that the latest source tree is not necessarily self-
consistent? I guess so, given that core (for example) could have
evolved to 1.0.1 but other modules have not adapted...
In any case:
My git diff:
diff --git a/example/application/quickstart_wicket_restful_jdo/pom.xml
b/example/application/quickstart_wicket_restful_jdo/pom.xml
index f1fff7d..5efe7bb 100644
--- a/example/application/quickstart_wicket_restful_jdo/pom.xml
+++ b/example/application/quickstart_wicket_restful_jdo/pom.xml
@@ -31,9 +31,9 @@
<properties>
<isis.version>1.0.0</isis.version>
-
<isis-objectstore-jdo.version>1.0.0</isis-objectstore-jdo.version>
- <isis-viewer-wicket.version>1.0.0</isis-viewer-wicket.version>
-
<isis-viewer-restfulobjects.version>1.0.0</isis-viewer-restfulobjects.version>
+
<isis-objectstore-jdo.version>1.0.1-SNAPSHOT</isis-objectstore-jdo.version>
+
<isis-viewer-wicket.version>1.0.1-SNAPSHOT</isis-viewer-wicket.version>
+
<isis-viewer-restfulobjects.version>1.0.1-SNAPSHOT</isis-viewer-restfulobjects.version>
<isis-security-shiro.version>1.0.0-SNAPSHOT</isis-security-shiro.version>
</properties>
diff --git a/example/archetype/quickstart_wicket_restful_jdo/pom.xml
b/example/archetype/quickstart_wicket_restful_jdo/pom.xml
index c38ca7c..7793e20 100644
--- a/example/archetype/quickstart_wicket_restful_jdo/pom.xml
+++ b/example/archetype/quickstart_wicket_restful_jdo/pom.xml
@@ -44,6 +44,6 @@
<parent>
<groupId>org.apache.isis.core</groupId>
<artifactId>isis</artifactId>
- <version>1.0.0</version>
+ <version>1.0.1-SNAPSHOT</version>
</parent>
</project>