You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/04/22 11:12:46 UTC

svn commit: r936669 [2/2] - in /geronimo/sandbox/shawn/owb_geronimo_example: ./ guess-tomcat/ guess-tomcat/src/ guess-tomcat/src/main/ guess-tomcat/src/main/history/ guess-tomcat/src/main/plan/ guess/ guess/src/ guess/src/main/ guess/src/main/java/ gue...

Added: geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/apt/index.apt?rev=936669&view=auto
==============================================================================
--- geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/apt/index.apt (added)
+++ geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/apt/index.apt Thu Apr 22 09:12:45 2010
@@ -0,0 +1,16 @@
+~~ 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.
+OpenWebBeans Guess Sample
+
+  This module contains a number guessing sample for the JSR-299 
+  Java Contexts and Dependency Injection framework.
+

Propchange: geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/site.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/site.xml?rev=936669&view=auto
==============================================================================
--- geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/site.xml (added)
+++ geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/site.xml Thu Apr 22 09:12:45 2010
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--
+	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 name="OpenWebBeans-Samples-Guess">
+    <publishDate format="dd MMM yyyy" />
+    <version position="left"/>
+    
+    <body>
+        <breadcrumbs>
+        <item name="Incubator" href="http://incubator.apache.org"/>
+        <item name="OpenWebBeans" href="http://incubator.apache.org/openwebbeans"/>
+        <item name="Samples" href="http://incubator.apache.org/openwebbeans/${project.version}/samples"/>
+        <item name="Samples" href="http://incubator.apache.org/openwebbeans/${project.version}/samples/guess"/>
+        </breadcrumbs>
+
+        <menu name="Overview">
+            <item name="Introduction" href="index.html" />
+        </menu>
+
+    	<menu ref="reports"/>
+    </body>
+</project>
+

Propchange: geronimo/sandbox/shawn/owb_geronimo_example/guess/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: geronimo/sandbox/shawn/owb_geronimo_example/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/shawn/owb_geronimo_example/pom.xml?rev=936669&view=auto
==============================================================================
--- geronimo/sandbox/shawn/owb_geronimo_example/pom.xml (added)
+++ geronimo/sandbox/shawn/owb_geronimo_example/pom.xml Thu Apr 22 09:12:45 2010
@@ -0,0 +1,45 @@
+<?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.
+-->
+
+<!-- $Rev: 580474 $ $Date: 2007-09-28 16:15:23 -0400 (Fri, 28 Sep 2007) $ -->
+
+<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.geronimo.plugins</groupId>
+        <artifactId>plugins</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>owb-examples</artifactId>
+    <name>Geronimo Samples :: owb guess-examples</name>
+    <packaging>pom</packaging>
+
+    <description>
+        Geronimo owb guess Examples
+    </description>
+
+    <modules>
+        <module>guess</module>
+        <module>guess-tomcat</module>
+    </modules>
+</project>

Propchange: geronimo/sandbox/shawn/owb_geronimo_example/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native