You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2015/11/03 21:24:41 UTC

[3/3] isis git commit: ISIS-1195: updating migration notes.

ISIS-1195: updating migration notes.


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/271ae4ba
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/271ae4ba
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/271ae4ba

Branch: refs/heads/master
Commit: 271ae4ba50825cc024e15dfdc3e9c182fcaeb2e1
Parents: 6d42562
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Nov 3 20:18:23 2015 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Nov 3 20:18:23 2015 +0000

----------------------------------------------------------------------
 .../_migration-notes_1.9.0-to-1.10.0.adoc       | 29 +++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/271ae4ba/adocs/documentation/src/main/asciidoc/_migration-notes_1.9.0-to-1.10.0.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/_migration-notes_1.9.0-to-1.10.0.adoc b/adocs/documentation/src/main/asciidoc/_migration-notes_1.9.0-to-1.10.0.adoc
index d3d0815..033d484 100644
--- a/adocs/documentation/src/main/asciidoc/_migration-notes_1.9.0-to-1.10.0.adoc
+++ b/adocs/documentation/src/main/asciidoc/_migration-notes_1.9.0-to-1.10.0.adoc
@@ -5,11 +5,38 @@
 :_imagesdir: images/
 
 
-Existing projects written against v1.9.0 should run against v1.10.0 with few if any changes.  If you *do* encounter
+Existing projects written against v1.9.0 should run against v1.10.0 with only a few minor changes.  If you *do* encounter
 any difficulties then let us know via the link:support.html[users mailing list], so we can support you and document
 issues here.
 
 
+== Remove references to `isis-viewer-wicket` parent pom.
+
+In earlier releases the Wicket viewer defined its own parent `pom.xml` for dependency management and its dependencies
+and to declare the various submodules that make up the viewer.  This `pom.xml` has now been incorporated into the
+parent `pom.xml` for the Core framework.
+
+Therefore, in the parent `pom.xml` of your own domain applications, remove:
+
+[source,xml]
+----
+<dependencyManagement>
+    <dependencies>
+        ...
+        <dependency>
+            <groupId>org.apache.isis.viewer</groupId>
+            <artifactId>isis-viewer-wicket</artifactId>
+            <version>${isis.version}</version>
+            <type>pom</type>
+            <scope>import</scope>
+        </dependency>
+        ...
+    </dependencies>
+</dependencyManagement>
+----
+
+
+
 
 == `allowLateRegistration`