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/08 15:56:00 UTC

[2/53] git commit: ISIS-188: making structure of component viewers consistent

ISIS-188: making structure of component viewers consistent


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

Branch: refs/heads/master
Commit: f1b95ff8b9ba2ff7c3e9441187ed6e3cbcfa8d79
Parents: eb61370
Author: Dan Haywood <da...@apache.org>
Authored: Sat Dec 8 08:26:49 2012 +0000
Committer: Dan Haywood <da...@apache.org>
Committed: Sat Dec 8 14:43:29 2012 +0000

----------------------------------------------------------------------
 component/viewer/dnd/pom.xml   |  125 +++++++++++++++++++++++++++++++++++
 component/viewer/html/pom.xml  |  125 +++++++++++++++++++++++++++++++++++
 component/viewer/junit/pom.xml |  121 +++++++++++++++++++++++++++++++++
 3 files changed, 371 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/f1b95ff8/component/viewer/dnd/pom.xml
----------------------------------------------------------------------
diff --git a/component/viewer/dnd/pom.xml b/component/viewer/dnd/pom.xml
new file mode 100644
index 0000000..e7e8b5e
--- /dev/null
+++ b/component/viewer/dnd/pom.xml
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+         http://www.apache.org/licenses/LICENSE-2.0
+         
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.isis</groupId>
+		<artifactId>isis-parent</artifactId>
+		<version>0.3.1-SNAPSHOT</version>
+		<relativePath>../../../isis-parent/pom.xml</relativePath>
+	</parent>
+
+	<groupId>org.apache.isis.viewer</groupId>
+	<artifactId>isis-dnd-viewer</artifactId>
+
+	<name>Isis Drag-n-Drop Viewer</name>
+	<packaging>pom</packaging>
+
+	<properties>
+        <siteBaseDir>.</siteBaseDir>
+		<relativeUrl/>
+
+		<docbkxGuideTitle>Apache Isis DnD Viewer</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Configuration, Customization and Deployment Guide</docbkxGuideSubTitle>
+		<docbkxGuideName>isis-dnd-viewer</docbkxGuideName>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+	<build>
+		<plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+                <inherited>false</inherited>
+            </plugin>
+		</plugins>
+	</build>
+
+	<dependencyManagement>
+	    <dependencies>
+			<!-- this monitoring -->
+            <dependency>
+                <groupId>org.apache.isis.viewer</groupId>
+                <artifactId>isis-dnd-viewer-impl</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.viewer</groupId>
+                <artifactId>isis-dnd-viewer-tck</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+            </dependency>
+
+			<!-- isis core -->
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-unittestsupport</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-runtime</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-integtestsupport</artifactId>
+	                <version>0.3.1-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+    
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-runtime</artifactId>
+	            <version>0.3.1-SNAPSHOT</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+    
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-inmemory-objectstore</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+                <type>test-jar</type>
+                <scope>test</scope>
+            </dependency>
+    
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-cglib-bytecode</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+    
+	    </dependencies>
+	</dependencyManagement>
+
+	<modules>
+		<module>impl</module>
+		<module>tck</module>
+	</modules>
+
+</project>

