You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2019/12/19 11:16:17 UTC

[isis] branch master updated: ISIS-2158: provides explicit jdo files for DN enhancer

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 3251c38  ISIS-2158: provides explicit jdo files for DN enhancer
3251c38 is described below

commit 3251c38aaf0addfa7f1239b7847aff7b17a48325
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Dec 19 12:16:08 2019 +0100

    ISIS-2158: provides explicit jdo files for DN enhancer
---
 examples/demo/src/main/java/demoapp/dom/package.jdo        | 12 ++++++++++++
 .../main/java/org/apache/isis/testdomain/jdo/package.jdo   | 14 ++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/examples/demo/src/main/java/demoapp/dom/package.jdo b/examples/demo/src/main/java/demoapp/dom/package.jdo
new file mode 100644
index 0000000..95a0c4a
--- /dev/null
+++ b/examples/demo/src/main/java/demoapp/dom/package.jdo
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<jdo xmlns="http://xmlns.jcp.org/xml/ns/jdo/jdo"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/jdo/jdo http://xmlns.jcp.org/xml/ns/jdo/jdo_3_1.xsd"
+	version="3.1">
+
+	<package name="demoapp.dom.events">
+		<class name="EventLogEntry" />
+	</package>
+
+</jdo>
+
diff --git a/examples/smoketests/src/main/java/org/apache/isis/testdomain/jdo/package.jdo b/examples/smoketests/src/main/java/org/apache/isis/testdomain/jdo/package.jdo
new file mode 100644
index 0000000..4beb492
--- /dev/null
+++ b/examples/smoketests/src/main/java/org/apache/isis/testdomain/jdo/package.jdo
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<jdo xmlns="http://xmlns.jcp.org/xml/ns/jdo/jdo"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/jdo/jdo http://xmlns.jcp.org/xml/ns/jdo/jdo_3_1.xsd"
+	version="3.1">
+
+	<package name="org.apache.isis.testdomain.jdo">
+		<class name="Product" />
+		<class name="Book" />
+		<class name="Inventory" />
+	</package>
+
+</jdo>
+