Author: thomas.diesler(a)jboss.com
Date: 2007-08-22 07:05:43 -0400 (Wed, 22 Aug 2007)
New Revision: 4460
Removed:
container/jboss50/trunk/.classpath
container/jboss50/trunk/.project
container/jboss50/trunk/ant-import/
container/jboss50/trunk/ant.properties.example
container/jboss50/trunk/build.xml
container/jboss50/trunk/src/
container/jboss50/trunk/version.properties
Log:
Make jbossws container integration an integral part of the AS build
Deleted: container/jboss50/trunk/.classpath
===================================================================
--- container/jboss50/trunk/.classpath 2007-08-22 09:12:20 UTC (rev 4459)
+++ container/jboss50/trunk/.classpath 2007-08-22 11:05:43 UTC (rev 4460)
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="src" path="src/main/java"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/jboss-5.0.x"/>
- <classpathentry combineaccessrules="false" kind="src"
path="/spi"/>
- <classpathentry combineaccessrules="false" kind="src"
path="/common"/>
- <classpathentry kind="lib" path="thirdparty/jaxrpc-api.jar"/>
- <classpathentry kind="lib" path="thirdparty/jaxws-api.jar"/>
- <classpathentry kind="lib"
path="thirdparty/jbossws-common.jar"/>
- <classpathentry kind="lib"
path="thirdparty/jbossws-spi.jar"/>
- <classpathentry kind="lib" path="thirdparty/jsr181-api.jar"/>
- <classpathentry kind="lib" path="thirdparty/saaj-api.jar"/>
- <classpathentry kind="lib" path="thirdparty/dom4j.jar"/>
- <classpathentry kind="output" path="output/eclipse"/>
-</classpath>
Deleted: container/jboss50/trunk/.project
===================================================================
--- container/jboss50/trunk/.project 2007-08-22 09:12:20 UTC (rev 4459)
+++ container/jboss50/trunk/.project 2007-08-22 11:05:43 UTC (rev 4460)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>container-jboss50</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
Deleted: container/jboss50/trunk/ant.properties.example
===================================================================
--- container/jboss50/trunk/ant.properties.example 2007-08-22 09:12:20 UTC (rev 4459)
+++ container/jboss50/trunk/ant.properties.example 2007-08-22 11:05:43 UTC (rev 4460)
@@ -1,26 +0,0 @@
-#
-# A sample ant properties file
-#
-# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler(a)jboss.com $
-
-# JBoss Home
-#jboss50.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta3
-
-# The JBoss settings
-jboss.server.instance=default
-
-# JBoss Repository
-#jboss.repository=file:/home/tdiesler/svn/jboss.local.repository
-jboss.repository=http://repository.jboss.org
-
-# JBossWS Release
-jboss.local.repository=/home/tdiesler/svn/jboss.local.repository
-
-# Force thirdparty HTTP get
-#force.thirdparty.get=true
-
-# Java Compiler options
-javac.debug=yes
-javac.deprecation=no
-javac.fail.onerror=yes
-javac.verbose=no
Deleted: container/jboss50/trunk/build.xml
===================================================================
--- container/jboss50/trunk/build.xml 2007-08-22 09:12:20 UTC (rev 4459)
+++ container/jboss50/trunk/build.xml 2007-08-22 11:05:43 UTC (rev 4460)
@@ -1,161 +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 default="main" basedir="."
name="JBossWS-JBoss50">
-
- <import file="${basedir}/ant-import/build-setup.xml"/>
- <import file="${basedir}/ant-import/build-release.xml"/>
- <import file="${basedir}/ant-import/build-thirdparty.xml"/>
-
- <!-- ================================================================== -->
- <!-- Setup -->
- <!-- ================================================================== -->
-
- <property name="jbws50.src.dir"
value="${jbws50.dir}/src/main"/>
- <property name="jbws50.etc.dir"
value="${jbws50.src.dir}/etc"/>
- <property name="jbws50.java.dir"
value="${jbws50.src.dir}/java"/>
- <property name="jbws50.resources.dir"
value="${jbws50.src.dir}/resources"/>
- <property name="jbws50.output.dir"
value="${jbws50.dir}/output"/>
- <property name="jbws50.output.apidocs.dir"
value="${jbws50.output.dir}/apidocs"/>
- <property name="jbws50.output.classes.dir"
value="${jbws50.output.dir}/classes"/>
- <property name="jbws50.output.etc.dir"
value="${jbws50.output.dir}/etc"/>
- <property name="jbws50.output.lib.dir"
value="${jbws50.output.dir}/lib"/>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
- <target name="init" depends="prepare,thirdparty-get">
- <fail message="Not available: ${jboss50.available.file}"
unless="jboss50.available"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Compile -->
- <!-- ================================================================== -->
-
- <!--
- | Compile everything.
- |
- | This target should depend on other compile-* targets for each
- | different type of compile that needs to be performed, short of
- | documentation compiles.
- -->
-
- <target name="compile"
depends="init,compile-classes,compile-etc" description="Compile all source
files."/>
-
- <!-- Compile java sources -->
- <target name="compile-classes" depends="init">
- <mkdir dir="${jbws50.output.classes.dir}"/>
- <javac srcdir="${jbws50.java.dir}" sourcepath=""
destdir="${jbws50.output.classes.dir}" encoding="utf-8"
debug="${javac.debug}" verbose="${javac.verbose}"
- deprecation="${javac.deprecation}"
failonerror="${javac.fail.onerror}">
- <include name="org/jboss/wsf/container/jboss50/**"/>
- <classpath refid="jbws50.integration.classpath"/>
- </javac>
- </target>
-
- <!-- Compile etc files (manifests and such) -->
- <target name="compile-etc" depends="init">
- <mkdir dir="${jbws50.output.etc.dir}"/>
- <copy todir="${jbws50.output.etc.dir}" filtering="yes"
overwrite="true">
- <fileset dir="${jbws50.etc.dir}">
- <include name="default.mf"/>
- </fileset>
- <filterset>
- <filter token="java.vm.version"
value="${java.vm.version}"/>
- <filter token="java.vm.vendor"
value="${java.vm.vendor}"/>
- <filter token="build.id" value="${build.id}"/>
- <filter token="implementation.version"
value="jbossws-${version.id}"/>
- <filtersfile file="${jbws50.dir}/version.properties"/>
- </filterset>
- </copy>
- </target>
-
- <!-- ================================================================== -->
- <!-- Archives -->
- <!-- ================================================================== -->
-
- <!--
- | Build all jar files.
- -->
- <target name="jars" depends="compile,module-jars"
description="Builds all jar files.">
- </target>
-
- <!--
- | Build all jar files.
- -->
- <target name="module-jars" depends="init">
-
- <!-- Build jbossws-jboss50.jar -->
- <mkdir dir="${jbws50.output.lib.dir}"/>
- <jar jarfile="${jbws50.output.lib.dir}/jbossws-jboss50.jar"
manifest="${jbws50.output.etc.dir}/default.mf">
- <fileset dir="${jbws50.output.classes.dir}">
- <include name="org/jboss/wsf/container/jboss50/**"/>
- </fileset>
- <metainf
dir="${jbws50.resources.dir}/jbossws-jboss50.jar/META-INF"/>
- </jar>
-
- <!-- Build jbossws-native50.deployer -->
- <zip
zipfile="${jbws50.output.lib.dir}/jbossws-jboss50-deployer.zip">
- <fileset dir="${jbws50.output.lib.dir}">
- <include name="jbossws-jboss50.jar"/>
- </fileset>
- <fileset dir="${thirdparty.dir}">
- <include name="jbossws-common.jar"/>
- <include name="jbossws-framework.jar"/>
- </fileset>
- <fileset dir="${jbws50.resources.dir}/jbossws-jboss50.deployer">
- <include name="META-INF/jbossws-deployer-beans.xml"/>
- </fileset>
- </zip>
-
- <!-- Build jbossws50-src.zip -->
- <zip zipfile="${jbws50.output.lib.dir}/jbossws-jboss50-src.zip" >
- <fileset dir="${jbws50.java.dir}"/>
- </zip>
-
- </target>
-
- <!-- Generate the JavaDoc -->
- <target name="javadoc" depends="init"
description="Generate the Javadoc">
-
- <mkdir dir="${jbws50.output.apidocs.dir}"/>
- <javadoc destdir="${jbws50.output.apidocs.dir}"
author="true" version="true" use="true"
windowtitle="JBossWS API">
- <classpath refid="jbws50.integration.classpath"/>
- <packageset dir="${jbws50.java.dir}"
defaultexcludes="yes">
- <include name="org/jboss/wsf/**"/>
- </packageset>
- <doctitle><![CDATA[<h1>JBoss Web Service Framework - Container
integration AS 5.0</h1>]]></doctitle>
- <tag name="todo" scope="all" description="To
do:"/>
- </javadoc>
- </target>
-
- <!-- ================================================================== -->
- <!-- Miscellaneous -->
- <!-- ================================================================== -->
-
- <target name="clean" depends="prepare" description="Cleans
up most generated files.">
- <delete dir="${jbws50.output.dir}"/>
- </target>
-
- <target name="clobber" depends="clean" description="Cleans
up all generated files.">
- <delete dir="${jbws50.dir}/thirdparty"/>
- </target>
-
- <target name="main" description="Executes the default target
(most)." depends="most"/>
-
- <target name="most" description="Builds almost everything."
depends="jars"/>
-
- <target name="all" description="Create a distribution zip file"
depends="most">
- </target>
-
-</project>
Deleted: container/jboss50/trunk/version.properties
===================================================================
--- container/jboss50/trunk/version.properties 2007-08-22 09:12:20 UTC (rev 4459)
+++ container/jboss50/trunk/version.properties 2007-08-22 11:05:43 UTC (rev 4460)
@@ -1,23 +0,0 @@
-
-# $Id: version.properties 3956 2007-07-19 18:03:54Z thomas.diesler(a)jboss.com $
-
-specification.title=JBossWS
-specification.vendor=JBoss (
http://www.jboss.org)
-specification.version=jbossws-2.0
-
-version.id=2.0.1.GA
-repository.id=2.0.1.GA
-
-implementation.title=JBoss Web Services - Integration JBoss50
-implementation.url=http://www.jboss.org/products/jbossws
-implementation.vendor=JBoss Inc.
-implementation.vendor.id=http://www.jboss.org
-
-# Thirdparty library versions
-jbossws-common=1.0.0.GA
-jbossws-spi=1.0.0.GA
-jbossws-framework=2.0.1.GA
-
-dom4j=1.6.1
-sun-jaxrpc=1.1
-sun-jaxws=2.1.1