Modified:
/wiki/clickspring.wiki
=======================================
--- /wiki/clickspring.wiki Thu May 27 16:32:06 2010
+++ /wiki/clickspring.wiki Sun May 30 16:45:47 2010
@@ -1,5 +1,42 @@
#summary Integration of Apache Click with Spring dependency injection.
-#labels spring,click,clickspring,click-spring,springclick,spring-click
+#labels
spring,click,clickspring,click-spring,springclick,spring-click,click-spring-quickstart,click-spring-maven,clickspringmaven,clickspringmavenquickstart
+
+= Setup =
+*Non-maven Users:*
+ Download
[http://code.google.com/p/doubleclick/downloads/detail?name=inject-1.0.jar
inject] and
[http://code.google.com/p/doubleclick/downloads/detail?name=injectspring-1.0.jar
injectspring] and add to your project's class path.
+
+*Maven Users:*
+ Add double repository to your project's pom file -
+ {{{
+ <repositories>
+ <repository>
+ <id>powermock-repo</id>
+ <url>https://doubleclick.googlecode.com/svn/repo/</url>
+ </repository>
+ </repositories>
+ }}}
+ And add *inject* and *inject-spring* dependencies into your project's pom
file -
+ {{{
+ <dependency>
+ <groupId>org.apache.click.doubleclick</groupId>
+ <artifactId>inject</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.click.doubleclick</groupId>
+ <artifactId>injectspring</artifactId>
+ <version>1.0</version>
+ </dependency>
+ }}}
+
+*Quick Start*
+ If you a [http://maven.apache.org/ maven] user, and starting your project
from scratch, then you can use the *doubleclick*'s quick start archetype to
create your project. Creating the project using the quick start archetype
gives you a with all configuration in place, and ready to run. If you have
maven installed, then just use the command to create your quick start
project -
+
+ {{{
+ mvn archetype:generate
-DarchetypeRepository=https://quickstarts.googlecode.com/svn/trunk/click-spring
-DarchetypeGroupId=org.apache.click.doubleclick.samples
-DarchetypeArtifactId=click-spring-archetype -DarchetypeVersion=1.0
+ }}}
+ And then use *_mvn jetty:run_* to run the quick start aplication.
+
= Introduction =