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 2011/04/06 19:46:16 UTC

svn commit: r1089545 [2/10] - in /incubator/isis/trunk/support: quickstart-archetype-NEW/ quickstart-archetype-NEW/src/ quickstart-archetype-NEW/src/main/ quickstart-archetype-NEW/src/main/resources/ quickstart-archetype-NEW/src/main/resources/META-INF...

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/.settings/org.maven.ide.eclipse.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/.settings/org.maven.ide.eclipse.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#Sat Mar 19 15:51:20 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/pom.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/pom.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/pom.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>${groupId}</groupId>
+    	<artifactId>${rootArtifactId}</artifactId>
+		<version>${version}</version>
+	</parent>
+
+	<artifactId>${artifactId}</artifactId>
+	<name>Quickstart DOM</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.isis</groupId>
+			<artifactId>applib</artifactId>
+		</dependency>
+		
+		<dependency>
+			<groupId>org.apache.isis.viewer</groupId>
+			<artifactId>wicket-applib</artifactId>
+		</dependency>
+		
+        <!-- 
+		<dependency>
+			<groupId>net.sourceforge.isiscontrib.viewer.wicket</groupId>
+			<artifactId>view-calendarviews-applib</artifactId>
+		</dependency>
+		
+		<dependency>
+			<groupId>net.sourceforge.isiscontrib.viewer.wicket</groupId>
+			<artifactId>view-gmap2-applib</artifactId>
+		</dependency>
+		
+		<dependency>
+			<groupId>net.sourceforge.isiscontrib.viewer.wicket</groupId>
+			<artifactId>view-googlecharts-applib</artifactId>
+		</dependency>
+        -->        
+		
+	</dependencies>
+</project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/META-INF/MANIFEST.MF?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/META-INF/MANIFEST.MF (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/META-INF/MANIFEST.MF Wed Apr  6 17:46:06 2011
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Class-Path: 
+

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItem.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItem.java?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItem.java (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItem.java Wed Apr  6 17:46:06 2011
@@ -0,0 +1,87 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+/*
+ *  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.
+ */
+
+package dom.todo;
+
+import org.apache.isis.applib.AbstractDomainObject;
+import org.apache.isis.applib.annotation.Disabled;
+import org.apache.isis.applib.annotation.MemberOrder;
+
+public class ToDoItem extends AbstractDomainObject {
+
+    // {{ Title
+    public String title() {
+        return getDescription();
+    }
+    // }}
+
+
+    // {{ Description
+    private String description;
+
+    @MemberOrder(sequence = "1")
+    public String getDescription() {
+        return description;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+    }
+    // }}
+
+    
+    // {{ Done
+    private boolean done;
+
+    @Disabled
+    @MemberOrder(sequence = "3")
+    public boolean getDone() {
+        return done;
+    }
+
+    public void setDone(boolean done) {
+        this.done = done;
+    }
+    // }}
+
+
+    // {{ markAsDone
+    @MemberOrder(sequence = "1")
+    public void markAsDone() {
+        setDone(true);
+    }
+    public String disableMarkAsDone() {
+        return done?"Already done":null;
+    }
+    // }}
+
+    // {{ markAsNotDone
+    @MemberOrder(sequence = "2")
+    public void markAsNotDone() {
+        setDone(false);
+    }
+    public String disableMarkAsNotDone() {
+        return !done?"Not yet done":null;
+    }
+    // }}
+
+}

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItemRepository.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItemRepository.java?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItemRepository.java (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/java/dom/todo/ToDoItemRepository.java Wed Apr  6 17:46:06 2011
@@ -0,0 +1,40 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+/*
+ *  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.
+ */
+
+package dom.todo;
+
+import java.util.List;
+
+import org.apache.isis.applib.annotation.MemberOrder;
+import org.apache.isis.applib.annotation.Named;
+
+@Named("ToDos")
+public interface ToDoItemRepository {
+
+    @MemberOrder(sequence="1")
+    public List<ToDoItem> notYetDone();
+
+    @MemberOrder(sequence="2")
+    public ToDoItem newToDo(
+        @Named("Description") String description);
+
+}

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/resources/images/ToDoItem.gif
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/resources/images/ToDoItem.gif?rev=1089545&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/dom/src/main/resources/images/ToDoItem.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.classpath
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.classpath?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.classpath (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.classpath Wed Apr  6 17:46:06 2011
@@ -0,0 +1,15 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.project
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.project?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.project (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.project Wed Apr  6 17:46:06 2011
@@ -0,0 +1,39 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>${parentArtifactId}-fixture</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.common.project.facet.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
+		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
+	</natures>
+</projectDescription>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.jdt.core.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.jdt.core.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,9 @@
+#Sat Mar 19 15:51:24 GMT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.component
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.component?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.component (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.component Wed Apr  6 17:46:06 2011
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project-modules id="moduleCoreId" project-version="1.5.0">
+    <wb-module deploy-name="quickstart-fixture">
+        <wb-resource deploy-path="/" source-path="/src/main/java"/>
+    </wb-module>
+</project-modules>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.project.facet.core.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.project.facet.core.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.project.facet.core.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.eclipse.wst.common.project.facet.core.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<faceted-project>
+  <installed facet="java" version="1.6"/>
+  <installed facet="jst.utility" version="1.0"/>
+</faceted-project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.maven.ide.eclipse.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/.settings/org.maven.ide.eclipse.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#Sat Mar 19 15:51:20 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/pom.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/pom.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/pom.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>${groupId}</groupId>
+        <artifactId>${rootArtifactId}</artifactId>
+        <version>${version}</version>
+    </parent>
+
+	<artifactId>${artifactId}</artifactId>
+	<name>Quickstart Fixtures</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>${rootArtifactId}-objstore-dflt</artifactId>
+		</dependency>
+	</dependencies>
+
+</project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/META-INF/MANIFEST.MF?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/META-INF/MANIFEST.MF (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/META-INF/MANIFEST.MF Wed Apr  6 17:46:06 2011
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Class-Path: 
+

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/LogonAsSvenFixture.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/LogonAsSvenFixture.java?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/LogonAsSvenFixture.java (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/LogonAsSvenFixture.java Wed Apr  6 17:46:06 2011
@@ -0,0 +1,34 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+/*
+ *  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.
+ */
+
+
+package fixture;
+
+import org.apache.isis.applib.fixtures.LogonFixture;
+
+public class LogonAsSvenFixture extends LogonFixture {
+
+	public LogonAsSvenFixture() {
+		super("sven");
+	}
+
+}

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/todo/ToDoItemsFixture.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/todo/ToDoItemsFixture.java?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/todo/ToDoItemsFixture.java (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/fixture/src/main/java/fixture/todo/ToDoItemsFixture.java Wed Apr  6 17:46:06 2011
@@ -0,0 +1,53 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+/*
+ *  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.
+ */
+
+
+package fixture.todo;
+
+import dom.todo.ToDoItem;
+import dom.todo.ToDoItemRepository;
+
+import org.apache.isis.applib.fixtures.AbstractFixture;
+
+
+public class ToDoItemsFixture extends AbstractFixture {
+
+    @Override
+    public void install() {
+        createToDoItem("Buy milk");
+        createToDoItem("Pick up laundry");
+        createToDoItem("Buy stamps");
+        createToDoItem("Write blog post");
+        createToDoItem("Organize brown bag");
+    }
+    
+    private ToDoItem createToDoItem(String description) {
+        return toDoItemRepository.newToDo(description);
+    }
+
+    
+    private ToDoItemRepository toDoItemRepository;
+    public void setToDoItemRepository(ToDoItemRepository toDoItemRepository) {
+        this.toDoItemRepository = toDoItemRepository;
+    }
+    
+}

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.classpath
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.classpath?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.classpath (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.classpath Wed Apr  6 17:46:06 2011
@@ -0,0 +1,15 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.project
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.project?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.project (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.project Wed Apr  6 17:46:06 2011
@@ -0,0 +1,39 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>${parentArtifactId}-objstore-dflt</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.common.project.facet.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
+		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
+	</natures>
+</projectDescription>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.jdt.core.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.jdt.core.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,9 @@
+#Sat Mar 19 15:51:24 GMT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.component
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.component?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.component (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.component Wed Apr  6 17:46:06 2011
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project-modules id="moduleCoreId" project-version="1.5.0">
+    <wb-module deploy-name="quickstart-objstore-dflt">
+        <wb-resource deploy-path="/" source-path="/src/main/java"/>
+    </wb-module>
+</project-modules>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.project.facet.core.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.project.facet.core.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.project.facet.core.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.eclipse.wst.common.project.facet.core.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<faceted-project>
+  <installed facet="java" version="1.6"/>
+  <installed facet="jst.utility" version="1.0"/>
+</faceted-project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.maven.ide.eclipse.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/.settings/org.maven.ide.eclipse.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#Sat Mar 19 15:51:20 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/pom.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/pom.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/pom.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>${groupId}</groupId>
+        <artifactId>${rootArtifactId}</artifactId>
+        <version>${version}</version>
+    </parent>
+
+	<artifactId>${artifactId}</artifactId>
+	<name>Quickstart Repositories (for ObjectStore Default)</name>
+
+	<dependencies>
+	
+		<!-- other modules in this project -->
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>${rootArtifactId}-dom</artifactId>
+		</dependency>
+		
+	</dependencies>
+
+</project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/META-INF/MANIFEST.MF?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/META-INF/MANIFEST.MF (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/META-INF/MANIFEST.MF Wed Apr  6 17:46:06 2011
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Class-Path: 
+

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/objstore/dflt/todo/ToDoItemRepositoryDefault.java
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/objstore/dflt/todo/ToDoItemRepositoryDefault.java?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/objstore/dflt/todo/ToDoItemRepositoryDefault.java (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/objstore-default/src/main/java/objstore/dflt/todo/ToDoItemRepositoryDefault.java Wed Apr  6 17:46:06 2011
@@ -0,0 +1,69 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+/*
+ *  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.
+ */
+
+package objstore.dflt.todo;
+
+import java.util.List;
+
+import dom.todo.ToDoItem;
+import dom.todo.ToDoItemRepository;
+
+import org.apache.isis.applib.AbstractFactoryAndRepository;
+import org.apache.isis.applib.filter.Filter;
+
+public class ToDoItemRepositoryDefault extends AbstractFactoryAndRepository implements ToDoItemRepository {
+
+    // {{ Id, iconName
+    @Override
+    public String getId() {
+        return "toDoItems";
+    }
+
+    public String iconName() {
+        return "ToDoItem";
+    }
+    // }}
+
+    
+    @Override
+    public List<ToDoItem> notYetDone() {
+        return allMatches(ToDoItem.class, new Filter<ToDoItem>() {
+            @Override
+            public boolean accept(ToDoItem t) {
+                return !t.getDone();
+            }
+        });
+    }
+
+    
+    // {{ NewToDo
+    @Override
+    public ToDoItem newToDo(String description) {
+        ToDoItem toDoItem = newTransientInstance(ToDoItem.class);
+        toDoItem.setDescription(description);
+        persist(toDoItem);
+        return toDoItem;
+    }
+    // }}
+
+
+}

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/pom.xml?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/pom.xml (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/pom.xml Wed Apr  6 17:46:06 2011
@@ -0,0 +1,225 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <version>${version}</version>
+
+    <name>Quickstart App</name>
+
+    <packaging>pom</packaging>
+
+    <repositories>
+        <repository>
+              <id>apache.snapshots</id>
+              <name>Apache Snapshots</name>
+              <url>https://repository.apache.org/content/repositories/snapshots/</url>
+              <releases>
+                  <enabled>false</enabled>
+              </releases>
+              <snapshots>
+              </snapshots>
+          </repository>
+    </repositories>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <version>2.3.1</version>
+                    <configuration>
+                        <source>1.6</source>
+                        <target>1.6</target>
+                    </configuration>
+                    <executions>
+                        <execution>
+                            <id>source</id>
+                            <phase>compile</phase>
+                        </execution>
+                        <execution>
+                            <id>test</id>
+                            <phase>test-compile</phase>
+                        </execution>
+                    </executions>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.5</version>
+                    <configuration>
+                        <excludes>
+                            <exclude>**/Test*.java</exclude>
+                        </excludes>
+                        <useFile>true</useFile>
+                        <printSummary>false</printSummary>
+                        <outputDirectory>${project.build.directory}/surefire-reports</outputDirectory>
+                    </configuration>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-report-plugin</artifactId>
+                    <version>2.5</version>
+                    <configuration>
+                        <excludes>
+                            <exclude>**/Test*.java</exclude>
+                        </excludes>
+                        <showSuccess>false</showSuccess>
+                    </configuration>
+                    <executions>
+                        <execution>
+                            <phase>test</phase>
+                        </execution>
+                    </executions>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.mortbay.jetty</groupId>
+                    <artifactId>maven-jetty-plugin</artifactId>
+                    <version>6.1.25</version>
+                </plugin>
+
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-shade-plugin</artifactId>
+					<version>1.4</version>
+				</plugin>
+
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-antrun-plugin</artifactId>
+					<version>1.6</version>
+					<executions>
+						<execution>
+					        <goals>
+					          <goal>run</goal>
+					        </goals>
+						</execution>
+					</executions>
+				</plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencyManagement>
+        <dependencies>
+
+            <!-- Apache Isis -->
+            <dependency>
+                <groupId>org.apache.isis</groupId>
+                <artifactId>release</artifactId>
+                <version>0.1.2-incubating-SNAPSHOT</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
+            <!-- Isis Wicket Viewer -->
+            <dependency>
+                <groupId>org.apache.isis.viewer</groupId>
+                <artifactId>wicket-applib</artifactId>
+                <version>0.1.2-incubating-SNAPSHOT</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.viewer</groupId>
+                <artifactId>wicket-viewer</artifactId>
+                <version>0.1.2-incubating-SNAPSHOT</version>
+            </dependency>
+
+            <!-- this project's own modules -->
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-dom</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-domsvc</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-fixture</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-quickrun</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-objstore-dflt</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-viewer-dnd</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-viewer-html</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-viewer-scimpi</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-viewer-wicket</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-viewer-restful</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${rootArtifactId}-tests-bdd</artifactId>
+                <version>${version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>tests-junit</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.8.2</version>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+
+</project>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.classpath
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.classpath?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.classpath (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.classpath Wed Apr  6 17:46:06 2011
@@ -0,0 +1,10 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.project
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.project?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.project (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.project Wed Apr  6 17:46:06 2011
@@ -0,0 +1,26 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>${parentArtifactId}-quickrun</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.eclipse.jdt.core.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.eclipse.jdt.core.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,6 @@
+#Sat Mar 19 15:51:25 GMT 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.maven.ide.eclipse.prefs?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.maven.ide.eclipse.prefs (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/.settings/org.maven.ide.eclipse.prefs Wed Apr  6 17:46:06 2011
@@ -0,0 +1,8 @@
+#Sat Mar 19 15:51:20 GMT 2011
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-dnd.launch
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-dnd.launch?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-dnd.launch (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-dnd.launch Wed Apr  6 17:46:06 2011
@@ -0,0 +1,20 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+  <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+    <listEntry value="1"/>
+  </listAttribute>
+  <mapAttribute key="org.eclipse.debug.core.preferred_launchers">
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[debug]"/>
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[run]"/>
+  </mapAttribute>
+  <stringAttribute value="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector" key="org.eclipse.debug.core.source_locator_id"/>
+  <booleanAttribute value="true" key="org.eclipse.jdt.debug.ui.INCLUDE_EXTERNAL_JARS"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.classpathProvider" key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER"/>
+  <stringAttribute value="org.apache.isis.Isis" key="org.eclipse.jdt.launching.MAIN_TYPE"/>
+  <stringAttribute value="--type exploration --viewer dnd" key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS"/>
+  <stringAttribute value="${rootArtifactId}-quickrun" key="org.eclipse.jdt.launching.PROJECT_ATTR"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.sourcepathProvider" key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER"/>
+</launchConfiguration>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-html.launch
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-html.launch?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-html.launch (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-html.launch Wed Apr  6 17:46:06 2011
@@ -0,0 +1,20 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+  <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+    <listEntry value="1"/>
+  </listAttribute>
+  <mapAttribute key="org.eclipse.debug.core.preferred_launchers">
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[debug]"/>
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[run]"/>
+  </mapAttribute>
+  <stringAttribute value="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector" key="org.eclipse.debug.core.source_locator_id"/>
+  <booleanAttribute value="true" key="org.eclipse.jdt.debug.ui.INCLUDE_EXTERNAL_JARS"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.classpathProvider" key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER"/>
+  <stringAttribute value="org.apache.isis.Isis" key="org.eclipse.jdt.launching.MAIN_TYPE"/>
+  <stringAttribute value="--type exploration --viewer html" key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS"/>
+  <stringAttribute value="${rootArtifactId}-quickrun" key="org.eclipse.jdt.launching.PROJECT_ATTR"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.sourcepathProvider" key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER"/>
+</launchConfiguration>

Added: incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-restful.launch
URL: http://svn.apache.org/viewvc/incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-restful.launch?rev=1089545&view=auto
==============================================================================
--- incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-restful.launch (added)
+++ incubator/isis/trunk/support/quickstart-archetype-NEW/src/main/resources/archetype-resources/quickrun/ide/eclipse/launch/quickstart-quickrun-restful.launch Wed Apr  6 17:46:06 2011
@@ -0,0 +1,20 @@
+#set( $symbol_pound = '#' )
+#set( $symbol_dollar = '$' )
+#set( $symbol_escape = '\' )
+<?xml version="1.0" encoding="UTF-8"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+  <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+    <listEntry value="1"/>
+  </listAttribute>
+  <mapAttribute key="org.eclipse.debug.core.preferred_launchers">
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[debug]"/>
+    <mapEntry value="org.eclipse.jdt.launching.localJavaApplication" key="[run]"/>
+  </mapAttribute>
+  <stringAttribute value="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector" key="org.eclipse.debug.core.source_locator_id"/>
+  <booleanAttribute value="true" key="org.eclipse.jdt.debug.ui.INCLUDE_EXTERNAL_JARS"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.classpathProvider" key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER"/>
+  <stringAttribute value="org.apache.isis.Isis" key="org.eclipse.jdt.launching.MAIN_TYPE"/>
+  <stringAttribute value="--type exploration --viewer org.apache.isis.viewer.restful.viewer.embedded.RestfulViewerInstaller" key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS"/>
+  <stringAttribute value="${rootArtifactId}-quickrun" key="org.eclipse.jdt.launching.PROJECT_ATTR"/>
+  <stringAttribute value="org.maven.ide.eclipse.launchconfig.sourcepathProvider" key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER"/>
+</launchConfiguration>