Author: artdaw
Date: 2008-10-15 03:27:15 -0400 (Wed, 15 Oct 2008)
New Revision: 10754
Added:
trunk/docs/cdkguide/en/src/main/resources/examples/pom.xml
trunk/docs/cdkguide/en/src/main/resources/images/root.png
Log:
https://jira.jboss.org/jira/browse/RF-3692 - 'Developer sample creation' is done
Added: trunk/docs/cdkguide/en/src/main/resources/examples/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/resources/examples/pom.xml
(rev 0)
+++ trunk/docs/cdkguide/en/src/main/resources/examples/pom.xml 2008-10-15 07:27:15 UTC
(rev 10754)
@@ -0,0 +1,52 @@
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>sand_test</artifactId>
+ <groupId>org.mycompany</groupId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.mycompany</groupId>
+ <artifactId>inputDate-sample</artifactId>
+ <packaging>war</packaging>
+ <name>inputDate-sample Maven Webapp</name>
+ <version>1.0-SNAPSHOT</version>
+ <build>
+ <finalName>inputDate-sample</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mycompany</groupId>
+ <artifactId>inputDate</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Property changes on: trunk/docs/cdkguide/en/src/main/resources/examples/pom.xml
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/docs/cdkguide/en/src/main/resources/images/root.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/cdkguide/en/src/main/resources/images/root.png
___________________________________________________________________
Name: svn:executable
+ *
Name: svn:mime-type
+ application/octet-stream