You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2009/01/25 01:31:45 UTC

svn commit: r737459 - in /incubator/openwebbeans/trunk: ./ samples/guess/ samples/guess/src/site/ samples/guess/src/site/apt/ samples/src/ samples/src/site/ samples/src/site/apt/ src/site/ src/site/apt/extensions/ webbeans-api/ webbeans-api/src/site/ w...

Author: struberg
Date: Sun Jan 25 00:31:44 2009
New Revision: 737459

URL: http://svn.apache.org/viewvc?rev=737459&view=rev
Log:
OWB-53 fix proper submodule generation

Added:
    incubator/openwebbeans/trunk/samples/guess/src/site/
    incubator/openwebbeans/trunk/samples/guess/src/site/apt/
    incubator/openwebbeans/trunk/samples/guess/src/site/apt/index.apt
    incubator/openwebbeans/trunk/samples/guess/src/site/site.xml
    incubator/openwebbeans/trunk/samples/src/
    incubator/openwebbeans/trunk/samples/src/site/
    incubator/openwebbeans/trunk/samples/src/site/apt/
    incubator/openwebbeans/trunk/samples/src/site/apt/index.apt
    incubator/openwebbeans/trunk/samples/src/site/site.xml
    incubator/openwebbeans/trunk/src/site/apt/extensions/
    incubator/openwebbeans/trunk/src/site/apt/extensions/index.apt
    incubator/openwebbeans/trunk/webbeans-api/src/site/
    incubator/openwebbeans/trunk/webbeans-api/src/site/apt/
    incubator/openwebbeans/trunk/webbeans-api/src/site/apt/index.apt
    incubator/openwebbeans/trunk/webbeans-api/src/site/site.xml
Modified:
    incubator/openwebbeans/trunk/pom.xml
    incubator/openwebbeans/trunk/samples/guess/pom.xml
    incubator/openwebbeans/trunk/src/site/site.xml
    incubator/openwebbeans/trunk/webbeans-api/pom.xml
    incubator/openwebbeans/trunk/webbeans-impl/src/site/site.xml

Modified: incubator/openwebbeans/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/pom.xml?rev=737459&r1=737458&r2=737459&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/pom.xml (original)
+++ incubator/openwebbeans/trunk/pom.xml Sun Jan 25 00:31:44 2009
@@ -155,7 +155,12 @@
 			        </execution>
 			    </executions>
 			</plugin>
-		    </plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-site-plugin</artifactId>
+                <version>2.0-beta-7</version>
+            </plugin>
+        </plugins>
 	</pluginManagement>
 
 	<plugins>

Modified: incubator/openwebbeans/trunk/samples/guess/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/guess/pom.xml?rev=737459&r1=737458&r2=737459&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/samples/guess/pom.xml (original)
+++ incubator/openwebbeans/trunk/samples/guess/pom.xml Sun Jan 25 00:31:44 2009
@@ -11,7 +11,6 @@
 	<name>OpenWebBeans :: Guess and Login Application</name>
 	<version>1.0.0-SNAPSHOT</version>
 	<description>Simple login and guess application</description>
-	<url>http://maven.apache.org</url>
 	<build>
 		<finalName>guess</finalName>
 	</build>
@@ -24,12 +23,18 @@
 		<dependency>
 			<groupId>org.apache.myfaces.core</groupId>
 			<artifactId>myfaces-api</artifactId>
-			<scope>provided</scope>
+			<version>1.2.5</version>
+<!--			<scope>provided</scope>-->
+		</dependency>
+		<dependency>
+			<groupId>org.apache.myfaces.core</groupId>
+			<artifactId>myfaces-impl</artifactId>
+			<version>1.2.5</version>
+<!--			<scope>provided</scope>-->
 		</dependency>
 		<dependency>
 			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-servlet_2.5_spec
-			</artifactId>
+			<artifactId>geronimo-servlet_2.5_spec</artifactId>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>
@@ -40,7 +45,40 @@
 		<dependency>
 			<groupId>org.apache.openwebbeans</groupId>
 			<artifactId>openwebbeans-api</artifactId>
-			<scope>provided</scope>
+			<version>1.0.0-SNAPSHOT</version>
+<!--			<scope>provided</scope>-->
+		</dependency>
+		<dependency>
+			<groupId>org.apache.openwebbeans</groupId>
+			<artifactId>openwebbeans-impl</artifactId>
+			<version>1.0.0-SNAPSHOT</version>
 		</dependency>
 	</dependencies>
