diff --git a/sea/.cvsignore b/sea/.cvsignore
deleted file mode 100644
index d573ee91..00000000
--- a/sea/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-*~
-target
-velocity.log
-maven.log
diff --git a/sea/plugin.jelly b/sea/plugin.jelly
deleted file mode 100644
index 068629ce..00000000
--- a/sea/plugin.jelly
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sea/project.xml b/sea/project.xml
deleted file mode 100644
index de8a1a0c..00000000
--- a/sea/project.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
- ../project.xml
- 3
- maven-sea-plugin
- Maven Self Extracting Archive Plug-in
- 1.0
-
- Create self extracting archive
- http://maven.apache.org/reference/plugins/deploy/
- /www/maven.apache.org/reference/plugins/sea/
-
- scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/sea/
- http://cvs.apache.org/viewcvs/maven-plugins/sea/
-
-
-
- dIon Gillard
- dion
- dion@multitask.com.au
- Multitask Consulting
-
- Documentation
-
-
-
- Stéphane Mor
- smor
- stephanemor@yahoo.fr
- Hasgard Systèmes et Réseaux
-
- Java Developer
-
-
-
- Jason van Zyl
- jvanzyl
- jason@zenplex.com
- Zenplex
-
- Architect
- Release Manager
-
-
-
-
diff --git a/sea/sea-tar b/sea/sea-tar
deleted file mode 100755
index 1353d325..00000000
--- a/sea/sea-tar
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-SEA_NAME=$1
-SOURCE_DIRECTORY=$2
-TARGET_DIR=$3
-
-tar -cvzf ${TARGET_DIR}/${SEA_NAME}.tar.gz -C ${SOURCE_DIRECTORY} `ls ${SOURCE_DIRECTORY}`
diff --git a/sea/src/plugin-resources/sea-header b/sea/src/plugin-resources/sea-header
deleted file mode 100644
index 71f6ff09..00000000
--- a/sea/src/plugin-resources/sea-header
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-echo ""
-echo @NOTICE@
-echo ""
-
-# create a temp directory to extract to.
-#export WRKDIR=`mktemp -d /tmp/selfextract.XXXXXX`
-export WORK_DIR="@WORK_DIR@"
-mkdir $WORK_DIR
-
-SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`
-
-# Take the TGZ portion of this file and pipe it to tar.
-tail +$SKIP $0 | tar xz -C $WORK_DIR
-
-# execute the installation script
-
-#PREV=`pwd`
-#cd $WORK_DIR
-#./install.sh
-
-# delete the temp files
-#cd $PREV
-#rm -rf $WORK_DIR
-
-exit 0
-
-__ARCHIVE_FOLLOWS__