This commit is contained in:
commit
5508ec5526
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
32
geronimo-spec-commonj-1.1-apis.build.xml
Normal file
32
geronimo-spec-commonj-1.1-apis.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-commonj-1.1-apis" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-commonj_1.1_spec-1.0.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-corba-1.0-apis.build.xml
Normal file
32
geronimo-spec-corba-1.0-apis.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-corba-1.0-apis" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-spec-corba-1.0.jar" basedir="${build}" includes="org/**"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-corba-2.3-apis.build.xml
Normal file
32
geronimo-spec-corba-2.3-apis.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-corba-2.3-apis" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-corba_2.3_spec-1.1.jar" basedir="${build}" includes="org/**"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-corba-3.0-apis.build.xml
Normal file
32
geronimo-spec-corba-3.0-apis.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-corba-3.0-apis" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-corba_3.0_spec-1.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-ejb-2.1-api.build.xml
Normal file
32
geronimo-spec-ejb-2.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-ejb-2.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-ejb_2.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-j2ee-connector-1.5-api.build.xml
Normal file
32
geronimo-spec-j2ee-connector-1.5-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-j2ee-connector-1.5-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-j2ee-connector_1.5_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-j2ee-deployment-1.1-api.build.xml
Normal file
32
geronimo-spec-j2ee-deployment-1.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-j2ee-deployment-1.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-j2ee-deployment_1.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-j2ee-management-1.0-api.build.xml
Normal file
32
geronimo-spec-j2ee-management-1.0-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-j2ee-management-1.0-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-j2ee-management_1.0_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jacc-1.0-api.build.xml
Normal file
32
geronimo-spec-jacc-1.0-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jacc-1.0-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-j2ee-jacc_1.0_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jaf-1.0.2-api.build.xml
Normal file
32
geronimo-spec-jaf-1.0.2-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jaf-1.0.2-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-activation_1.0.2_spec-1.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-javamail-1.3.1-api.build.xml
Normal file
32
geronimo-spec-javamail-1.3.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-javamail-1.3.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-javamail_1.3.1_spec-1.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
11
geronimo-spec-javamail-sun-security.patch
Normal file
11
geronimo-spec-javamail-sun-security.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- geronimo-spec-javamail/src/main/java/javax/mail/internet/NewsAddress.java
|
||||
+++ geronimo-spec-javamail/src/main/java/javax/mail/internet/NewsAddress.java
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
import javax.mail.Address;
|
||||
|
||||
-import sun.security.provider.Sun;
|
||||
+//import sun.security.provider.Sun;
|
||||
|
||||
/**
|
||||
* A representation of an RFC1036 Internet newsgroup address.
|
32
geronimo-spec-jaxr-1.0-api.build.xml
Normal file
32
geronimo-spec-jaxr-1.0-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jaxr-1.0-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-jaxr_1.0_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jaxrpc-1.1-api.build.xml
Normal file
32
geronimo-spec-jaxrpc-1.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jaxrpc-1.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-jaxrpc_1.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jms-1.1-api.build.xml
Normal file
32
geronimo-spec-jms-1.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jms-1.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-jms_1.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jsp-2.0-api.build.xml
Normal file
32
geronimo-spec-jsp-2.0-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jsp-2.0-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-jsp_2.0_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-jta-1.0.1B-api.build.xml
Normal file
32
geronimo-spec-jta-1.0.1B-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-jta-1.0.1B-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-jta_1.0.1B_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-qname-1.1-api.build.xml
Normal file
32
geronimo-spec-qname-1.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-qname-1.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-qname_1.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-saaj-1.1-api.build.xml
Normal file
32
geronimo-spec-saaj-1.1-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-saaj-1.1-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-saaj_1.1_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
32
geronimo-spec-servlet-2.4-api.build.xml
Normal file
32
geronimo-spec-servlet-2.4-api.build.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<project name="geronimo-servlet-2.4-api" default="dist" basedir=".">
|
||||
|
||||
<property name="src" location="src/main/java/"/>
|
||||
<property name="build" location="build"/>
|
||||
<property name="dist" location="target"/>
|
||||
|
||||
<target name="init">
|
||||
<!-- Create the time stamp -->
|
||||
<tstamp/>
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="build">
|
||||
<mkdir dir="${dist}"/>
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist}/geronimo-servlet_2.4_spec-1.0.1.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="build" depends="init">
|
||||
<javac srcdir="${src}" destdir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build}"/>
|
||||
<delete dir="${dist}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
|
3
geronimo-specs-1.1-src.tar.bz2
Normal file
3
geronimo-specs-1.1-src.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f597943463ff4070f6eaf37f8b21ba7b8a8576eeab49dc6cfdb18cb7294c5e1
|
||||
size 448062
|
13
geronimo-specs-j2ee-management-pom.patch
Normal file
13
geronimo-specs-j2ee-management-pom.patch
Normal file
@ -0,0 +1,13 @@
|
||||
--- geronimo-spec-j2ee-management/pom.xml.sav 2006-09-09 17:29:26.000000000 +0200
|
||||
+++ geronimo-spec-j2ee-management/pom.xml 2006-09-09 17:30:08.000000000 +0200
|
||||
@@ -30,8 +30,9 @@
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
- <groupId>mx4j</groupId>
|
||||
+ <groupId>JPP/mx4j</groupId>
|
||||
<artifactId>mx4j</artifactId>
|
||||
+ <version>3.0.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
87
geronimo-specs-jpp-depmap.xml
Normal file
87
geronimo-specs-jpp-depmap.xml
Normal file
@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junit_version}</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>${junit_version}</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>mockobjects</groupId>
|
||||
<artifactId>mockobjects-core</artifactId>
|
||||
<version>1.0</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP</groupId>
|
||||
<artifactId>mockobjects-core</artifactId>
|
||||
<version>1.0</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>mx4j</groupId>
|
||||
<artifactId>mx4j</artifactId>
|
||||
<version>1.0</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP/mx4j</groupId>
|
||||
<artifactId>mx4j</artifactId>
|
||||
<version>1.0</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>scout</groupId>
|
||||
<artifactId>scout</artifactId>
|
||||
<version>1.0</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP/ws-scout</groupId>
|
||||
<artifactId>scout</artifactId>
|
||||
<version>1.0</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>plexus</groupId>
|
||||
<artifactId>plexus-compiler-api</artifactId>
|
||||
<version>1.5</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP/plexus</groupId>
|
||||
<artifactId>compiler-api</artifactId>
|
||||
<version>1.5</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>logkit</groupId>
|
||||
<artifactId>logkit</artifactId>
|
||||
<version>1.2.2</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP/excalibur</groupId>
|
||||
<artifactId>avalon-logkit</artifactId>
|
||||
<version>1.2.2</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<maven>
|
||||
<groupId>org.jacorb</groupId>
|
||||
<artifactId>jacorb-idl-compiler</artifactId>
|
||||
<version>1.0</version>
|
||||
</maven>
|
||||
<jpp>
|
||||
<groupId>JPP/jacorb</groupId>
|
||||
<artifactId>idl</artifactId>
|
||||
<version>1.0</version>
|
||||
</jpp>
|
||||
</dependency>
|
||||
</dependencies>
|
12
geronimo-specs-pom_xml.patch
Normal file
12
geronimo-specs-pom_xml.patch
Normal file
@ -0,0 +1,12 @@
|
||||
--- pom.xml.sav 2006-09-25 07:59:48.000000000 +0200
|
||||
+++ pom.xml 2006-09-25 08:00:30.000000000 +0200
|
||||
@@ -112,7 +112,9 @@
|
||||
<module>geronimo-spec-j2ee-deployment</module>
|
||||
<module>geronimo-spec-j2ee-jacc</module>
|
||||
<module>geronimo-spec-j2ee-management</module>
|
||||
+<!--
|
||||
<module>geronimo-spec-j2ee</module>
|
||||
+-->
|
||||
<module>geronimo-spec-javamail</module>
|
||||
<module>geronimo-spec-jaxr</module>
|
||||
<module>geronimo-spec-jaxrpc</module>
|
8
geronimo-specs.changes
Normal file
8
geronimo-specs.changes
Normal file
@ -0,0 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 7 17:16:32 CEST 2008 - mvyskocil@suse.cz
|
||||
|
||||
- First release in Suse (JPP 1.7) version 1.1
|
||||
- build dependency for log4j update [bnc#355798]
|
||||
- added a build support using ant
|
||||
- FIXME: the corba-3.0 package is not currently included
|
||||
|
1571
geronimo-specs.spec
Normal file
1571
geronimo-specs.spec
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user