diff --git a/jetty-distribution/src/main/resources/README.txt b/jetty-distribution/src/main/resources/README.txt index 57a7c49581e..5d41b2c813d 100644 --- a/jetty-distribution/src/main/resources/README.txt +++ b/jetty-distribution/src/main/resources/README.txt @@ -18,11 +18,11 @@ JETTY DISTRIBUTION ================== This is the jetty-distribution module from Jetty @ eclipse -project is based on the Jetty modules from eclipse plus +project and is based on the Jetty modules from eclipse plus dependencies that have been through the eclipse IP process and conditioning. -This distribution and it's dependencies are provided under +This distribution and its dependencies are provided under the terms and conditions of the Eclipse Foundation Software User Agreement unless otherwise specified. @@ -33,7 +33,8 @@ Some modules (eg annotations) are missing dependencies which may be discovered by using the command mvn dependency:tree within the source module and placing them in the -lib/ext directory. +lib/ext directory. Alternately we recommend the jetty-hightide +distribution for users that desire more third party integrations. JETTY HIGHTIDE @@ -48,7 +49,7 @@ application server. MAVEN ===== -All Jetty artefacts are available as maven dependencies +All Jetty artifacts are available as maven dependencies under the org.eclipse.jetty and org.mortbay.hightide group IDs http://repo1.maven.org/maven2/org/eclipse/jetty/ diff --git a/jetty-distribution/src/main/resources/bin/build_release_bundles.sh b/jetty-distribution/src/main/resources/bin/build_release_bundles.sh deleted file mode 100755 index a9a2187026c..00000000000 --- a/jetty-distribution/src/main/resources/bin/build_release_bundles.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -[ $# -eq 1 ] || { echo "Usage - $0 jetty-dir" >&2 ; exit 1 ; } - -cd $1 -D=$(pwd) -N=$(basename $D) -D=$(dirname $D) -cd $D - - find $N -type f |\ - egrep -v /\\.svn |\ - egrep -v /target |\ - egrep -v /\\. |\ - egrep -v $N/start.jar |\ - egrep -v $N/lib |\ - egrep -v $N/logs |\ - egrep -v $N/webapp |\ - egrep -v $N/javadoc |\ - xargs zip $D/$N-src.zip $N/logs - - find $N -type f |\ - egrep -v /\\.svn |\ - egrep -v /target |\ - egrep -v /\\. |\ - egrep -v $N/logs |\ - xargs zip $D/$N.zip $N/logs