-</project>
\ No newline at end of file
+
+	<profiles>
+		<profile>
+			<id>jetty</id>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.mortbay.jetty</groupId>
+						<artifactId>maven-jetty-plugin</artifactId>
+						<configuration>
+							<scanIntervalSeconds>10</scanIntervalSeconds>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+			<pluginRepositories>
+				<!-- Repository to get the jetty plugin -->
+				<pluginRepository>
+					<id>mortbay-repo</id>
+					<name>mortbay-repo</name>
+					<url>http://www.mortbay.org/maven2/snapshot
+					</url>
+				</pluginRepository>
+			</pluginRepositories>
+		</profile>
+	</profiles>
+
+</project>

Added: incubator/openwebbeans/trunk/samples/guess/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/guess/src/site/apt/index.apt?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/samples/guess/src/site/apt/index.apt (added)
+++ incubator/openwebbeans/trunk/samples/guess/src/site/apt/index.apt Sun Jan 25 00:31:44 2009
@@ -0,0 +1,5 @@
+OpenWebBeans Guess Sample
+
+  This module contains a number guessing sample for the JSR-299 
+  Java Contexts and Dependency Injection framework.
+

Added: incubator/openwebbeans/trunk/samples/guess/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/guess/src/site/site.xml?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/samples/guess/src/site/site.xml (added)
+++ incubator/openwebbeans/trunk/samples/guess/src/site/site.xml Sun Jan 25 00:31:44 2009
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<!--
+  | Copyright 2007-2008 The Apache Software Foundation.
+  |
+  | Licensed 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>
+

Added: incubator/openwebbeans/trunk/samples/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/src/site/apt/index.apt?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/samples/src/site/apt/index.apt (added)
+++ incubator/openwebbeans/trunk/samples/src/site/apt/index.apt Sun Jan 25 00:31:44 2009
@@ -0,0 +1,5 @@
+OpenWebBeans Samples
+
+  This module contains a few samples for the JSR-299 
+  Java Contexts and Dependency Injection framework.
+

Added: incubator/openwebbeans/trunk/samples/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/samples/src/site/site.xml?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/samples/src/site/site.xml (added)
+++ incubator/openwebbeans/trunk/samples/src/site/site.xml Sun Jan 25 00:31:44 2009
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<!--
+  | Copyright 2007-2008 The Apache Software Foundation.
+  |
+  | Licensed 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">
+    <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"/>
+        </breadcrumbs>
+
+        <menu ref="modules" />
+
+    	<menu ref="reports"/>
+    </body>
+</project>
+

Added: incubator/openwebbeans/trunk/src/site/apt/extensions/index.apt
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/src/site/apt/extensions/index.apt?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/src/site/apt/extensions/index.apt (added)
+++ incubator/openwebbeans/trunk/src/site/apt/extensions/index.apt Sun Jan 25 00:31:44 2009
@@ -0,0 +1,15 @@
+Extensions over the JSR-299 Specification
+
+  This section contains a list of functionality in OpenWebBeans
+  which is not covered by the official specification.
+
+  OpenWebBeans is fully compatible with the JSR-299 standard if 
+  the default configuration is being used. Nevertheless some parts
+  of the behaviour may be changed and some functionality is 
+  additionally available.
+
+  Please note that using the mentioned functionality can cause
+  that your application may not be run on other WebBeans implementations.
+
+  OpenWebBeans may be configured that a WARNING message will be logged
+  whenever any of this additional functionality is being used.

Modified: incubator/openwebbeans/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/src/site/site.xml?rev=737459&r1=737458&r2=737459&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/src/site/site.xml (original)
+++ incubator/openwebbeans/trunk/src/site/site.xml Sun Jan 25 00:31:44 2009
@@ -19,13 +19,13 @@
 <project name="OpenWebBeans">
     <bannerLeft>
         <name>Apache OpenWebBeans</name>
-        <src>images/openwebbeans.png</src>
+        <src>http://incubator.apache.org/openwebbeans/images/openwebbeans.png</src>
         <href>http://incubator.apache.org/openwebbeans</href>
     </bannerLeft>
     
     <bannerRight>
         <name>Apache Banner</name>
-        <src>images/apache-incubator-logo.png</src>
+        <src>http://incubator.apache.org/openwebbeans/images/apache-incubator-logo.png</src>
         <href>http://incubator.apache.org/openwebbeans</href>
     </bannerRight>
     
@@ -40,10 +40,14 @@
 
         <menu name="Overview">
             <item name="Introduction" href="index.html" />
