(no commit message)
authorErik Brakkee <erik@brakkee.org>
Fri, 16 Jul 2010 10:20:57 +0000 (10:20 +0000)
committerErik Brakkee <erik@brakkee.org>
Fri, 16 Jul 2010 10:20:57 +0000 (10:20 +0000)
wicket/inject/src/site/site.xml [new file with mode: 0644]
wicket/inject/src/site/xdoc/index.xml [new file with mode: 0644]

diff --git a/wicket/inject/src/site/site.xml b/wicket/inject/src/site/site.xml
new file mode 100644 (file)
index 0000000..f2a9774
--- /dev/null
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project xmlns="http://maven.apache.org/DECORATION/1.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"
+ name="utilities library: wicket/inject">
+  <skin>
+    <groupId>org.wamblee</groupId>
+    <artifactId>wamblee-skin</artifactId>
+  </skin>
+  <body>
+    <links>
+      <item name="utilities library" href="http://utils.wamblee.org/"/>
+      <item name="wicket/inject" href="http://utils.wamblee.org/wicket/inject/index.html"/>
+    </links>
+
+    <menu name="wicket/inject">
+      <item name="user guide" href="index.html"/>
+      <item name="full javadoc" href="apidocs/index.html"/>
+    </menu>
+  </body>
+</project>
diff --git a/wicket/inject/src/site/xdoc/index.xml b/wicket/inject/src/site/xdoc/index.xml
new file mode 100644 (file)
index 0000000..0a750ba
--- /dev/null
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
+  
+  <properties>
+    <title>user guide</title>
+    <author email="erik@brakkee.org">Erik Brakkee</author>
+  </properties>
+  <body>
+    <section name="Overview">
+      <p>The CDI (Contexts and Dependency Injection, JSR-299) support library contains support for
+        injecting contextual references into any object. This is useful for integration of CDI in
+        application managed objects or for integration in third-party frameworks. Injection based on
+        for instance @EJB, @Resource, and @PersistenceContext becomes a one liner. 
+      </p>
+      <p>
+        This is a key component for integrating Java EE dependency injection into several (web) 
+        frameworks since it allows Java EE dependency injection into regular objects.
+      </p>
+      <p>Package overview:</p>
+      <ul>
+        <li><a href="apidocs/org/wamblee/wicket/inject/package-summary.html">wicket/inject</a></li>
+      </ul>
+      <div class="infoMessage"><strong>Note</strong>:
+        You need a Java EE 6 environment to use CDI. 
+      </div>
+
+    </section>
+
+    <section name="Maven POM configuration">
+      <table>
+        <tr>
+          <th>groupId</th>
+          <th>artifactId</th>
+        </tr>
+        <tr>
+          <td>org.wamblee</td>
+          <td>wamblee-wicket-inject</td>
+        </tr>
+      </table>
+    </section>
+
+  </body>
+</document>