http://git-wip-us.apache.org/repos/asf/isis/blob/f1b95ff8/component/viewer/html/pom.xml
----------------------------------------------------------------------
diff --git a/component/viewer/html/pom.xml b/component/viewer/html/pom.xml
new file mode 100644
index 0000000..a40bdca
--- /dev/null
+++ b/component/viewer/html/pom.xml
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+         http://www.apache.org/licenses/LICENSE-2.0
+         
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.isis</groupId>
+		<artifactId>isis-parent</artifactId>
+		<version>0.3.1-SNAPSHOT</version>
+		<relativePath>../../../isis-parent/pom.xml</relativePath>
+	</parent>
+
+	<groupId>org.apache.isis.viewer</groupId>
+	<artifactId>isis-html-viewer</artifactId>
+
+	<name>Isis Html Viewer</name>
+	<packaging>pom</packaging>
+
+	<properties>
+        <siteBaseDir>.</siteBaseDir>
+		<relativeUrl/>
+
+		<docbkxGuideTitle>Apache Isis HTML Viewer</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Configuration, Customization and Deployment Guide</docbkxGuideSubTitle>
+		<docbkxGuideName>isis-html-viewer</docbkxGuideName>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+	<build>
+		<plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+				<inherited>false</inherited>
+            </plugin>
+		</plugins>
+	</build>
+
+	<dependencyManagement>
+	    <dependencies>
+			<!-- for this module -->
+		    <dependency>
+			    <groupId>org.apache.isis.viewer</groupId>
+			    <artifactId>isis-html-viewer-impl</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+		    </dependency>
+
+		    <dependency>
+			    <groupId>org.apache.isis.viewer</groupId>
+			    <artifactId>isis-html-viewer-monitoring</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+		    </dependency>
+
+			<!-- isis core -->
+		    <dependency>
+			    <groupId>org.apache.isis.core</groupId>
+			    <artifactId>isis-metamodel</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+			    <type>test-jar</type>
+                <scope>test</scope>
+		    </dependency>
+    
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-unittestsupport</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+    
+		    <dependency>
+			    <groupId>org.apache.isis.core</groupId>
+			    <artifactId>isis-runtime</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+			    <type>test-jar</type>
+                <scope>test</scope>
+		    </dependency>
+    
+            <dependency>
+                <groupId>org.apache.isis.core</groupId>
+                <artifactId>isis-integtestsupport</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+    
+		    <dependency>
+			    <groupId>org.apache.isis.core</groupId>
+			    <artifactId>isis-runtime</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+		    </dependency>
+
+		    <dependency>
+			    <groupId>org.apache.isis.viewer</groupId>
+			    <artifactId>isis-html-viewer-monitoring</artifactId>
+                <version>0.3.1-SNAPSHOT</version>
+		    </dependency>
+    
+	   </dependencies>
+	</dependencyManagement>
+
+	<modules>
+		<module>impl</module>
+		<module>monitoring</module>
+		<module>tck</module>
+	</modules>
+
+</project>

http://git-wip-us.apache.org/repos/asf/isis/blob/f1b95ff8/component/viewer/junit/pom.xml
----------------------------------------------------------------------
diff --git a/component/viewer/junit/pom.xml b/component/viewer/junit/pom.xml
new file mode 100644
index 0000000..51a0346
--- /dev/null
+++ b/component/viewer/junit/pom.xml
@@ -0,0 +1,121 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+         http://www.apache.org/licenses/LICENSE-2.0
+         
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+		<groupId>org.apache.isis</groupId>
+		<artifactId>isis-parent</artifactId>
+        <version>0.3.1-SNAPSHOT</version>
+		<relativePath>../../../isis-parent/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.isis.viewer</groupId>
+    <artifactId>isis-junit-viewer</artifactId>
+
+    <name>Isis JUnit Viewer</name>
+    <packaging>pom</packaging>
+
+    <properties>
+        <siteBaseDir>.</siteBaseDir>
+        <relativeUrl/>
+
+        <wrapper-progmodel.version>0.3.1-SNAPSHOT</wrapper-progmodel.version>
+
+        <docbkxGuideTitle>Apache Isis JUnit Support</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Acceptance Testing using JUnit</docbkxGuideSubTitle>
+        <docbkxGuideName>isis-junit-support</docbkxGuideName>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+                <inherited>false</inherited>
+            </plugin>
+        </plugins>
+    </build>
+
+	<dependencyManagement>
+    	<dependencies>
+        	<dependency>
+            	<groupId>org.apache.isis.progmodel</groupId>
+            	<artifactId>isis-wrapper-progmodel-metamodel</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+	
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-cglib-bytecode</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+	
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-inmemory-objectstore</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-inmemory-profilestore</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+	
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-noop-security</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+	
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-metamodel</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+        	</dependency>
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-metamodel</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+            	<type>test-jar</type>
+            	<scope>test</scope>
+        	</dependency>
+	
+        	<dependency>
+            	<groupId>org.apache.isis.core</groupId>
+            	<artifactId>isis-runtime</artifactId>
+            	<version>0.3.1-SNAPSHOT</version>
+            	<type>test-jar</type>
+            	<scope>test</scope>
+        	</dependency>
+	
+	
+    	</dependencies>
+	</dependencyManagement>
+
+	<modules>
+		<module>impl</module>
+		<module>tck</module>
+	</modules>
+	
+</project>