You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/05/01 14:14:46 UTC

svn commit: r534028 - in /myfaces/tobago/trunk: ./ example/addressbook/ example/blank/ example/demo/ example/facelets/ example/foreach/ example/nonfacesrequest/ example/sandbox/ example/security/ example/test/

Author: bommel
Date: Tue May  1 05:14:45 2007
New Revision: 534028

URL: http://svn.apache.org/viewvc?view=rev&rev=534028
Log:
improved javadoc
tomcat-maven-plugin 1.0-alpha-1 has been released
spring and openjpa version configurable in addressbook demo

Modified:
    myfaces/tobago/trunk/example/addressbook/pom.xml
    myfaces/tobago/trunk/example/blank/pom.xml
    myfaces/tobago/trunk/example/demo/pom.xml
    myfaces/tobago/trunk/example/facelets/pom.xml
    myfaces/tobago/trunk/example/foreach/pom.xml
    myfaces/tobago/trunk/example/nonfacesrequest/pom.xml
    myfaces/tobago/trunk/example/sandbox/pom.xml
    myfaces/tobago/trunk/example/security/pom.xml
    myfaces/tobago/trunk/example/test/pom.xml
    myfaces/tobago/trunk/pom.xml

Modified: myfaces/tobago/trunk/example/addressbook/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/addressbook/pom.xml (original)
+++ myfaces/tobago/trunk/example/addressbook/pom.xml Tue May  1 05:14:45 2007
@@ -14,7 +14,6 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
@@ -113,7 +112,7 @@
     <dependency>
       <groupId>org.apache.openjpa</groupId>
       <artifactId>openjpa-persistence</artifactId>
-      <version>0.9.6-incubating</version>
+      <version>${openjpa.version}</version>
       <exclusions>
         <exclusion>
           <groupId>hsqldb</groupId>
@@ -128,7 +127,7 @@
     <dependency>
       <groupId>org.apache.openjpa</groupId>
       <artifactId>openjpa-persistence-jdbc</artifactId>
-      <version>0.9.6-incubating</version>
+      <version>${openjpa.version}</version>
       <exclusions>
         <exclusion>
           <groupId>hsqldb</groupId>
@@ -143,7 +142,7 @@
     <dependency>
       <groupId>org.apache.openjpa</groupId>
       <artifactId>openjpa-xmlstore</artifactId>
-      <version>0.9.6-incubating</version>
+      <version>${openjpa.version}</version>
       <exclusions>
         <exclusion>
           <groupId>ant</groupId>
@@ -208,22 +207,17 @@
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-jpa</artifactId>
-      <version>2.0.3</version>
+      <version>${spring.version}</version>
     </dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-aop</artifactId>
-      <version>2.0.3</version>
-    </dependency>
-    <dependency>
-      <groupId>javax.persistence</groupId>
-      <artifactId>persistence-api</artifactId>
-      <version>1.0</version>
+      <version>${spring.version}</version>
     </dependency>
     <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-web</artifactId>
-      <version>2.0.3</version>
+      <version>${spring.version}</version>
     </dependency>
     <dependency>
       <groupId>javax.servlet</groupId>
@@ -305,4 +299,8 @@
       </dependencies>
     </profile>
   </profiles>
+  <properties>
+    <openjpa.version>0.9.6-incubating</openjpa.version>
+    <spring.version>2.0.4</spring.version>
+  </properties>
 </project>

Modified: myfaces/tobago/trunk/example/blank/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/blank/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/blank/pom.xml (original)
+++ myfaces/tobago/trunk/example/blank/pom.xml Tue May  1 05:14:45 2007
@@ -27,18 +27,17 @@
   <name>Example Blank</name>
   <build>
     <finalName>tobago-example-blank</finalName>
-    <!--<plugins>
-     <plugin>
+    <plugins>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
           <url>http://localhost:8080/manager</url>
         </configuration>
       </plugin>
