[jbossws-commits] JBossWS SVN: r7342 - in stack/cxf/trunk: modules/management and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Jun 4 09:37:21 EDT 2008


Author: richard.opalka at jboss.com
Date: 2008-06-04 09:37:21 -0400 (Wed, 04 Jun 2008)
New Revision: 7342

Modified:
   stack/cxf/trunk/modules/management/pom.xml
   stack/cxf/trunk/modules/management/src/main/webapp/index.html
   stack/cxf/trunk/pom.xml
Log:
implement filtering for web console

Modified: stack/cxf/trunk/modules/management/pom.xml
===================================================================
--- stack/cxf/trunk/modules/management/pom.xml	2008-06-04 13:22:11 UTC (rev 7341)
+++ stack/cxf/trunk/modules/management/pom.xml	2008-06-04 13:37:21 UTC (rev 7342)
@@ -74,33 +74,30 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>custom-build-id</id>
-            <phase>validate</phase>
-            <goals>
-              <goal>run</goal>
-            </goals>
-            <configuration>
-              <tasks>
-                <tstamp>
-                  <format property="custom.build.id" pattern="yyyyMMddHHmm"/>
-                </tstamp>
-                <mkdir dir="${project.build.directory}"/>
-                <echo message="custom.build.id=${custom.build.id}" file="${project.build.directory}/substitution.properties"/>
-              </tasks>
-            </configuration>
-          </execution>
-        </executions>
+         <!-- PRE: scm is correctly configured in parent pom -->
+         <groupId>org.codehaus.mojo</groupId>
+         <artifactId>buildnumber-maven-plugin</artifactId>
+         <version>1.0-beta-1</version>
+         <executions>
+           <execution>
+             <phase>validate</phase>
+             <goals>
+               <goal>create</goal>
+             </goals>
+           </execution>
+         </executions>
+         <configuration>
+           <format>yyyyMMddHHmm</format>
+           <items>
+             <item>timestamp</item>
+           </items>
+           <doUpdate>false</doUpdate>
+         </configuration>
       </plugin>
       <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <configuration>
            <warSourceExcludes>WEB-INF/lib/*.jar</warSourceExcludes>
-           <filters>
-             <filter>${project.build.directory}/substitution.properties</filter>
-           </filters>
            <webResources>
              <resource>
                <directory>src/main/webapp</directory>

Modified: stack/cxf/trunk/modules/management/src/main/webapp/index.html
===================================================================
--- stack/cxf/trunk/modules/management/src/main/webapp/index.html	2008-06-04 13:22:11 UTC (rev 7341)
+++ stack/cxf/trunk/modules/management/src/main/webapp/index.html	2008-06-04 13:37:21 UTC (rev 7342)
@@ -19,7 +19,7 @@
     <legend><b>Runtime information</b></legend>
 <ul>
    <li><b>Revision: jbossws- at version@-cxf</b></li>
-   <li><b>Build: @custom.build.id@</b></li>
+   <li><b>Build: @timestamp@</b></li>
    <li><a href="services">View a list of deployed services</a></li>
 	<!--li><a href="depends">View installed dependencies</a></li-->
 	<li><a href="/jmx-console/">Access JMX console</a></li>

Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml	2008-06-04 13:22:11 UTC (rev 7341)
+++ stack/cxf/trunk/pom.xml	2008-06-04 13:37:21 UTC (rev 7342)
@@ -473,4 +473,11 @@
     </profile>
   </profiles>
   
+  <!-- Source Control Management -->
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/trunk</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/trunk</developerConnection>
+    <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/trunk</url>
+  </scm>
+  
 </project>




More information about the jbossws-commits mailing list