[jbossws-commits] JBossWS SVN: r7402 - spi/branches/jbossws-spi-1.0.4.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Jun 6 08:34:06 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-06-06 08:34:06 -0400 (Fri, 06 Jun 2008)
New Revision: 7402

Removed:
   spi/branches/jbossws-spi-1.0.4/ant.properties.example
   spi/branches/jbossws-spi-1.0.4/build.xml
Modified:
   spi/branches/jbossws-spi-1.0.4/.classpath
   spi/branches/jbossws-spi-1.0.4/pom.xml
   spi/branches/jbossws-spi-1.0.4/profiles-example.xml
Log:
update version

Modified: spi/branches/jbossws-spi-1.0.4/.classpath
===================================================================
--- spi/branches/jbossws-spi-1.0.4/.classpath	2008-06-06 12:20:39 UTC (rev 7401)
+++ spi/branches/jbossws-spi-1.0.4/.classpath	2008-06-06 12:34:06 UTC (rev 7402)
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
-	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
-		<attributes>
-			<attribute name="maven.type" value="test"/>
-		</attributes>
-	</classpathentry>
-	<classpathentry excluding="**" kind="src" output="src/main/etc" path="src/main/etc"/>
-	<classpathentry excluding="**" kind="src" output="src/test/resources" path="src/test/resources"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/etc"/>
+	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
-	<classpathentry kind="output" path="target/eclipse-classes"/>
+	<classpathentry kind="output" path="target/classes"/>
 </classpath>

Deleted: spi/branches/jbossws-spi-1.0.4/ant.properties.example
===================================================================
--- spi/branches/jbossws-spi-1.0.4/ant.properties.example	2008-06-06 12:20:39 UTC (rev 7401)
+++ spi/branches/jbossws-spi-1.0.4/ant.properties.example	2008-06-06 12:34:06 UTC (rev 7402)
@@ -1,7 +0,0 @@
-#
-# A sample ant properties file
-#
-# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler at jboss.com $
-
-# JBossWS local repository
-jboss.local.repository=/home/tdiesler/svn/jboss.local.repository
\ No newline at end of file

Deleted: spi/branches/jbossws-spi-1.0.4/build.xml
===================================================================
--- spi/branches/jbossws-spi-1.0.4/build.xml	2008-06-06 12:20:39 UTC (rev 7401)
+++ spi/branches/jbossws-spi-1.0.4/build.xml	2008-06-06 12:34:06 UTC (rev 7402)
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!-- ====================================================================== -->
-<!--                                                                        -->
-<!--  JBoss, the OpenSource J2EE webOS                                      -->
-<!--                                                                        -->
-<!--  Distributable under LGPL license.                                     -->
-<!--  See terms of license at http://www.gnu.org.                           -->
-<!--                                                                        -->
-<!-- ====================================================================== -->
-
-<!-- $Id$ -->
-
-<project name="JBossWS-SPI" default="main" basedir=".">
-
-   <!-- ================================================================== -->
-   <!-- Setup                                                              -->
-   <!-- ================================================================== -->
-
-   <property name="spi.dir" value="${basedir}"/>
-   <property name="spi.etc.dir" value="${spi.dir}/src/main/etc"/>
-   <property name="spi.target.dir" value="${spi.dir}/target"/>
-
-   <!-- ================================================================== -->
-   <!-- Initialization                                                     -->
-   <!-- ================================================================== -->
-
-    <target name="init">
-      
-      <!-- Check if ant.properties is available -->
-      <available property="ant.properties.available" file="${basedir}/ant.properties"/>
-      <fail message="Cannot find ant.properties. Did you copy/edit ant.properties.example?" unless="ant.properties.available"/>
-      
-      <property file="${spi.dir}/ant.properties"/>
-      
-      <xmlproperty file="${spi.dir}/pom.xml"/>
-      <property name="version.id" value="${project.version}"/>      
-      <property name="repository.id" value="${project.version}"/>      
-      
-      <echo message="version.id=${version.id}"/>
-      <echo message="repository.id=${repository.id}"/>
-    </target>
-
-   <!-- ================================================================== -->
-   <!-- Installation                                                       -->
-   <!-- ================================================================== -->
-  
-  <!-- Install to jboss.local.repository -->
-  <target name="install" depends="init" description="Install to jboss.local.repository">
-
-    <!-- Check if the target jar is available -->
-    <available property="jbossws.spi.jar.available" file="${spi.target.dir}/jbossws-spi-${version.id}.jar"/>
-    <fail message="Cannot find jbossws-spi-${version.id}.jar. Did you run 'mvn package'?" unless="jbossws.spi.jar.available"/>
-    
-    <!-- Check if the source jar is available -->
-    <available property="jbossws.spi.sources.jar.available" file="${spi.target.dir}/jbossws-spi-${version.id}-sources.jar"/>
-    <fail message="Cannot find jbossws-spi-${version.id}-sources.jar. Did you run 'mvn source:jar'?" unless="jbossws.spi.sources.jar.available"/>
-    
-    <!-- jboss/jbossws-spi -->
-    <property name="jboss.repository.dir" value="${jboss.local.repository}/jboss"/>
-    <mkdir dir="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib"/>
-    <copy file="${spi.target.dir}/jbossws-spi-${version.id}.jar" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib/jbossws-spi.jar" overwrite="true"/>
-    <copy file="${spi.target.dir}/jbossws-spi-${version.id}-sources.jar" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/lib/jbossws-spi-src.jar" overwrite="true"/>
-    <copy file="${spi.target.dir}/etc/component-info.xml" tofile="${jboss.repository.dir}/jbossws-spi/${repository.id}/component-info.xml" overwrite="true"/>
-   </target>
-  
-  <!-- ================================================================== -->
-  <!-- Miscellaneous                                                      -->
-  <!-- ================================================================== -->
-
-  <target name="clean" depends="init" description="Cleans up most generated files.">
-    <delete dir="${spi.target.dir}"/>
-  </target>
-
-   <target name="main" description="Executes the default target (install)." depends="install"/>
-
-</project>

Modified: spi/branches/jbossws-spi-1.0.4/pom.xml
===================================================================
--- spi/branches/jbossws-spi-1.0.4/pom.xml	2008-06-06 12:20:39 UTC (rev 7401)
+++ spi/branches/jbossws-spi-1.0.4/pom.xml	2008-06-06 12:34:06 UTC (rev 7402)
@@ -13,7 +13,7 @@
   <parent>
     <groupId>org.jboss.ws</groupId>
     <artifactId>jbossws-parent</artifactId>
-    <version>1.0.0.GA</version>
+    <version>1.0.1.GA</version>
   </parent>
   
   <!-- Source Control Management -->

Modified: spi/branches/jbossws-spi-1.0.4/profiles-example.xml
===================================================================
--- spi/branches/jbossws-spi-1.0.4/profiles-example.xml	2008-06-06 12:20:39 UTC (rev 7401)
+++ spi/branches/jbossws-spi-1.0.4/profiles-example.xml	2008-06-06 12:34:06 UTC (rev 7402)
@@ -12,7 +12,7 @@
       </activation>
       <properties>
         <!-- The location of the legacy jboss repository -->
-        <jboss.local.repository>/home/tdiesler/svn/jboss.local.repository</jboss.local.repository>
+        <jboss.local.repository>/home/tdiesler/svn/repository.jboss.org</jboss.local.repository>
       </properties>
     </profile>
   </profiles>




More information about the jbossws-commits mailing list