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 2012/12/04 22:47:18 UTC

[2/2] git commit: ISIS-188: quickstart_wicket example

ISIS-188: quickstart_wicket example

* added profile entry for DataNucleus workaround


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

Branch: refs/heads/master
Commit: 1affc3f9481b95db80d464ee77ae36e7c0f4a494
Parents: 0013a64
Author: Dan Haywood <da...@apache.org>
Authored: Mon Dec 3 19:47:17 2012 +0000
Committer: Dan Haywood <da...@apache.org>
Committed: Tue Dec 4 21:44:10 2012 +0000

----------------------------------------------------------------------
 examples/quickstart_wicket_restful_jdo/dom/pom.xml |   20 +++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/1affc3f9/examples/quickstart_wicket_restful_jdo/dom/pom.xml
----------------------------------------------------------------------
diff --git a/examples/quickstart_wicket_restful_jdo/dom/pom.xml b/examples/quickstart_wicket_restful_jdo/dom/pom.xml
index 2b81660..056b233 100644
--- a/examples/quickstart_wicket_restful_jdo/dom/pom.xml
+++ b/examples/quickstart_wicket_restful_jdo/dom/pom.xml
@@ -142,5 +142,25 @@
         </dependency>
 
 	</dependencies>
+
+
+   	<profiles>
+ 	    <profile>
+            <id>not-m2e</id>
+            <activation>
+                <property>
+                    <name>!m2e.version</name>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+		            <groupId>org.datanucleus</groupId>
+		            <artifactId>datanucleus-core</artifactId>
+		            <!-- keep up-to-date with latest release from mvn repo -->
+		            <version>3.1.3</version>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
     
 </project>