[seam-commits] Seam SVN: r12154 - in modules/remoting/trunk: core and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Mar 10 06:50:31 EST 2010


Author: shane.bryzak at jboss.com
Date: 2010-03-10 06:50:30 -0500 (Wed, 10 Mar 2010)
New Revision: 12154

Modified:
   modules/remoting/trunk/assembly.xml
   modules/remoting/trunk/core/pom.xml
   modules/remoting/trunk/distribution.txt
   modules/remoting/trunk/readme.txt
Log:
minor change to distribution


Modified: modules/remoting/trunk/assembly.xml
===================================================================
--- modules/remoting/trunk/assembly.xml	2010-03-09 23:01:19 UTC (rev 12153)
+++ modules/remoting/trunk/assembly.xml	2010-03-10 11:50:30 UTC (rev 12154)
@@ -9,7 +9,7 @@
    
    <fileSets>
       <fileSet>
-         <directory>core/target/apidocs</directory>
+         <directory>core/target/site/apidocs</directory>
          <outputDirectory>seam-remoting/doc/apidocs</outputDirectory>
          <includes>
             <include>**</include>
@@ -39,7 +39,7 @@
 
       <fileSet>
          <directory>core/src/main/java</directory>
-         <outputDirectory>seam-remoting/src</outputDirectory>
+         <outputDirectory>seam-remoting/source</outputDirectory>
          <includes>
             <include>**</include>
          </includes>

Modified: modules/remoting/trunk/core/pom.xml
===================================================================
--- modules/remoting/trunk/core/pom.xml	2010-03-09 23:01:19 UTC (rev 12153)
+++ modules/remoting/trunk/core/pom.xml	2010-03-10 11:50:30 UTC (rev 12154)
@@ -83,15 +83,6 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-javadoc-plugin</artifactId>
             <version>2.6.1</version>
-            <executions>
-               <execution>
-                  <id>javadoc-jar</id>
-                  <phase>package</phase>
-                  <goals>
-                     <goal>jar</goal>
-                  </goals>
-               </execution>
-            </executions>
          </plugin>
       </plugins>
    </build>

Modified: modules/remoting/trunk/distribution.txt
===================================================================
--- modules/remoting/trunk/distribution.txt	2010-03-09 23:01:19 UTC (rev 12153)
+++ modules/remoting/trunk/distribution.txt	2010-03-10 11:50:30 UTC (rev 12154)
@@ -1,4 +1,4 @@
 To create the Seam Remoting distribution, run the following Maven command:
 
-mvn clean package assembly:assembly
+mvn clean package javadoc:javadoc assembly:assembly
 

Modified: modules/remoting/trunk/readme.txt
===================================================================
--- modules/remoting/trunk/readme.txt	2010-03-09 23:01:19 UTC (rev 12153)
+++ modules/remoting/trunk/readme.txt	2010-03-10 11:50:30 UTC (rev 12154)
@@ -47,3 +47,24 @@
 * Experimental JMS support (that was present in Seam 2.x) has been removed - this feature will be
   provided at a later date by a unified AJAX event bus.
 * Support for batch requests has been removed
+
+* If using Maven, some artifacts may only be available in the JBoss Repository. To allow Seam Remoting to correctly function, add the JBoss Repository to Maven. Edit your ~/.m2/settings.xml, and add the following entry:
+
+      <profile>
+         <id>jboss.repository</id>
+         <activation>
+            <activeByDefault>true</activeByDefault>
+         </activation>
+         <repositories>
+            <repository>
+               <id>repository.jboss.org</id>
+               <url>http://repository.jboss.org/maven2</url>
+               <releases>
+                  <enabled>true</enabled>
+               </releases>
+               <snapshots>
+                  <enabled>false</enabled>
+               </snapshots>
+            </repository>
+         </repositories>
+      </profile>



More information about the seam-commits mailing list