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 2006/01/14 16:14:07 UTC

svn commit: r369030 - in /myfaces/site/trunk: pom.xml src/site/site.xml

Author: bommel
Date: Sat Jan 14 07:14:03 2006
New Revision: 369030

URL: http://svn.apache.org/viewcvs?rev=369030&view=rev
Log:
added javadoc for assembly generate javadoc artifact with profile generate-assembly mvn -Pgenerate-assembly
added separate xsl for generate separate tld for the tlddoc
added tlddoc to site enable with profile generate-site mvn -Pgenerate-site
fixed missing java.lang in type of some attributes.xml in sandbox

Modified:
    myfaces/site/trunk/pom.xml
    myfaces/site/trunk/src/site/site.xml

Modified: myfaces/site/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/site/trunk/pom.xml?rev=369030&r1=369029&r2=369030&view=diff
==============================================================================
--- myfaces/site/trunk/pom.xml (original)
+++ myfaces/site/trunk/pom.xml Sat Jan 14 07:14:03 2006
@@ -1,44 +1,67 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces</groupId>
-  <artifactId>myfaces-build</artifactId>
+  <artifactId>myfaces-site</artifactId>
   <packaging>pom</packaging>
-  <version>1.1.2-SNAPSHOT</version>
   <name>MyFaces</name>
   <url>http://myfaces.apache.org</url>
+
   <parent>
     <groupId>org.apache.myfaces</groupId>
     <artifactId>myfaces</artifactId>
     <version>1.1.2-SNAPSHOT</version>
   </parent>
 
-	<build>
-	    <defaultGoal>site</defaultGoal>
-	</build>
+  <build>
+    <defaultGoal>site</defaultGoal>
+  </build>
 
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/current</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/current</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/</url>
+  </scm>
   <reporting>
-    <excludeDefaults>true</excludeDefaults>
+
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-              <reports>
-                 <report>project-team</report>
-                 <report>mailing-list</report>
-                 <report>cim</report>
-                 <report>issue-tracking</report>
-                 <report>license</report>
-                 <report>scm</report>
-              </reports>
-          </reportSet>
-        </reportSets>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>changes-maven-plugin</artifactId>
       </plugin>
+
     </plugins>
+
   </reporting>
+
+  <distributionManagement>
+    <!--  NOTE: We're using scpexe protocol instead of scp because
+jsch has an issue (already
+reported) that makes it fail. Once it works switch back to scp protocol.
+Maybe solved with the maven 2.0.2 release -->
+
+    <repository>
+      <id>apache-maven</id>
+      <name>Apache Maven Repository</name>
+      <url>scpexe://people.apache.org/www/www.apache.org/dist/maven-repository</url>
+    </repository>
+    <snapshotRepository>
+      <uniqueVersion>false</uniqueVersion>
+      <id>apache-maven-snapshots</id>
+      <name>Apache Maven Snapshot Repository</name>
+      <url>scpexe://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>apache.site</id>
+      <name>Apache Website</name>
+      <!-- NOTE: We're using bommel's public html dir for testing -->
+      <url>scpexe://people.apache.org/home/bommel/public_html</url>
+      <!--url>scpexe://people.apache.org/www/myfaces.apache.org</url-->
+    </site>
+  </distributionManagement>
+
 
 </project>
 

Modified: myfaces/site/trunk/src/site/site.xml
URL: http://svn.apache.org/viewcvs/myfaces/site/trunk/src/site/site.xml?rev=369030&r1=369029&r2=369030&view=diff
==============================================================================
--- myfaces/site/trunk/src/site/site.xml (original)
+++ myfaces/site/trunk/src/site/site.xml Sat Jan 14 07:14:03 2006
@@ -34,7 +34,7 @@
       <item name="Compatibility" href="compatibility.html"/>  
       <item name="Tomcat Configuration" href="tomcat.html"/>  
     </menu>    
-    
+
     ${reports}
     
   </body>