+        </menu>
+
+        <menu name="OpenWebBeans">
             <item name="JSR-299" href="jsr299.html" />
             <item name="Contributing" href="contributing.html" />
             <item name="IRC" href="irc.html" />
             <item name="FAQ" href="faq.html" />
+            <item name="Extensions" href="extensions/index.html" />
         </menu>
 
         <menu ref="modules" />

Modified: incubator/openwebbeans/trunk/webbeans-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/pom.xml?rev=737459&r1=737458&r2=737459&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/pom.xml (original)
+++ incubator/openwebbeans/trunk/webbeans-api/pom.xml Sun Jan 25 00:31:44 2009
@@ -28,5 +28,5 @@
 	<name>OpenWebBeans :: WebBeans-API</name>
 	<packaging>jar</packaging>
 	<version>1.0.0-SNAPSHOT</version>
-	<description>Web Bean API</description>
+	<description>JSR-299 Application Programming Interface</description>
 </project>
\ No newline at end of file

Added: incubator/openwebbeans/trunk/webbeans-api/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/site/apt/index.apt?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/site/apt/index.apt (added)
+++ incubator/openwebbeans/trunk/webbeans-api/src/site/apt/index.apt Sun Jan 25 00:31:44 2009
@@ -0,0 +1,5 @@
+OpenWebBeans API
+
+  Application Programming Interface for the JSR-299 
+  Java Contexts and Dependency Injection.
+

Added: incubator/openwebbeans/trunk/webbeans-api/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/site/site.xml?rev=737459&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/site/site.xml (added)
+++ incubator/openwebbeans/trunk/webbeans-api/src/site/site.xml Sun Jan 25 00:31:44 2009
@@ -0,0 +1,50 @@
+<?xml version="1.0"?>
+<!--
+  | Copyright 2007-2008 The Apache Software Foundation.
+  |
+  | Licensed 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-API">
+<!--
+    <bannerLeft>
+        <name>Apache OpenWebBeans</name>
+        <src>http://incubator.apache.org/openwebbeans/images/openwebbeans.png</src>
+        <href>http://incubator.apache.org/openwebbeans</href>
+    </bannerLeft>
+    
+    <bannerRight>
+        <name>Apache Banner</name>
+        <src>http://incubator.apache.org/openwebbeans/images/apache-incubator-logo.png</src>
+        <href>http://incubator.apache.org/openwebbeans</href>
+    </bannerRight>
+ -->
+    <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="API" href="http://incubator.apache.org/openwebbeans/${project.version}/openwebbeans-api"/>
+        </breadcrumbs>
+
+        <menu name="Overview">
+            <item name="Introduction" href="index.html" />
+        </menu>
+    
+    	<menu ref="reports"/>
+    </body>
+</project>
+

Modified: incubator/openwebbeans/trunk/webbeans-impl/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-impl/src/site/site.xml?rev=737459&r1=737458&r2=737459&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-impl/src/site/site.xml (original)
+++ incubator/openwebbeans/trunk/webbeans-impl/src/site/site.xml Sun Jan 25 00:31:44 2009
@@ -16,16 +16,16 @@
   |
 -->
 
-<project name="OpenWebBeans">
+<project name="OpenWebBeans-Impl">
     <bannerLeft>
         <name>Apache OpenWebBeans</name>
-        <src>images/openwebbeans.png</src>
+        <src>http://incubator.apache.org/openwebbeans/images/openwebbeans.png</src>
         <href>http://incubator.apache.org/openwebbeans</href>
     </bannerLeft>
     
     <bannerRight>
         <name>Apache Banner</name>
-        <src>images/apache-incubator-logo.png</src>
+        <src>http://incubator.apache.org/openwebbeans/images/apache-incubator-logo.png</src>
         <href>http://incubator.apache.org/openwebbeans</href>
     </bannerRight>
     
@@ -36,14 +36,14 @@
         <breadcrumbs>
         <item name="Incubator" href="http://incubator.apache.org"/>
         <item name="OpenWebBeans" href="http://incubator.apache.org/openwebbeans"/>
-        <item name="Impl" href="http://incubator.apache.org/openwebbeans/openwebbeans-impl"/>
+        <item name="Impl" href="http://incubator.apache.org/openwebbeans/${project.version}/openwebbeans-impl"/>
         </breadcrumbs>
 
         <menu name="Overview">
             <item name="Introduction" href="index.html" />
         </menu>
 
-	<menu ref="reports"/>
+    	<menu ref="reports"/>
     </body>
 </project>