-    </plugins>-->
+    </plugins>
   </build>
 
   <scm>

Modified: myfaces/tobago/trunk/example/demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/demo/pom.xml (original)
+++ myfaces/tobago/trunk/example/demo/pom.xml Tue May  1 05:14:45 2007
@@ -38,7 +38,6 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>

Modified: myfaces/tobago/trunk/example/facelets/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/facelets/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/facelets/pom.xml (original)
+++ myfaces/tobago/trunk/example/facelets/pom.xml Tue May  1 05:14:45 2007
@@ -29,18 +29,17 @@
   <name>Example Facelets</name>
   <build>
     <finalName>tobago-example-facelets</finalName>
-    <!--<plugins>
+    <plugins>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
           <url>http://localhost:8080/manager</url>
         </configuration>
       </plugin>
-    </plugins>-->
+    </plugins>
   </build>
 
   <scm>

Modified: myfaces/tobago/trunk/example/foreach/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/foreach/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/foreach/pom.xml (original)
+++ myfaces/tobago/trunk/example/foreach/pom.xml Tue May  1 05:14:45 2007
@@ -30,16 +30,15 @@
   <build>
     <finalName>tobago-example-foreach</finalName>
     <plugins>
-      <!--<plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
           <url>http://localhost:8080/manager</url>
         </configuration>
-      </plugin>-->
+      </plugin>
     </plugins>
   </build>
 

Modified: myfaces/tobago/trunk/example/nonfacesrequest/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/nonfacesrequest/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/nonfacesrequest/pom.xml (original)
+++ myfaces/tobago/trunk/example/nonfacesrequest/pom.xml Tue May  1 05:14:45 2007
@@ -28,16 +28,15 @@
   <build>
     <finalName>tobago-example-nonfacesrequest</finalName>
     <plugins>
-      <!--<plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
           <url>http://localhost:8080/manager</url>
         </configuration>
-      </plugin>-->
+      </plugin>
     </plugins>
   </build>
 

Modified: myfaces/tobago/trunk/example/sandbox/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/sandbox/pom.xml (original)
+++ myfaces/tobago/trunk/example/sandbox/pom.xml Tue May  1 05:14:45 2007
@@ -31,7 +31,6 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>

Modified: myfaces/tobago/trunk/example/security/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/security/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/security/pom.xml (original)
+++ myfaces/tobago/trunk/example/security/pom.xml Tue May  1 05:14:45 2007
@@ -33,7 +33,6 @@
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>

Modified: myfaces/tobago/trunk/example/test/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/example/test/pom.xml (original)
+++ myfaces/tobago/trunk/example/test/pom.xml Tue May  1 05:14:45 2007
@@ -28,16 +28,15 @@
   <build>
     <finalName>tobago-example-test</finalName>
     <plugins>
-     <!-- <plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>tomcat-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
         <configuration>
           <server>tomcat</server>
           <update>true</update>
           <url>http://localhost:8080/manager</url>
         </configuration>
-      </plugin>-->
+      </plugin>
     </plugins>
   </build>
 

Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?view=diff&rev=534028&r1=534027&r2=534028
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Tue May  1 05:14:45 2007
@@ -234,6 +234,11 @@
         <version>2.2</version>
         <configuration>
           <aggregate>true</aggregate>
+          <linksource>true</linksource>
+          <breakiterator>true</breakiterator>
+          <quiet>true</quiet>
+          <verbose>false</verbose>
+          <source>1.5</source>
           <links>
             <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
             <link>http://java.sun.com/j2ee/1.4/docs/api</link>
@@ -603,6 +608,11 @@
           <groupId>org.mortbay.jetty</groupId>
           <artifactId>maven-jetty-plugin</artifactId>
           <version>6.1.2rc2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>tomcat-maven-plugin</artifactId>
+          <version>1.0-alpha-1</version>
         </plugin>
         <!--<plugin>
           <groupId>org.codehaus.mojo</groupId>