Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] can't start jetty 7.2.0.v20101020

Wow, I was finally able to build Jetty 7.2.2.

Here is what I did:

1. Download debian distribution from SVN repository:
http://svn.codehaus.org/jetty-contrib/packaging/debian/trunk/jetty7/

2. Update "changelog" to the latest version (I had to do this manually,
I do not know if you have any scripts for that).

3. Run "getsource.sh" to get the latest source.

4. Extract the source to the current directory.
tar xzf jetty_7.2.2.v20101205.orig.tar.gz

5. Do a full build inside of the extracted directory.
cd jetty-7.2.2.v20101205
mvn install -Dmaven.test.skip=true

6. Download linux packaging plugin from SVN repository:
http://svn.codehaus.org/jetty-contrib/packaging/tools/trunk/jetty-linux-packaging-maven-plugin/

7. Build and install a plugin.
mvn install

8. Go back to the server I built in (5). Use the new plugin there.
mvn
org.codehaus.jetty.plugins:jetty-linux-packaging-maven-plugin:generate-patch

9. Replace "linux-packaging.patch" in "../debian/patches" by the one
built in target directory.

10. Edit "linux-packaging.patch" with VI and run the following
command.
%s/<jar destfile="\([^\/]*\)\//<jar
manifest="\1\/src\/main\/resources\/META-INF\/MANIFEST.MF"
destfile="\1\//g

11. Run "build.sh" in the original directory.
sh reset-build.sh; sh getsource.sh; sh build.sh

If someone only wants to build a 7.2.2 version then it is enough to
copy changelog and linux-packaging.patch I attached to this e-mail to
proper places. No need to go through all of this. Do not forget to
replace "/home/ruslan/" in "linux-packaging.patch" by
"/home/${user.name}/".

But I still get the same error when trying to start the server. It says
the following:

java.lang.IllegalArgumentException: No such OPTIONS: *
	at
org.eclipse.jetty.start.Config.getCombinedClasspath(Config.java:400) at
org.eclipse.jetty.start.Config.getActiveClasspath(Config.java:377) at
org.eclipse.jetty.start.Main.start(Main.java:526) at
org.eclipse.jetty.start.Main.parseCommandLine(Main.java:273) at
org.eclipse.jetty.start.Main.main(Main.java:81)

I guess I will need to dig into sources now unless someone will help
me :)

Best regards,
Ruslans.


On Sat, 15 Jan 2011 01:22:01 +0200 Ruslans Tarasovs
<ruslan@xxxxxxxxxxxx> wrote:

> Thanks, I could write a patch for that generator then.
> 
> http://svn.codehaus.org/jetty-contrib/packaging/tools/trunk/jetty-linux-packaging-maven-plugin/src/main/java/org/codehaus/jetty/plugin/linux/AntBuildWriter.java
> 
> The idea is that the following line
> 
> printf("    <jar destfile=\"%s\">%n",jarPath);
> 
> should be replaced to something like following
> 
> printf("    <jar destfile=\"%s\"
> manifest=\"%s\">%n",jarPath,manifestPath);
> 
> That manifestPath should be something like
> "src/main/resources/META-INF/MANIFEST.MF"
> 
> It should be relatively easy to get it from the list of resources.
> 
> Do you need such patch?
> 
> Best regards,
> Ruslans.
> 
> 
> 
> On Fri, 14 Jan 2011 16:04:51 -0700
> Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
> 
> > The linux-packaging.patch is generated by the
> > jetty-linux-packaging-maven-plugin.
> > 
> > http://svn.codehaus.org/jetty-contrib/packaging/tools/trunk/jetty-linux-packaging-maven-plugin/
> > 
> > The one checked in, is not the one used.
> > 
> > -Joakim
> > 
> > On Fri, Jan 14, 2011 at 4:01 PM, Ruslans Tarasovs
> > <ruslan@xxxxxxxxxxxx>wrote:
> > 
> > > Hi.
> > >
> > > I finally found a way to compile Jetty 7 from sources properly
> > > and I also found a reason why the people have problem with
> > > running it on Debian.
> > >
> > > The problem is that the packaging Ant script provided in
> > > "linux-packaging.patch" uses "jar" task without manifest
> > > specified. That why Ant creates an empty manifest instead of
> > > using the predefined one. I have attached fixed patch that has
> > > the jar task defined properly.
> > >
> > > To build the Jetty 7 properly I did the following:
> > >
> > > 1. Replaced "/home/jesse/" by "/home/${user.name}/" in
> > > "linux-packaging.patch".
> > > 2. Copied all libraries from
> > > "jetty-distribution-7.1.6.v20100715.zip" to "~/.m2/eclipse-orbit".
> > > 3. Made a symbolic link from "servlet-api-2.5.jar" to
> > > "javax.servlet_2.5.0.v200910301333.jar" in the same directory.
> > > 4. Run "getsource.sh" and "build.sh".
> > >
> > > I hope you will find the changes I did to the patch useful.
> > >
> > > Nevertheless, after all this I still get the following error
> > > message when trying to start Jetty (it is being written to
> > > "/var/log/jetty/start.log"):
> > >
> > > java.lang.IllegalArgumentException: No such OPTIONS: *
> > >        at
> > > org.eclipse.jetty.start.Config.getCombinedClasspath(Config.java:393)
> > > at
> > > org.eclipse.jetty.start.Config.getActiveClasspath(Config.java:370)
> > > at org.eclipse.jetty.start.Main.start(Main.java:536) at
> > > org.eclipse.jetty.start.Main.parseCommandLine(Main.java:280) at
> > > org.eclipse.jetty.start.Main.main(Main.java:82) Use java -jar
> > > start.jar --help for usage information.
> > >
> > > Could it be related to
> > > "http://jira.codehaus.org/browse/JETTY-1305";?
> > >
> > > Best regards,
> > > Ruslans.
> > >
> > > On Sun, 09 Jan 2011 16:53:14 +0200
> > > Ruslans Tarasovs <ruslan@xxxxxxxxx> wrote:
> > >
> > > > Hi.
> > > >
> > > > I have tried to use the files you uploaded, but these still have
> > > > exactly the same problem as described below. There is no main
> > > > class description embedded into metainf file.
> > > >
> > > > I also tried to replace take that "start.jar" file from the
> > > > latest non-debian distribution, but I got the error message
> > > > that says that * is an invalid OPTIONS parameter.
> > > >
> > > > Another thing I tried is to build DEB files from the source, but
> > > > there are some hardcoded paths (like /home/jesse). I did try to
> > > > replace them, but there are seems to be more dependencies, so I
> > > > did not have a successful build yet.
> > > >
> > > > Do you need anything else to know? I would be happy to help :)
> > > >
> > > > Best regards,
> > > > Ruslans.
> > > > > I have uploaded the 7.2.1.v20101111 debian files..
> > > > >
> > > > > let me know if you have any issues with them and we'll try and
> > > > > get them sorted out
> > > > >
> > > > > http://dist.codehaus.org/jetty/deb/
> > > > >
> > > > > cheers,
> > > > > jesse
> > > > >
> > > > > --
> > > > > jesse mcconnell
> > > > > jesse.mcconnell@xxxxxxxxx
> > > > >
> > > > >
> > > > >
> > > > > On Thu, Nov 4, 2010 at 05:39, Jesse
> > > > > McConnell<jesse.mcconnell@xxxxxxxxx>  wrote:
> > > > > >  that is correct,
> > > > > >
> > > > > >  the deb build is ultimately targeted to be picked up and
> > > > > > used by deb distributions and those distributions won't
> > > > > > pickup artifacts from a repo like that...they have to be
> > > > > > built....and since they don't build with maven the debs are
> > > > > > produced by a patched ant build.
> > > > > >
> > > > > >  cheers,
> > > > > >  jesse
> > > > > >
> > > > > >  --
> > > > > >  jesse mcconnell
> > > > > >  jesse.mcconnell@xxxxxxxxx
> > > > > >
> > > > > >
> > > > > >
> > > > > >  On Thu, Nov 4, 2010 at 05:33, AS Maps<as.maps@xxxxxxxxx>
> > > > > > wrote:
> > > > > >>  So the deb packaging does not seem to make use of the
> > > > > >> Maven
> > > > > artifacts.
> > > > > >>
> > > > > >>  MANIFEST.MF of
> > > > > >> org.eclipse.jetty:jetty-start:jar:7.2.0.v20101020
> > > > > consists of
> > > > > >>  the following lines
> > > > > >>
> > > > > >>  Manifest-Version: 1.0
> > > > > >>  Archiver-Version: Plexus Archiver
> > > > > >>  Created-By: Apache Maven
> > > > > >>  Built-By: jesse
> > > > > >>  Build-Jdk: 1.6.0_19
> > > > > >>  Main-Class: org.eclipse.jetty.start.Main
> > > > > >>  Implementation-Vendor: Eclipse.org - Jetty
> > > > > >>  Implementation-Version: 7.2.0.v20101020
> > > > > >>  url:http://www.eclipse.org/jetty
> > > > > >>
> > > > > >>  Everything is fine with this manifest. What made me come
> > > > > >> to this
> > > > > idea was
> > > > > >>  the modification date of jetty-start.jar inside the deb
> > > > > >> archive.
> > > > > It is
> > > > > >>  2010-10-27, creation date is 2010-11-04.
> > > > > >>
> > > > > >>  I don't know how the deb build is done exactly, but to my
> > > > > >> opinion
> > > > > it doesn't
> > > > > >>  use any maven-ly produced artifacts.
> > > > > >>
> > > > > >>  BTW: Have a good trip.
> > > > > >>
> > > > > >>  Andreas
> > > > > >>
> > > > > >>  On Thu, Nov 4, 2010 at 11:22 AM, Jesse
> > > > > McConnell<jesse.mcconnell@xxxxxxxxx>
> > > > > >>  wrote:
> > > > > >>>
> > > > > >>>
> > > > > >>>
> > > > >
> > > http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-distribution/7.2.0.v20101020/
> > > > >
> > > > > >>>
> > > > > >>>  you can have up a couple of dirs and go down the
> > > > > >>> jetty-start path
> > > > > for
> > > > > >>>  a new start.jar (just rename it)
> > > > > >>>
> > > > > >>>  past that, looks like I'll have to dig into it later
> > > > > >>> (traveling atm)
> > > > > >>>
> > > > > >>>  jesse
> > > > > >>>
> > > > > >>>  --
> > > > > >>>  jesse mcconnell
> > > > > >>>  jesse.mcconnell@xxxxxxxxx
> > > > > >>>
> > > > > >>>
> > > > > >>>
> > > > > >>>  On Thu, Nov 4, 2010 at 05:17, AS Maps<as.maps@xxxxxxxxx>
> > > > > >>> wrote:
> > > > > >>> >  Hey Jesse,
> > > > > >>> >
> > > > > >>> >  thanks for uploading.
> > > > > >>> >
> > > > > >>> >  Unfortunately this is the content of
> > > > > >>> >  jetty-start.jar\META-INF\MANIFEST.MF
> > > > > >>> >
> > > > > >>> >  Manifest-Version: 1.0
> > > > > >>> >  Ant-Version: Apache Ant 1.8.1
> > > > > >>> >  Created-By: 1.6.0_0-b11 (Sun Microsystems Inc.)
> > > > > >>> >
> > > > > >>> >  Where to check the artifacts in Maven repo (if any)?
> > > > > >>> >
> > > > > >>> >  Regards
> > > > > >>> >  Andreas
> > > > > >>> >
> > > > > >>> >  On Thu, Nov 4, 2010 at 11:02 AM, Jesse McConnell
> > > > > >>> > <jesse.mcconnell@xxxxxxxxx>
> > > > > >>> >  wrote:
> > > > > >>> >>
> > > > > >>> >>  I have uploaded a hopefully uncorrupted file so
> > > > > >>> >> hopefully that
> > > > > will
> > > > > >>> >>  address one of those issues...and ideally both.
> > > > > >>> >>
> > > > > >>> >>  If the missing main class line in the start.jar is
> > > > > >>> >> still a
> > > > > problem
> > > > > >>> >>  then I'll have to dig into the deb generation process
> > > > > >>> >> and see
> > > > > what
> > > > > >>> >>  might have gone wrong, the 7.2.0 distribution itself
> > > > > >>> >> is just
> > > > > fine.
> > > > > >>> >>
> > > > > >>> >>  let me know if you still have issues after trying to
> > > > > >>> >> newly
> > > > > uploaded
> > > > > >>> >>  jars
> > > > > >>> >>
> > > > > >>> >>  md5 sums are:
> > > > > >>> >>
> > > > > >>> >>  1c700bdb09ac370472435631b9b85679
> > > > > >>> >> Âjetty_7.2.0.v20101020_all.deb
> > > > > >>> >> 3238348f24cb7534cb112ae1144edb31
> > > > > Âlibjetty-java_7.2.0.v20101020_all.deb
> > > > > >>> >>  9e984ab0954fefedfe80b26f08a18f27
> > > > > >>> >>  Âlibjetty-java-doc_7.2.0.v20101020_all.deb
> > > > > >>> >>
> > > > > >>> >>  jesse
> > > > > >>> >>  --
> > > > > >>> >>  jesse mcconnell
> > > > > >>> >>  jesse.mcconnell@xxxxxxxxx
> > > > > >>> >>
> > > > > >>> >>
> > > > > >>> >>
> > > > > >>> >>  On Wed, Nov 3, 2010 at 11:38, Don
> > > > > >>> >> Santillan<donzymeth@xxxxxxxxx> wrote:
> > > > > >>> >> >  This is different in my case. I have 40kb for the
> > > > > >>> >> > start.jar and looking
> > > > > >>> >> >  in
> > > > > >>> >> >  the manifest file for it, I found that it is missing
> > > > > >>> >> > its
> > > > > main-class
> > > > > >>> >> >  property.
> > > > > >>> >> >
> > > > > >>> >> >  Manifest-Version: 1.0
> > > > > >>> >> >  Ant-Version: Apache Ant 1.8.1
> > > > > >>> >> >  Created-By: 1.6.0_0-b11 (Sun Microsystems Inc.)
> > > > > >>> >> >
> > > > > >>> >> >  So what I did was to add the main-class into the
> > > > > >>> >> > manifest
> > > > > file, such
> > > > > >>> >> >  as
> > > > > >>> >> >  this:
> > > > > >>> >> >
> > > > > >>> >> >  Manifest-Version: 1.0
> > > > > >>> >> >  Ant-Version: Apache Ant 1.8.1
> > > > > >>> >> >  Main-Class: org.eclipse.jetty.start.Main
> > > > > >>> >> >  Created-By: 1.6.0_0-b11 (Sun Microsystems Inc.)
> > > > > >>> >> >
> > > > > >>> >> >  This time, the command found the main class but
> > > > > >>> >> > still
> > > > > produced an
> > > > > >>> >> >  error:
> > > > > >>> >> >
> > > > > >>> >> >  prompt$ /usr/bin/java
> > > > > >>> >> > -DSTART=/usr/share/jetty/etc/start.config -Xmx256m
> > > > > >>> >> >  -Djava.awt.headless=true
> > > > > >>> >> >
> > > > > >>> >> >
> > > > > -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
> > > > > >>> >> >  -Djetty.port=8080 -Djetty.home=/usr/share/jetty
> > > > > -Djava.io.tmpdir=/tmp
> > > > > >>> >> >  -jar
> > > > > >>> >> >  /usr/share/jetty/start.jar
> > > > > >>> >> > --pre=etc/jetty-logging.xml
> > > > > >>> >> > java.lang.IllegalArgumentException: No such OPTIONS:
> > > > > >>> >> > Server ÂÂÂ at
> > > > > >>> >> >
> > > > > org.eclipse.jetty.start.Config.getCombinedClasspath(Config.java:400)
> > > > > >>> >> >  ÂÂÂ at
> > > > > >>> >> >
> > > > > org.eclipse.jetty.start.Config.getActiveClasspath(Config.java:377)
> > > > > >>> >> >  ÂÂÂ at
> > > > > >>> >> > org.eclipse.jetty.start.Main.start(Main.java:536) ÂÂÂ
> > > > > >>> >> > at
> > > > > org.eclipse.jetty.start.Main.parseCommandLine(Main.java:280)
> > > > > >>> >> >  ÂÂÂ at
> > > > > >>> >> > org.eclipse.jetty.start.Main.main(Main.java:82) Use
> > > > > >>> >> > java -jar start.jar --help for usage information.
> > > > > >>> >> > prompt$
> > > > > >>> >> >
> > > > > >>> >> >  -don
> > > > > >>> >> >
> > > > > >>> >> >  AS Maps wrote:
> > > > > >>> >> >
> > > > > >>> >> >  I examined the jar inside of the deb file
> > > > > libjetty-java_*_all.deb and
> > > > > >>> >> >  it
> > > > > >>> >> >  turned out that its size is 0 bytes.
> > > > > >>> >> >  So there is rarely any file inside this obviously
> > > > > >>> >> > corrupted
> > > > > file.
> > > > > >>> >> >
> > > > > >>> >> >  Maybe a new build must be done.
> > > > > >>> >> >
> > > > > >>> >> >  On Wed, Nov 3, 2010 at 4:33 PM, Don
> > > > > Santillan<donzymeth@xxxxxxxxx>
> > > > > >>> >> >  wrote:
> > > > > >>> >> >>
> > > > > >>> >> >>  Hello,
> > > > > >>> >> >>
> > > > > >>> >> >>  I'm having problems starting jetty 7.2.0.v20101020
> > > > > >>> >> >> right after installation. Here's what I did so far.
> > > > > >>> >> >>
> > > > > >>> >> >>  1. Download the following deb files:
> > > > > >>> >> >>  ÂÂÂ a. wget
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > >
> > > http://dist.codehaus.org/jetty/deb/7.2.0.v20101020/jetty_7.2.0.v20101020_all.deb
> > > > >
> > > > > >>> >> >>  ÂÂÂ b. wget
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > >
> > > http://dist.codehaus.org/jetty/deb/7.2.0.v20101020/libjetty-java-doc_7.2.0.v20101020_all.deb
> > > > >
> > > > > >>> >> >>  ÂÂÂ c. wget
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > >
> > > http://dist.codehaus.org/jetty/deb/7.2.0.v20101020/libjetty-java_7.2.0.v20101020_all.deb
> > > > >
> > > > > >>> >> >>
> > > > > >>> >> >>  2. Make downloaded deb files executable:
> > > > > >>> >> >>  ÂÂÂ a. chmod +x jetty_7.2.0.v20101020_all.deb
> > > > > >>> >> >>  ÂÂÂ b. chmod +x
> > > > > >>> >> >> libjetty-java-doc_7.2.0.v20101020_all.deb ÂÂÂ c.
> > > > > >>> >> >> chmod +x libjetty-java_7.2.0.v20101020_all.deb
> > > > > >>> >> >>
> > > > > >>> >> >>  3. Installed the deb files in the following order:
> > > > > >>> >> >>  ÂÂÂ a. sudo dpkg -i
> > > > > >>> >> >> libjetty-java-doc_7.2.0.v20101020_all.deb (Reading
> > > > > >>> >> >> database ... 328484 files and directories currently
> > > > > >>> >> >> installed.) Preparing to replace libjetty-java-doc
> > > > > >>> >> >> 6.1.20-2 (using
> > > > > >>> >> >> libjetty-java-doc_7.2.0.v20101020_all.deb) ...
> > > > > >>> >> >> Unpacking replacement libjetty-java-doc ... Setting
> > > > > >>> >> >> up libjetty-java-doc (7.2.0.v20101020) ...
> > > > > >>> >> >> Processing triggers for doc-base ... Processing 1
> > > > > >>> >> >> removed doc-base file(s)... Registering documents
> > > > > >>> >> >> with scrollkeeper...
> > > > > >>> >> >>
> > > > > >>> >> >>  ÂÂÂ b. sudo dpkg -i
> > > > > >>> >> >> libjetty-java_7.2.0.v20101020_all.deb (Reading
> > > > > >>> >> >> database ... 328672 files and directories currently
> > > > > >>> >> >> installed.) Preparing to replace libjetty-java
> > > > > >>> >> >> 6.1.20-2 (using
> > > > > >>> >> >> libjetty-java_7.2.0.v20101020_all.deb) ... Unpacking
> > > > > >>> >> >> replacement libjetty-java ... Setting up
> > > > > >>> >> >> libjetty-java (7.2.0.v20101020) ...
> > > > > >>> >> >>
> > > > > >>> >> >>  ÂÂÂ c. sudo dpkg -i jetty_7.2.0.v20101020_all.deb
> > > > > >>> >> >>  (Reading database ... 328763 files and directories
> > > > > >>> >> >> currently installed.)
> > > > > >>> >> >>  Preparing to replace jetty 7.2.0.v20101020 (using
> > > > > >>> >> >>  jetty_7.2.0.v20101020_all.deb) ...
> > > > > >>> >> >>  Unpacking replacement jetty ...
> > > > > >>> >> >>  Setting up jetty (7.2.0.v20101020) ...
> > > > > >>> >> >>  Adding system user `jetty' (UID 117) ...
> > > > > >>> >> >>  Adding new group `jetty' (GID 127) ...
> > > > > >>> >> >>  Adding new user `jetty' (UID 117) with group
> > > > > >>> >> >> `jetty' ... Not creating home directory
> > > > > >>> >> >> `/usr/share/jetty'. update-rc.d:
> > > > > >>> >> >> warning: /etc/init.d/jetty missing LSB
> > > > > information
> > > > > >>> >> >>  update-rc.d:
> > > > > >>> >> >> see<http://wiki.debian.org/LSBInitScripts> Starting
> > > > > >>> >> >> Jetty: Not starting jetty - NO_START=1
> > > > > >>> >> >>
> > > > > >>> >> >>  Processing triggers for ureadahead ...
> > > > > >>> >> >>
> > > > > >>> >> >>  4. Change the following in /etc/default/jetty:
> > > > > >>> >> >>  ÂÂÂ a. NO_START=1 to NO_START=0
> > > > > >>> >> >>  ÂÂÂ b. UNcommented JETTY.PORT=8080
> > > > > >>> >> >>  ÂÂÂ c. set JAVA_HOME=/usr/lib/jvm/java-6-sun
> > > > > >>> >> >>  5. Run jetty:
> > > > > >>> >> >>  ÂÂÂ a. sudo /etc/init.d/jetty start
> > > > > >>> >> >>
> > > > > >>> >> >>  6. Here's what I got:
> > > > > >>> >> >>  Starting Jetty: FAILED
> > > > > >>> >> >>
> > > > > >>> >> >>  7. Run "sudo /etc/init.d/jetty check" and here's
> > > > > >>> >> >> what I got: Checking arguments to Jetty:
> > > > > >>> >> >>  JETTY_HOMEÂÂÂÂ =Â /usr/share/jetty
> > > > > >>> >> >>  JETTY_CONFÂÂÂÂ =Â /usr/share/jetty/etc/jetty.conf
> > > > > >>> >> >>  JETTY_RUNÂÂÂÂÂ =Â /var/run
> > > > > >>> >> >>  JETTY_PIDÂÂÂÂÂ =Â /var/run/jetty.pid
> > > > > >>> >> >>  JETTY_PORTÂÂÂÂ =Â 8080
> > > > > >>> >> >>  JETTY_LOGSÂÂÂÂ =
> > > > > >>> >> >>  START_INIÂÂÂÂÂ =
> > > > > >>> >> >>  CONFIGSÂÂÂÂÂÂÂ =Â --pre=etc/jetty-logging.xml
> > > > > >>> >> >>  JAVA_OPTIONSÂÂ =Â
> > > > > >>> >> >> -DSTART=/usr/share/jetty/etc/start.config
> > > > > -Xmx256m
> > > > > >>> >> >>  -Djava.awt.headless=true
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
> > > > > >>> >> >>  -Djetty.port=8080 -Djetty.home=/usr/share/jetty
> > > > > >>> >> >>  -Djava.io.tmpdir=/tmp
> > > > > >>> >> >>  JAVAÂÂÂÂÂÂÂÂÂÂ =Â /usr/bin/java
> > > > > >>> >> >>  CLASSPATHÂÂÂÂÂ =
> > > > > >>> >> >>  RUN_CMDÂÂÂÂÂÂÂ =Â /usr/bin/java
> > > > > >>> >> >>  -DSTART=/usr/share/jetty/etc/start.config
> > > > > >>> >> >>  -Xmx256m -Djava.awt.headless=true
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
> > > > > >>> >> >>  -Djetty.port=8080 -Djetty.home=/usr/share/jetty
> > > > > >>> >> >>  -Djava.io.tmpdir=/tmp
> > > > > >>> >> >>  -jar
> > > > > >>> >> >>  /usr/share/jetty/start.jar
> > > > > >>> >> >> --pre=etc/jetty-logging.xml
> > > > > >>> >> >>
> > > > > >>> >> >>  Jetty running pid=24388
> > > > > >>> >> >>
> > > > > >>> >> >>  * Notice the running pid=24388 line. This means the
> > > > > >>> >> >> pid was
> > > > > created.
> > > > > >>> >> >>  But
> > > > > >>> >> >>  going tohttp://localhost:8080
> > > > > >>> >> >> <http://localhost:8080/>
> > > > > shows the service is offline.
> > > > > >>> >> >>
> > > > > >>> >> >>  8. Run the following command on a separate
> > > > > >>> >> >> terminal: /usr/bin/java
> > > > > >>> >> >> -DSTART=/usr/share/jetty/etc/start.config
> > > > > -Xmx256m
> > > > > >>> >> >>  -Djava.awt.headless=true
> > > > > >>> >> >>
> > > > > >>> >> >>
> > > > > -Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
> > > > > >>> >> >>  -Djetty.port=8080 -Djetty.home=/usr/share/jetty
> > > > > >>> >> >>  -Djava.io.tmpdir=/tmp
> > > > > >>> >> >>  -jar
> > > > > >>> >> >>  /usr/share/jetty/start.jar
> > > > > >>> >> >> --pre=etc/jetty-logging.xml
> > > > > >>> >> >>
> > > > > >>> >> >>  Shows the following:
> > > > > >>> >> >>  Failed to load Main-Class manifest attribute from
> > > > > >>> >> >>  /usr/share/jetty/start.jar
> > > > > >>> >> >>
> > > > > >>> >> >>  9. Here's my jetty home directory listing
> > > > > >>> >> >> at /usr/share/jetty: total 28
> > > > > >>> >> >>  drwxr-xr-x 4 root root 4096 2010-11-03 23:30 .
> > > > > >>> >> >>  drwxr-xr-x 353 root root 12288 2010-10-27 13:41 ..
> > > > > >>> >> >>  lrwxrwxrwxÂÂ 1 root rootÂÂÂ 19 2010-11-03 22:58
> > > > > >>> >> >> contexts -> /etc/jetty/contexts
> > > > > >>> >> >>  lrwxrwxrwxÂÂ 1 root rootÂÂÂ 10 2010-11-03 22:58 etc
> > > > > >>> >> >> ->
> > > > > /etc/jetty
> > > > > >>> >> >>  lrwxrwxrwxÂÂ 1 root rootÂÂÂ 24 2010-11-03 22:59
> > > > > >>> >> >> javadoc -> ../doc/libjetty-java/api
> > > > > >>> >> >>  drwxr-xr-x 5 root root 4096 2010-11-03 22:59 lib
> > > > > >>> >> >>  lrwxrwxrwxÂÂ 1 root rootÂÂÂ 14 2010-11-03 22:58
> > > > > >>> >> >> logs -> /var/log/jetty
> > > > > >>> >> >>  drwxr-xr-x 2 root root 4096 2010-11-03 22:59
> > > > > >>> >> >> resources -rw-rw-r-- 1 root root 2010 2010-11-03
> > > > > >>> >> >> 23:30 start.ini lrwxrwxrwxÂÂ 1 root rootÂÂÂ 39
> > > > > >>> >> >> 2010-11-03 22:59 start.jar
> > > > > >>> >> >> -> ../java/jetty-start-7.2.0.v20101020.jar
> > > > > >>> >> >> lrwxrwxrwxÂÂ 1 root rootÂÂÂ 22 2010-11-03 22:58
> > > > > >>> >> >> webapps -> /var/lib/jetty/webapps
> > > > > >>> >> >>
> > > > > >>> >> >>  Is there a problem with the manifest file of
> > > > > >>> >> >>  /usr/share/jetty/start.jar?
> > > > > >>> >> >>  What seems to be the problem?
> > > > > >>> >> >>
> > > > > >>> >> >>  -don
> > > > > >>> >> >>
> > > > > >>> >> >>  _______________________________________________
> > > > > >>> >> >>  jetty-users mailing list
> > > > > >>> >> >>  jetty-users@xxxxxxxxxxx
> > > > > >>> >> >> https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>> >> >>
> > > > > >>> >> >
> > > > > >>> >> >  ________________________________
> > > > > >>> >> >  _______________________________________________
> > > > > >>> >> >  jetty-users mailing list
> > > > > >>> >> >  jetty-users@xxxxxxxxxxx
> > > > > >>> >> > https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>> >> >
> > > > > >>> >> >
> > > > > >>> >> >  _______________________________________________
> > > > > >>> >> >  jetty-users mailing list
> > > > > >>> >> >  jetty-users@xxxxxxxxxxx
> > > > > >>> >> > https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>> >> >
> > > > > >>> >> >
> > > > > >>> >>  _______________________________________________
> > > > > >>> >>  jetty-users mailing list
> > > > > >>> >>  jetty-users@xxxxxxxxxxx
> > > > > >>> >> https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>> >
> > > > > >>> >
> > > > > >>> >  _______________________________________________
> > > > > >>> >  jetty-users mailing list
> > > > > >>> >  jetty-users@xxxxxxxxxxx
> > > > > >>> > https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>> >
> > > > > >>> >
> > > > > >>>  _______________________________________________
> > > > > >>>  jetty-users mailing list
> > > > > >>>  jetty-users@xxxxxxxxxxx
> > > > > >>> https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>
> > > > > >>
> > > > > >>  _______________________________________________
> > > > > >>  jetty-users mailing list
> > > > > >>  jetty-users@xxxxxxxxxxx
> > > > > >> https://dev.eclipse.org/mailman/listinfo/jetty-users
> > > > > >>
> > > > > >>
> > > > > >
> > > >
> > >
> > >
> > > _______________________________________________
> > > jetty-users mailing list
> > > jetty-users@xxxxxxxxxxx
> > > https://dev.eclipse.org/mailman/listinfo/jetty-users
> > >
> > >
> 

Attachment: changelog
Description: Binary data

diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/build.xml linux-packaging/build.xml
--- linux-packaging_orig/build.xml	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/build.xml	2011-01-15 13:25:41.120201106 +0200
@@ -0,0 +1,1140 @@
+<?xml version="1.0"  encoding="ISO-8859-1"?>
+<project name="linux-packaging-maven-plugin-build" basedir="." default="build">
+  <property name="target.dir" value="${basedir}/target" />
+  <property name="distribution.dir" value="${target.dir}/distribution" />
+  <property name="lib.dir" value="${distribution.dir}/lib" />
+
+  <target name="init">
+    <mkdir dir="${lib.dir}" />
+  </target>
+
+  <target name="clean">
+    <echo>Cleaning Distribution</echo>
+    <delete dir="${distribution.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Utilities -->
+  <target name="build-jetty-util">
+    <echo>Building Jetty :: Utilities</echo>
+    <delete dir="jetty-util/target/classes/" />
+    <mkdir dir="jetty-util/target/classes/" />
+
+    <javac srcdir="jetty-util/src/main/java/"
+           destdir="jetty-util/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="slf4j-api-1.5.11.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-util/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-util/target/jetty-util-7.2.2.v20101205.jar">
+      <fileset dir="jetty-util/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-util/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-util/target/jetty-util-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: IO Utility -->
+  <target name="build-jetty-io">
+    <echo>Building Jetty :: IO Utility</echo>
+    <delete dir="jetty-io/target/classes/" />
+    <mkdir dir="jetty-io/target/classes/" />
+
+    <javac srcdir="jetty-io/src/main/java/"
+           destdir="jetty-io/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-io/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-io/target/jetty-io-7.2.2.v20101205.jar">
+      <fileset dir="jetty-io/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-io/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-io/target/jetty-io-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Http Utility -->
+  <target name="build-jetty-http">
+    <echo>Building Jetty :: Http Utility</echo>
+    <delete dir="jetty-http/target/classes/" />
+    <mkdir dir="jetty-http/target/classes/" />
+
+    <javac srcdir="jetty-http/src/main/java/"
+           destdir="jetty-http/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-http/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-http/target/jetty-http-7.2.2.v20101205.jar">
+      <fileset dir="jetty-http/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-http/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-http/target/jetty-http-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Continuation -->
+  <target name="build-jetty-continuation">
+    <echo>Building Jetty :: Continuation</echo>
+    <delete dir="jetty-continuation/target/classes/" />
+    <mkdir dir="jetty-continuation/target/classes/" />
+
+    <javac srcdir="jetty-continuation/src/main/java/"
+           destdir="jetty-continuation/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="servlet-api-3.0.20100224.jar" />
+          <include name="jetty-util-6.1.15.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-continuation/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-continuation/target/jetty-continuation-7.2.2.v20101205.jar">
+      <fileset dir="jetty-continuation/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-continuation/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-continuation/target/jetty-continuation-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Server Core -->
+  <target name="build-jetty-server">
+    <echo>Building Jetty :: Server Core</echo>
+    <delete dir="jetty-server/target/classes/" />
+    <mkdir dir="jetty-server/target/classes/" />
+
+    <javac srcdir="jetty-server/src/main/java/"
+           destdir="jetty-server/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-server/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-server/target/jetty-server-7.2.2.v20101205.jar">
+      <fileset dir="jetty-server/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-server/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-server/target/jetty-server-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Websocket -->
+  <target name="build-jetty-websocket">
+    <echo>Building Jetty :: Websocket</echo>
+    <delete dir="jetty-websocket/target/classes/" />
+    <mkdir dir="jetty-websocket/target/classes/" />
+
+    <javac srcdir="jetty-websocket/src/main/java/"
+           destdir="jetty-websocket/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-websocket/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-websocket/target/jetty-websocket-7.2.2.v20101205.jar">
+      <fileset dir="jetty-websocket/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-websocket/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-websocket/target/jetty-websocket-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Security -->
+  <target name="build-jetty-security">
+    <echo>Building Jetty :: Security</echo>
+    <delete dir="jetty-security/target/classes/" />
+    <mkdir dir="jetty-security/target/classes/" />
+
+    <javac srcdir="jetty-security/src/main/java/"
+           destdir="jetty-security/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-security/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-security/target/jetty-security-7.2.2.v20101205.jar">
+      <fileset dir="jetty-security/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-security/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-security/target/jetty-security-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Servlet Handling -->
+  <target name="build-jetty-servlet">
+    <echo>Building Jetty :: Servlet Handling</echo>
+    <delete dir="jetty-servlet/target/classes/" />
+    <mkdir dir="jetty-servlet/target/classes/" />
+
+    <javac srcdir="jetty-servlet/src/main/java/"
+           destdir="jetty-servlet/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-servlet/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-servlet/target/jetty-servlet-7.2.2.v20101205.jar">
+      <fileset dir="jetty-servlet/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-servlet/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-servlet/target/jetty-servlet-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Asynchronous HTTP Client -->
+  <target name="build-jetty-client">
+    <echo>Building Jetty :: Asynchronous HTTP Client</echo>
+    <delete dir="jetty-client/target/classes/" />
+    <mkdir dir="jetty-client/target/classes/" />
+
+    <javac srcdir="jetty-client/src/main/java/"
+           destdir="jetty-client/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-client/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-client/target/jetty-client-7.2.2.v20101205.jar">
+      <fileset dir="jetty-client/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-client/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-client/target/jetty-client-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: XML utilities -->
+  <target name="build-jetty-xml">
+    <echo>Building Jetty :: XML utilities</echo>
+    <delete dir="jetty-xml/target/classes/" />
+    <mkdir dir="jetty-xml/target/classes/" />
+
+    <javac srcdir="jetty-xml/src/main/java/"
+           destdir="jetty-xml/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-xml/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-xml/target/jetty-xml-7.2.2.v20101205.jar">
+      <fileset dir="jetty-xml/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-xml/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-xml/target/jetty-xml-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Webapp Application Support -->
+  <target name="build-jetty-webapp">
+    <echo>Building Jetty :: Webapp Application Support</echo>
+    <delete dir="jetty-webapp/target/classes/" />
+    <mkdir dir="jetty-webapp/target/classes/" />
+
+    <javac srcdir="jetty-webapp/src/main/java/"
+           destdir="jetty-webapp/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-webapp/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-webapp/target/jetty-webapp-7.2.2.v20101205.jar">
+      <fileset dir="jetty-webapp/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-webapp/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-webapp/src/main/config/etc/">
+        <include name="webdefault.xml" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-webapp/target/jetty-webapp-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Utility Servlets and Filters -->
+  <target name="build-jetty-servlets">
+    <echo>Building Jetty :: Utility Servlets and Filters</echo>
+    <delete dir="jetty-servlets/target/classes/" />
+    <mkdir dir="jetty-servlets/target/classes/" />
+
+    <javac srcdir="jetty-servlets/src/main/java/"
+           destdir="jetty-servlets/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-webapp-7.2.2.v20101205.jar" />
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-client-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-servlets/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-servlets/target/jetty-servlets-7.2.2.v20101205.jar">
+      <fileset dir="jetty-servlets/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-servlets/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-servlets/target/jetty-servlets-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Jetty JSP Additions -->
+  <target name="build-jetty-jsp-2.1">
+    <echo>Building Jetty :: Jetty JSP Additions</echo>
+    <delete dir="jetty-jsp-2.1/target/classes/" />
+    <mkdir dir="jetty-jsp-2.1/target/classes/" />
+
+    <javac srcdir="jetty-jsp-2.1/src/main/java/"
+           destdir="jetty-jsp-2.1/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jsp-2.1-glassfish-2.1.v20100127.jar" />
+          <include name="ecj-3.5.1.jar" />
+          <include name="jsp-api-2.1-glassfish-2.1.v20100127.jar" />
+          <include name="ant-1.6.5.jar" />
+          <include name="servlet-api-2.5.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-jsp-2.1/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-jsp-2.1/target/jetty-jsp-2.1-7.2.2.v20101205.jar">
+      <fileset dir="jetty-jsp-2.1/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-jsp-2.1/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-jsp-2.1/target/jetty-jsp-2.1-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: JMX Management -->
+  <target name="build-jetty-jmx">
+    <echo>Building Jetty :: JMX Management</echo>
+    <delete dir="jetty-jmx/target/classes/" />
+    <mkdir dir="jetty-jmx/target/classes/" />
+
+    <javac srcdir="jetty-jmx/src/main/java/"
+           destdir="jetty-jmx/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-webapp-7.2.2.v20101205.jar" />
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-jmx/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-jmx/target/jetty-jmx-7.2.2.v20101205.jar">
+      <fileset dir="jetty-jmx/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-jmx/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-jmx/target/jetty-jmx-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Deployers -->
+  <target name="build-jetty-deploy">
+    <echo>Building Jetty :: Deployers</echo>
+    <delete dir="jetty-deploy/target/classes/" />
+    <mkdir dir="jetty-deploy/target/classes/" />
+
+    <javac srcdir="jetty-deploy/src/main/java/"
+           destdir="jetty-deploy/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-webapp-7.2.2.v20101205.jar" />
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-deploy/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-deploy/target/jetty-deploy-7.2.2.v20101205.jar">
+      <fileset dir="jetty-deploy/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-deploy/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-deploy/target/jetty-deploy-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: AJP -->
+  <target name="build-jetty-ajp">
+    <echo>Building Jetty :: AJP</echo>
+    <delete dir="jetty-ajp/target/classes/" />
+    <mkdir dir="jetty-ajp/target/classes/" />
+
+    <javac srcdir="jetty-ajp/src/main/java/"
+           destdir="jetty-ajp/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-ajp/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-ajp/target/jetty-ajp-7.2.2.v20101205.jar">
+      <fileset dir="jetty-ajp/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-ajp/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-ajp/target/jetty-ajp-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: JNDI Naming -->
+  <target name="build-jetty-jndi">
+    <echo>Building Jetty :: JNDI Naming</echo>
+    <delete dir="jetty-jndi/target/classes/" />
+    <mkdir dir="jetty-jndi/target/classes/" />
+
+    <javac srcdir="jetty-jndi/src/main/java/"
+           destdir="jetty-jndi/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-webapp-7.2.2.v20101205.jar" />
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="mail-1.4.1.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-jndi/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-jndi/target/jetty-jndi-7.2.2.v20101205.jar">
+      <fileset dir="jetty-jndi/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-jndi/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-jndi/target/jetty-jndi-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Rewrite Handler -->
+  <target name="build-jetty-rewrite">
+    <echo>Building Jetty :: Rewrite Handler</echo>
+    <delete dir="jetty-rewrite/target/classes/" />
+    <mkdir dir="jetty-rewrite/target/classes/" />
+
+    <javac srcdir="jetty-rewrite/src/main/java/"
+           destdir="jetty-rewrite/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-rewrite/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-rewrite/target/jetty-rewrite-7.2.2.v20101205.jar">
+      <fileset dir="jetty-rewrite/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-rewrite/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-rewrite/target/jetty-rewrite-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Policy Tool -->
+  <target name="build-jetty-policy">
+    <echo>Building Jetty :: Policy Tool</echo>
+    <delete dir="jetty-policy/target/classes/" />
+    <mkdir dir="jetty-policy/target/classes/" />
+
+    <javac srcdir="jetty-policy/src/main/java/"
+           destdir="jetty-policy/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-policy/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-policy/target/jetty-policy-7.2.2.v20101205.jar">
+      <fileset dir="jetty-policy/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-policy/src/main/resources">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-policy/target/jetty-policy-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <!-- Build Jetty :: Start -->
+  <target name="build-jetty-start">
+    <echo>Building Jetty :: Start</echo>
+    <delete dir="jetty-start/target/classes/" />
+    <mkdir dir="jetty-start/target/classes/" />
+
+    <javac srcdir="jetty-start/src/main/java/"
+           destdir="jetty-start/target/classes/"
+           deprecation="false"
+           failonerror="true"
+           debug="true"
+           source="1.5"
+           target="1.5"
+           nowarn="true"
+           excludes=""
+           listfiles="false">
+      <classpath>
+        <fileset dir="${lib.dir}">
+        </fileset>
+      </classpath>
+    </javac>
+
+    <jar manifest="jetty-start/src/main/resources/META-INF/MANIFEST.MF" destfile="jetty-start/target/jetty-start-7.2.2.v20101205.jar">
+      <fileset dir="jetty-start/target/classes/">
+        <include name="**/*" />
+      </fileset>
+      <fileset dir="jetty-start/src/main/resources/">
+        <include name="**/*" />
+      </fileset>
+    </jar>
+
+    <copy file="jetty-start/target/jetty-start-7.2.2.v20101205.jar" todir="${lib.dir}" />
+  </target>
+
+  <target name="jetty-distribution-antrun-default">
+    <echo>maven-antrun-plugin copied tasks</echo>
+
+    <property name="orbit-cache" value="/home/ruslan/.m2/eclipse-orbit"/>
+    <mkdir dir="${orbit-cache}"/>
+    <get dest="${orbit-cache}" skipexisting="true" verbose="true">
+      <url url="http://download.eclipse.org/jetty/orbit//javax.servlet_2.5.0.v200910301333.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.activation_1.1.0.v201005080500.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.annotation_1.0.0.v20100513-0750.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.mail.glassfish_1.4.1.v201005082020.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.el_2.1.0.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.servlet.jsp_2.1.0.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.servlet.jsp.jstl_1.2.0.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//com.sun.el_1.0.0.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//org.apache.jasper.glassfish_2.1.0.v201007080150.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//org.objectweb.asm_3.1.0.v200803061910.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//javax.transaction_1.1.1.v201004190952.jar"/>
+      <url url="http://download.eclipse.org/jetty/orbit//ecj-3.6.jar"/>
+    </get>
+    <mkdir dir="target/distribution/lib"/>
+    <copy file="${orbit-cache}/javax.servlet_2.5.0.v200910301333.jar" tofile="target/distribution/lib/servlet-api-2.5.jar"/>
+    <mkdir dir="target/distribution/lib/annotations"/>
+    <copy todir="target/distribution/lib/annotations">
+      <fileset dir="${orbit-cache}">
+        <include name="javax.annotation_1.0.0.v20100513-0750.jar"/>
+        <include name="org.objectweb.asm_3.1.0.v200803061910.jar"/>
+      </fileset>
+    </copy>
+    <mkdir dir="target/distribution/lib/jndi"/>
+    <copy todir="target/distribution/lib/jndi">
+      <fileset dir="${orbit-cache}">
+        <include name="javax.activation_1.1.0.v201005080500.jar"/>
+        <include name="javax.mail.glassfish_1.4.1.v201005082020.jar"/>
+      </fileset>
+    </copy>
+    <mkdir dir="target/distribution/lib/jta"/>
+    <copy todir="target/distribution/lib/jta">
+      <fileset dir="${orbit-cache}">
+        <include name="javax.transaction_1.1.1.v201004190952.jar"/>
+      </fileset>
+    </copy>
+    <mkdir dir="target/distribution/lib/jsp"/>
+    <copy todir="target/distribution/lib/jsp">
+      <fileset dir="${orbit-cache}">
+        <include name="javax.el_2.1.0.v201004190952.jar"/>
+        <include name="javax.servlet.jsp_2.1.0.v201004190952.jar"/>
+        <include name="javax.servlet.jsp.jstl_1.2.0.v201004190952.jar"/>
+        <include name="com.sun.el_1.0.0.v201004190952.jar"/>
+        <include name="org.apache.jasper.glassfish_2.1.0.v201007080150.jar"/>
+        <include name="org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar"/>
+        <include name="ecj-3.6.jar"/>
+      </fileset>
+    </copy>
+    <copy todir="target/distribution" file="VERSION.txt"/>
+    <chmod dir="target/distribution/bin" perm="755" includes="**/*.sh"/>
+  </target>
+
+  <!-- Javadoc Jetty :: Project -->
+  <target name="javadoc" depends="init">
+    <echo>Generating Javadoc for Jetty :: Project</echo>
+    <mkdir dir="${distribution.dir}/javadoc" />
+    <javadoc destdir="${distribution.dir}/javadoc/"
+             author="true"
+             version="true"
+             public="false"
+             windowtitle="Jetty :: Project 7.2.2.v20101205 API"
+             doctitle="jetty-project-7.2.2.v20101205"
+             encoding="ISO-8859-1"
+             bottom="Copyright &amp;copy; 2011 Mort Bay Consulting. All Rights Reserved.">
+      <classpath>
+        <pathelement path="${java.class.path}"/>
+        <fileset dir="${lib.dir}">
+          <include name="ant-1.6.5.jar" />
+          <include name="mail-1.4.1.jar" />
+          <include name="servlet-api-2.5.jar" />
+          <include name="ecj-3.5.1.jar" />
+          <include name="jetty-httpservice-7.2.2.v20101205.jar" />
+          <include name="jetty-osgi-boot-jsp-7.2.2.v20101205.jar" />
+          <include name="jetty-osgi-boot-7.2.2.v20101205.jar" />
+          <include name="jetty-client-7.2.2.v20101205.jar" />
+          <include name="jetty-continuation-7.2.2.v20101205.jar" />
+          <include name="jetty-http-7.2.2.v20101205.jar" />
+          <include name="jetty-io-7.2.2.v20101205.jar" />
+          <include name="jetty-security-7.2.2.v20101205.jar" />
+          <include name="jetty-server-7.2.2.v20101205.jar" />
+          <include name="jetty-servlet-7.2.2.v20101205.jar" />
+          <include name="jetty-util-7.2.2.v20101205.jar" />
+          <include name="jetty-webapp-7.2.2.v20101205.jar" />
+          <include name="jetty-xml-7.2.2.v20101205.jar" />
+          <include name="jetty-util-6.1.15.jar" />
+          <include name="jsp-2.1-glassfish-2.1.v20100127.jar" />
+          <include name="jsp-api-2.1-glassfish-2.1.v20100127.jar" />
+          <include name="servlet-api-3.0.20100224.jar" />
+          <include name="slf4j-api-1.5.11.jar" />
+        </fileset>
+      </classpath>
+      <package name="org.eclipse.jetty.ajp" />
+      <package name="org.eclipse.jetty.client" />
+      <package name="org.eclipse.jetty.client.security" />
+      <package name="org.eclipse.jetty.client.webdav" />
+      <package name="org.eclipse.jetty.continuation" />
+      <package name="org.eclipse.jetty.deploy" />
+      <package name="org.eclipse.jetty.deploy.bindings" />
+      <package name="org.eclipse.jetty.deploy.graph" />
+      <package name="org.eclipse.jetty.deploy.providers" />
+      <package name="org.eclipse.jetty.deploy.util" />
+      <package name="org.eclipse.jetty.http" />
+      <package name="org.eclipse.jetty.http.security" />
+      <package name="org.eclipse.jetty.io" />
+      <package name="org.eclipse.jetty.io.bio" />
+      <package name="org.eclipse.jetty.io.nio" />
+      <package name="org.eclipse.jetty.jmx" />
+      <package name="org.eclipse.jetty.jndi" />
+      <package name="org.eclipse.jetty.jndi.factories" />
+      <package name="org.eclipse.jetty.jndi.java" />
+      <package name="org.eclipse.jetty.jndi.local" />
+      <package name="org.eclipse.jetty.jsp" />
+      <package name="org.eclipse.jetty.policy" />
+      <package name="org.eclipse.jetty.policy.entry" />
+      <package name="org.eclipse.jetty.policy.loader" />
+      <package name="org.eclipse.jetty.rewrite.handler" />
+      <package name="org.eclipse.jetty.security" />
+      <package name="org.eclipse.jetty.security.authentication" />
+      <package name="org.eclipse.jetty.server" />
+      <package name="org.eclipse.jetty.server.bio" />
+      <package name="org.eclipse.jetty.server.handler" />
+      <package name="org.eclipse.jetty.server.handler.jmx" />
+      <package name="org.eclipse.jetty.server.jmx" />
+      <package name="org.eclipse.jetty.server.nio" />
+      <package name="org.eclipse.jetty.server.session" />
+      <package name="org.eclipse.jetty.server.ssl" />
+      <package name="org.eclipse.jetty.servlet" />
+      <package name="org.eclipse.jetty.servlet.api" />
+      <package name="org.eclipse.jetty.servlet.jmx" />
+      <package name="org.eclipse.jetty.servlets" />
+      <package name="org.eclipse.jetty.start" />
+      <package name="org.eclipse.jetty.util" />
+      <package name="org.eclipse.jetty.util.ajax" />
+      <package name="org.eclipse.jetty.util.component" />
+      <package name="org.eclipse.jetty.util.log" />
+      <package name="org.eclipse.jetty.util.resource" />
+      <package name="org.eclipse.jetty.util.statistic" />
+      <package name="org.eclipse.jetty.util.thread" />
+      <package name="org.eclipse.jetty.webapp" />
+      <package name="org.eclipse.jetty.webapp.jmx" />
+      <package name="org.eclipse.jetty.websocket" />
+      <package name="org.eclipse.jetty.xml" />
+      <sourcepath>
+        <pathelement path="jetty-util/src/main/java/"/>
+        <pathelement path="jetty-io/src/main/java/"/>
+        <pathelement path="jetty-http/src/main/java/"/>
+        <pathelement path="jetty-continuation/src/main/java/"/>
+        <pathelement path="jetty-server/src/main/java/"/>
+        <pathelement path="jetty-websocket/src/main/java/"/>
+        <pathelement path="jetty-security/src/main/java/"/>
+        <pathelement path="jetty-servlet/src/main/java/"/>
+        <pathelement path="jetty-client/src/main/java/"/>
+        <pathelement path="jetty-xml/src/main/java/"/>
+        <pathelement path="jetty-webapp/src/main/java/"/>
+        <pathelement path="jetty-servlets/src/main/java/"/>
+        <pathelement path="jetty-jsp-2.1/src/main/java/"/>
+        <pathelement path="jetty-jmx/src/main/java/"/>
+        <pathelement path="jetty-deploy/src/main/java/"/>
+        <pathelement path="jetty-ajp/src/main/java/"/>
+        <pathelement path="jetty-jndi/src/main/java/"/>
+        <pathelement path="jetty-rewrite/src/main/java/"/>
+        <pathelement path="jetty-policy/src/main/java/"/>
+        <pathelement path="jetty-start/src/main/java/"/>
+      </sourcepath>
+      <tag name="org.apache.xbean.XBean" scope="all" description="XBean:" />
+      <tag name="todo" scope="all" description="To-Do:" />
+      <link href="http://java.sun.com/products/servlet/2.5/docs/servlet-2_5-mr2/"; />
+    </javadoc>
+  </target>
+
+  <target name="download-if-missing-ant-ant-1.6.5.jar" unless="present-ant-ant-1.6.5.jar">
+    <get src="${repo.url}/ant/ant/1.6.5/ant-1.6.5.jar"
+        dest="${lib.dir}/ant-1.6.5.jar" />
+  </target>
+
+  <target name="download-if-missing-javax.mail-mail-1.4.1.jar" unless="present-javax.mail-mail-1.4.1.jar">
+    <get src="${repo.url}/javax/mail/mail/1.4.1/mail-1.4.1.jar"
+        dest="${lib.dir}/mail-1.4.1.jar" />
+  </target>
+
+  <target name="download-if-missing-javax.servlet-servlet-api-2.5.jar" unless="present-javax.servlet-servlet-api-2.5.jar">
+    <get src="${repo.url}/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar"
+        dest="${lib.dir}/servlet-api-2.5.jar" />
+  </target>
+
+  <target name="download-if-missing-org.eclipse.jdt.core.compiler-ecj-3.5.1.jar" unless="present-org.eclipse.jdt.core.compiler-ecj-3.5.1.jar">
+    <get src="${repo.url}/org/eclipse/jdt/core/compiler/ecj/3.5.1/ecj-3.5.1.jar"
+        dest="${lib.dir}/ecj-3.5.1.jar" />
+  </target>
+
+  <target name="download-if-missing-org.mortbay.jetty-jetty-util-6.1.15.jar" unless="present-org.mortbay.jetty-jetty-util-6.1.15.jar">
+    <get src="${repo.url}/org/mortbay/jetty/jetty-util/6.1.15/jetty-util-6.1.15.jar"
+        dest="${lib.dir}/jetty-util-6.1.15.jar" />
+  </target>
+
+  <target name="download-if-missing-org.mortbay.jetty-jsp-2.1-glassfish-2.1.v20100127.jar" unless="present-org.mortbay.jetty-jsp-2.1-glassfish-2.1.v20100127.jar">
+    <get src="${repo.url}/org/mortbay/jetty/jsp-2.1-glassfish/2.1.v20100127/jsp-2.1-glassfish-2.1.v20100127.jar"
+        dest="${lib.dir}/jsp-2.1-glassfish-2.1.v20100127.jar" />
+  </target>
+
+  <target name="download-if-missing-org.mortbay.jetty-jsp-api-2.1-glassfish-2.1.v20100127.jar" unless="present-org.mortbay.jetty-jsp-api-2.1-glassfish-2.1.v20100127.jar">
+    <get src="${repo.url}/org/mortbay/jetty/jsp-api-2.1-glassfish/2.1.v20100127/jsp-api-2.1-glassfish-2.1.v20100127.jar"
+        dest="${lib.dir}/jsp-api-2.1-glassfish-2.1.v20100127.jar" />
+  </target>
+
+  <target name="download-if-missing-org.mortbay.jetty-servlet-api-3.0.20100224.jar" unless="present-org.mortbay.jetty-servlet-api-3.0.20100224.jar">
+    <get src="${repo.url}/org/mortbay/jetty/servlet-api/3.0.20100224/servlet-api-3.0.20100224.jar"
+        dest="${lib.dir}/servlet-api-3.0.20100224.jar" />
+  </target>
+
+  <target name="download-if-missing-org.slf4j-slf4j-api-1.5.11.jar" unless="present-org.slf4j-slf4j-api-1.5.11.jar">
+    <get src="${repo.url}/org/slf4j/slf4j-api/1.5.11/slf4j-api-1.5.11.jar"
+        dest="${lib.dir}/slf4j-api-1.5.11.jar" />
+  </target>
+
+  <target name="download-deps" depends="init">
+    <property name="repo.url" value="http://repo1.maven.org/maven2"; />
+    <path id="syslib_classpath">
+      <fileset dir="${lib.dir}">
+        <include name="*.jar"/>
+      </fileset>
+    </path>
+
+    <available file="${lib.dir}/ant-1.6.5.jar" property="present-ant-ant-1.6.5.jar" />
+    <antcall target="download-if-missing-ant-ant-1.6.5.jar" />
+
+    <condition property="present-javax.mail-mail-1.4.1.jar">
+      <or>
+        <available file="${lib.dir}/mail-1.4.1.jar" />
+        <and>
+          <available classpathref="syslib_classpath" classname="javax.mail.Authenticator" />
+          <available classpathref="syslib_classpath" classname="javax.mail.PasswordAuthentication" />
+          <available classpathref="syslib_classpath" classname="javax.mail.Session" />
+        </and>
+      </or>
+    </condition>
+    <antcall target="download-if-missing-javax.mail-mail-1.4.1.jar" />
+
+    <condition property="present-javax.servlet-servlet-api-2.5.jar">
+      <or>
+        <available file="${lib.dir}/servlet-api-2.5.jar" />
+        <and>
+          <available classpathref="syslib_classpath" classname="javax.servlet.http.HttpServlet" />
+        </and>
+      </or>
+    </condition>
+    <antcall target="download-if-missing-javax.servlet-servlet-api-2.5.jar" />
+
+    <available file="${lib.dir}/ecj-3.5.1.jar" property="present-org.eclipse.jdt.core.compiler-ecj-3.5.1.jar" />
+    <antcall target="download-if-missing-org.eclipse.jdt.core.compiler-ecj-3.5.1.jar" />
+
+    <available file="${lib.dir}/jetty-util-6.1.15.jar" property="present-org.mortbay.jetty-jetty-util-6.1.15.jar" />
+    <antcall target="download-if-missing-org.mortbay.jetty-jetty-util-6.1.15.jar" />
+
+    <available file="${lib.dir}/jsp-2.1-glassfish-2.1.v20100127.jar" property="present-org.mortbay.jetty-jsp-2.1-glassfish-2.1.v20100127.jar" />
+    <antcall target="download-if-missing-org.mortbay.jetty-jsp-2.1-glassfish-2.1.v20100127.jar" />
+
+    <available file="${lib.dir}/jsp-api-2.1-glassfish-2.1.v20100127.jar" property="present-org.mortbay.jetty-jsp-api-2.1-glassfish-2.1.v20100127.jar" />
+    <antcall target="download-if-missing-org.mortbay.jetty-jsp-api-2.1-glassfish-2.1.v20100127.jar" />
+
+    <condition property="present-org.mortbay.jetty-servlet-api-3.0.20100224.jar">
+      <or>
+        <available file="${lib.dir}/servlet-api-3.0.20100224.jar" />
+        <and>
+          <available classpathref="syslib_classpath" classname="javax.servlet.AsyncContext" />
+          <available classpathref="syslib_classpath" classname="javax.servlet.AsyncEvent" />
+          <available classpathref="syslib_classpath" classname="javax.servlet.AsyncListener" />
+        </and>
+      </or>
+    </condition>
+    <antcall target="download-if-missing-org.mortbay.jetty-servlet-api-3.0.20100224.jar" />
+
+    <condition property="present-org.slf4j-slf4j-api-1.5.11.jar">
+      <or>
+        <available file="${lib.dir}/slf4j-api-1.5.11.jar" />
+        <and>
+          <available classpathref="syslib_classpath" classname="org.slf4j.Logger" />
+        </and>
+      </or>
+    </condition>
+    <antcall target="download-if-missing-org.slf4j-slf4j-api-1.5.11.jar" />
+  </target>
+
+  <target name="distribution">
+    <echo>Create Distribution</echo>
+    <copy todir="${distribution.dir}">
+      <fileset dir="jetty-ajp/src/main/config/" />
+      <fileset dir="jetty-deploy/src/main/config/" />
+      <fileset dir="jetty-distribution/src/main/resources/" />
+      <fileset dir="jetty-jmx/src/main/config/" />
+      <fileset dir="jetty-policy/src/main/config/" />
+      <fileset dir="jetty-rewrite/src/main/config/" />
+      <fileset dir="jetty-server/src/main/config/" />
+      <fileset dir="jetty-util/src/main/config/" />
+      <fileset dir="jetty-webapp/src/main/config/" />
+    </copy>
+  </target>
+
+  <target name="copy-daemon">
+    <!-- Copy to debian build (if present, silently fail otherwise) -->
+    <copy file="jetty-distribution/src/main/resources/bin/jetty.sh" tofile="debian/jetty.init" failonerror="false" />
+    <!-- Copy to redhat build (if present, silently fail otherwise) -->
+    <copy file="jetty-distribution/src/main/resources/bin/jetty.sh" tofile="rpm/jetty.init" failonerror="false" />
+  </target>
+
+  <target name="build" depends="download-deps">
+    <antcall target="build-jetty-util" />
+    <antcall target="build-jetty-io" />
+    <antcall target="build-jetty-http" />
+    <antcall target="build-jetty-continuation" />
+    <antcall target="build-jetty-server" />
+    <antcall target="build-jetty-websocket" />
+    <antcall target="build-jetty-security" />
+    <antcall target="build-jetty-servlet" />
+    <antcall target="build-jetty-client" />
+    <antcall target="build-jetty-xml" />
+    <antcall target="build-jetty-webapp" />
+    <antcall target="build-jetty-servlets" />
+    <antcall target="build-jetty-jsp-2.1" />
+    <antcall target="build-jetty-jmx" />
+    <antcall target="build-jetty-deploy" />
+    <antcall target="build-jetty-ajp" />
+    <antcall target="build-jetty-jndi" />
+    <antcall target="build-jetty-rewrite" />
+    <antcall target="build-jetty-policy" />
+    <antcall target="build-jetty-start" />
+    <antcall target="javadoc" />
+    <antcall target="distribution" />
+    <antcall target="jetty-distribution-antrun-default" />
+    <antcall target="copy-daemon" />
+  </target>
+</project>
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-ajp/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-ajp/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-ajp/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-ajp/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:22.000000000 +0200
@@ -0,0 +1,33 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.ajp;uses:="org.eclipse.jetty.server,
+ org.eclipse.jetty.io,org.eclipse.jetty.http,org.eclipse.jetty.util.lo
+ g,javax.servlet,org.eclipse.jetty.server.bio";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: AJP
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090422539
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,org.eclipse.jetty.ajp;version="[7.2,8)",
+ org.eclipse.jetty.http;version="[7.2,8)",org.eclipse.jetty.io;version
+ ="[7.2,8)",org.eclipse.jetty.server;version="[7.2,8)",org.eclipse.jet
+ ty.server.bio;version="[7.2,8)",org.eclipse.jetty.util.log;version="[
+ 7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.ajp
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-client/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-client/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-client/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-client/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:58.000000000 +0200
@@ -0,0 +1,47 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.client;uses:="org.eclipse.jetty.io,o
+ rg.eclipse.jetty.http,org.eclipse.jetty.util,org.eclipse.jetty.util.t
+ hread,javax.net.ssl,org.eclipse.jetty.util.component,org.eclipse.jett
+ y.client.security,org.eclipse.jetty.util.resource,org.eclipse.jetty.i
+ o.nio,org.eclipse.jetty.http.security,org.eclipse.jetty.util.log,org.
+ eclipse.jetty.io.bio,javax.net";version="7.2.2.v20101205",org.eclipse
+ .jetty.client.security;uses:="org.eclipse.jetty.client,org.eclipse.je
+ tty.io,org.eclipse.jetty.http,org.eclipse.jetty.util,org.eclipse.jett
+ y.util.log";version="7.2.2.v20101205",org.eclipse.jetty.client.webdav
+ ;uses:="org.eclipse.jetty.client,org.eclipse.jetty.io,org.eclipse.jet
+ ty.util.log,org.eclipse.jetty.client.security,org.eclipse.jetty.util"
+ ;version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Asynchronous HTTP Client
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090398590
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.net,javax.net.ssl,org.eclipse.jetty.client;versi
+ on="[7.2,8)",org.eclipse.jetty.client.security;version="[7.2,8)",org.
+ eclipse.jetty.client.webdav;version="[7.2,8)",org.eclipse.jetty.http;
+ version="[7.2,8)",org.eclipse.jetty.http.security;version="[7.2,8)",o
+ rg.eclipse.jetty.io;version="[7.2,8)",org.eclipse.jetty.io.bio;versio
+ n="[7.2,8)",org.eclipse.jetty.io.nio;version="[7.2,8)",org.eclipse.je
+ tty.util;version="[7.2,8)",org.eclipse.jetty.util.component;version="
+ [7.2,8)",org.eclipse.jetty.util.log;version="[7.2,8)",org.eclipse.jet
+ ty.util.resource;version="[7.2,8)",org.eclipse.jetty.util.thread;vers
+ ion="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.client
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-continuation/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-continuation/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-continuation/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-continuation/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:44.000000000 +0200
@@ -0,0 +1,32 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.continuation;uses:="javax.servlet,or
+ g.mortbay.log,org.mortbay.util.ajax";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Continuation
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090384330
+Bundle-ManifestVersion: 2
+Bundle-Description: Asynchronous API
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet;version="[2.5,3.1)",org.eclipse.jetty.co
+ ntinuation;version="[7.2,8)",org.mortbay.log;resolution:=optional;ver
+ sion="[6.1,7)",org.mortbay.util.ajax;resolution:=optional;version="[6
+ .1,7)"
+Bundle-SymbolicName: org.eclipse.jetty.continuation
+Bundle-DocURL: http://www.eclipse.org/jetty
+Originally-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-deploy/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-deploy/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-deploy/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-deploy/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:18.000000000 +0200
@@ -0,0 +1,50 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.deploy;uses:="org.eclipse.jetty.serv
+ er.handler,org.eclipse.jetty.util,org.eclipse.jetty.deploy.graph,org.
+ eclipse.jetty.util.log,org.eclipse.jetty.util.component,org.eclipse.j
+ etty.server,org.eclipse.jetty.util.resource,org.eclipse.jetty.xml,org
+ .eclipse.jetty.deploy.bindings,org.eclipse.jetty.webapp";version="7.2
+ .2.v20101205",org.eclipse.jetty.deploy.bindings;uses:="org.eclipse.je
+ tty.server.handler,org.eclipse.jetty.deploy.graph,org.eclipse.jetty.u
+ til.log,org.eclipse.jetty.deploy,org.eclipse.jetty.server";version="7
+ .2.2.v20101205",org.eclipse.jetty.deploy.graph;uses:="org.eclipse.jet
+ ty.util";version="7.2.2.v20101205",org.eclipse.jetty.deploy.providers
+ ;uses:="org.eclipse.jetty.server,org.eclipse.jetty.server.handler,org
+ .eclipse.jetty.deploy.util,org.eclipse.jetty.util.resource,org.eclips
+ e.jetty.deploy,org.eclipse.jetty.xml,org.eclipse.jetty.util,org.eclip
+ se.jetty.util.component,org.eclipse.jetty.util.log,org.eclipse.jetty.
+ webapp";version="7.2.2.v20101205",org.eclipse.jetty.deploy.util;versi
+ on="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Deployers
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090419231
+Bundle-ManifestVersion: 2
+Bundle-Description: Jetty deployers
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: org.eclipse.jetty.deploy;version="[7.2,8)",org.eclipse
+ .jetty.deploy.bindings;version="[7.2,8)",org.eclipse.jetty.deploy.gra
+ ph;version="[7.2,8)",org.eclipse.jetty.deploy.providers;version="[7.2
+ ,8)",org.eclipse.jetty.deploy.util;version="[7.2,8)",org.eclipse.jett
+ y.server;version="[7.2,8)",org.eclipse.jetty.server.handler;version="
+ [7.2,8)",org.eclipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.u
+ til.component;version="[7.2,8)",org.eclipse.jetty.util.log;version="[
+ 7.2,8)",org.eclipse.jetty.util.resource;version="[7.2,8)",org.eclipse
+ .jetty.webapp;version="[7.2,8)",org.eclipse.jetty.xml;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.deploy
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-http/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-http/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-http/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-http/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:42.000000000 +0200
@@ -0,0 +1,36 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.http;uses:="org.eclipse.jetty.io,org
+ .eclipse.jetty.util.log,org.eclipse.jetty.util,org.eclipse.jetty.util
+ .component,org.eclipse.jetty.util.resource";version="7.2.2.v20101205"
+ ,org.eclipse.jetty.http.security;uses:="org.eclipse.jetty.util,org.ec
+ lipse.jetty.util.log";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Http Utility
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090383156
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: org.eclipse.jetty.http;version="[7.2,8)",org.eclipse.j
+ etty.http.security;version="[7.2,8)",org.eclipse.jetty.io;version="[7
+ .2,8)",org.eclipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.uti
+ l.component;version="[7.2,8)",org.eclipse.jetty.util.log;version="[7.
+ 2,8)",org.eclipse.jetty.util.resource;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.http
+Bundle-DocURL: http://www.eclipse.org/jetty
+Originally-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-io/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-io/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-io/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-io/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:42.000000000 +0200
@@ -0,0 +1,37 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.io;uses:="org.eclipse.jetty.util.log
+ ,org.eclipse.jetty.util";version="7.2.2.v20101205",org.eclipse.jetty.
+ io.bio;uses:="org.eclipse.jetty.io";version="7.2.2.v20101205",org.ecl
+ ipse.jetty.io.nio;uses:="org.eclipse.jetty.io,org.eclipse.jetty.util.
+ log,org.eclipse.jetty.util.thread,org.eclipse.jetty.util.component,ja
+ vax.net.ssl";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: IO Utility
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090381969
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.net.ssl,org.eclipse.jetty.io;version="[7.2,8)",o
+ rg.eclipse.jetty.io.bio;version="[7.2,8)",org.eclipse.jetty.io.nio;ve
+ rsion="[7.2,8)",org.eclipse.jetty.util;version="[7.2,8)",org.eclipse.
+ jetty.util.component;version="[7.2,8)",org.eclipse.jetty.util.log;ver
+ sion="[7.2,8)",org.eclipse.jetty.util.thread;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.io
+Bundle-DocURL: http://www.eclipse.org/jetty
+Originally-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-jmx/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-jmx/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-jmx/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-jmx/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:16.000000000 +0200
@@ -0,0 +1,59 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.deploy.jmx;version="7.2.2.v20101205"
+ ,org.eclipse.jetty.jmx;uses:="javax.management.remote,org.eclipse.jet
+ ty.util.thread,org.eclipse.jetty.util.component,javax.management,org.
+ eclipse.jetty.util.log,org.eclipse.jetty.util,javax.management.modelm
+ bean";version="7.2.2.v20101205",org.eclipse.jetty.server.handler.jmx;
+ uses:="org.eclipse.jetty.jmx,org.eclipse.jetty.server.handler,org.ecl
+ ipse.jetty.util.resource,org.eclipse.jetty.util";version="7.2.2.v2010
+ 1205",org.eclipse.jetty.server.jmx;uses:="org.eclipse.jetty.server,or
+ g.eclipse.jetty.jmx,org.eclipse.jetty.server.handler";version="7.2.2.
+ v20101205",org.eclipse.jetty.server.nio.jmx;version="7.2.2.v20101205"
+ ,org.eclipse.jetty.server.session.jmx;version="7.2.2.v20101205",org.e
+ clipse.jetty.servlet.jmx;uses:="org.eclipse.jetty.servlet,org.eclipse
+ .jetty.jmx";version="7.2.2.v20101205",org.eclipse.jetty.servlets.jmx;
+ version="7.2.2.v20101205",org.eclipse.jetty.util.component.jmx;versio
+ n="7.2.2.v20101205",org.eclipse.jetty.util.log.jmx;version="7.2.2.v20
+ 101205",org.eclipse.jetty.util.thread.jmx;version="7.2.2.v20101205",o
+ rg.eclipse.jetty.webapp.jmx;uses:="org.eclipse.jetty.webapp,org.eclip
+ se.jetty.server.handler.jmx";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: JMX Management
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090416296
+Bundle-ManifestVersion: 2
+Bundle-Description: JMX management artifact for jetty.
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.management,javax.management.modelmbean,javax.man
+ agement.remote,org.eclipse.jetty.deploy.jmx;version="[7.2,8)",org.ecl
+ ipse.jetty.jmx;version="[7.2,8)",org.eclipse.jetty.server;version="[7
+ .2,8)",org.eclipse.jetty.server.handler;version="[7.2,8)",org.eclipse
+ .jetty.server.handler.jmx;version="[7.2,8)",org.eclipse.jetty.server.
+ jmx;version="[7.2,8)",org.eclipse.jetty.server.nio.jmx;version="[7.2,
+ 8)",org.eclipse.jetty.server.session.jmx;version="[7.2,8)",org.eclips
+ e.jetty.servlet;version="[7.2,8)",org.eclipse.jetty.servlet.jmx;versi
+ on="[7.2,8)",org.eclipse.jetty.servlets.jmx;version="[7.2,8)",org.ecl
+ ipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.util.component;ve
+ rsion="[7.2,8)",org.eclipse.jetty.util.component.jmx;version="[7.2,8)
+ ",org.eclipse.jetty.util.log;version="[7.2,8)",org.eclipse.jetty.util
+ .log.jmx;version="[7.2,8)",org.eclipse.jetty.util.resource;version="[
+ 7.2,8)",org.eclipse.jetty.util.thread;version="[7.2,8)",org.eclipse.j
+ etty.util.thread.jmx;version="[7.2,8)",org.eclipse.jetty.webapp;versi
+ on="[7.2,8)",org.eclipse.jetty.webapp.jmx;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.jmx
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-jndi/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-jndi/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-jndi/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-jndi/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:24.000000000 +0200
@@ -0,0 +1,40 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.jndi;uses:="javax.naming,org.eclipse
+ .jetty.server.handler,org.eclipse.jetty.util.log,javax.naming.spi,org
+ .eclipse.jetty.jndi.local";version="7.2.2.v20101205",org.eclipse.jett
+ y.jndi.factories;uses:="org.eclipse.jetty.http.security,javax.mail,ja
+ vax.naming,javax.naming.spi";version="7.2.2.v20101205",org.eclipse.je
+ tty.jndi.java;uses:="javax.naming,org.eclipse.jetty.util.log,org.ecli
+ pse.jetty.jndi,javax.naming.spi";version="7.2.2.v20101205",org.eclips
+ e.jetty.jndi.local;uses:="javax.naming,org.eclipse.jetty.jndi";versio
+ n="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: JNDI Naming
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090425091
+Bundle-ManifestVersion: 2
+Bundle-Description: JNDI spi impl for java namespace.
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.mail,javax.naming,javax.naming.spi,org.eclipse.j
+ etty.http.security;version="[7.2,8)",org.eclipse.jetty.jndi;version="
+ [7.2,8)",org.eclipse.jetty.jndi.factories;version="[7.2,8)",org.eclip
+ se.jetty.jndi.java;version="[7.2,8)",org.eclipse.jetty.jndi.local;ver
+ sion="[7.2,8)",org.eclipse.jetty.server.handler;version="[7.2,8)",org
+ .eclipse.jetty.util.log;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.jndi
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-jsp-2.1/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-jsp-2.1/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-jsp-2.1/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-jsp-2.1/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:12.000000000 +0200
@@ -0,0 +1,30 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.jsp;version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Jetty JSP Additions
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Fragment-Host: org.apache.jasper.glassfish
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090413103
+Bundle-ManifestVersion: 2
+Bundle-Description: Additions to Jasper implementation from Glassfish
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: com.sun.org.apache.commons.logging;glassfish=split;ver
+ sion="[2.1,3)",org.eclipse.jetty.jsp;version="[7.2,8)",org.eclipse.je
+ tty.util.log;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.jsp-2.1
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-osgi/test-jetty-osgi/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-osgi/test-jetty-osgi/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-osgi/test-jetty-osgi/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-osgi/test-jetty-osgi/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:22:16.000000000 +0200
@@ -0,0 +1,9 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-policy/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-policy/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-policy/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-policy/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:21:06.000000000 +0200
@@ -0,0 +1,35 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.policy;uses:="org.eclipse.jetty.util
+ ,org.eclipse.jetty.policy.loader,javax.security.auth.x500";version="7
+ .2.2.v20101205",org.eclipse.jetty.policy.entry;uses:="org.eclipse.jet
+ ty.policy,javax.security.auth.x500";version="7.2.2.v20101205",org.ecl
+ ipse.jetty.policy.loader;uses:="org.eclipse.jetty.policy,org.eclipse.
+ jetty.policy.entry";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Policy Tool
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090443242
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.security.auth.x500,org.eclipse.jetty.policy;vers
+ ion="[7.2,8)",org.eclipse.jetty.policy.entry;version="[7.2,8)",org.ec
+ lipse.jetty.policy.loader;version="[7.2,8)",org.eclipse.jetty.util;ve
+ rsion="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.policy
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-rewrite/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-rewrite/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-rewrite/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-rewrite/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:38.000000000 +0200
@@ -0,0 +1,34 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.rewrite.handler;uses:="javax.servlet
+ .http,org.eclipse.jetty.server,org.eclipse.jetty.http,org.eclipse.jet
+ ty.util,javax.servlet,org.eclipse.jetty.server.handler,org.eclipse.je
+ tty.util.log";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Rewrite Handler
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090439367
+Bundle-ManifestVersion: 2
+Bundle-Description: Jetty Rewrite Handler
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,javax.servlet.http,org.eclipse.jetty.htt
+ p;version="[7.2,8)",org.eclipse.jetty.rewrite.handler;version="[7.2,8
+ )",org.eclipse.jetty.server;version="[7.2,8)",org.eclipse.jetty.serve
+ r.handler;version="[7.2,8)",org.eclipse.jetty.util;version="[7.2,8)",
+ org.eclipse.jetty.util.log;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.rewrite
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-security/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-security/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-security/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-security/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:52.000000000 +0200
@@ -0,0 +1,46 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.security;uses:="javax.servlet,org.ec
+ lipse.jetty.server,org.eclipse.jetty.http.security,org.eclipse.jetty.
+ http,org.eclipse.jetty.server.handler,org.eclipse.jetty.server.sessio
+ n,org.eclipse.jetty.util,javax.servlet.http,org.eclipse.jetty.securit
+ y.authentication,javax.security.auth,org.eclipse.jetty.util.resource,
+ org.eclipse.jetty.util.log,org.eclipse.jetty.util.component";version=
+ "7.2.2.v20101205",org.eclipse.jetty.security.authentication;uses:="ja
+ vax.servlet,org.eclipse.jetty.server,org.eclipse.jetty.security,javax
+ .servlet.http,org.eclipse.jetty.util,org.eclipse.jetty.util.log,org.e
+ clipse.jetty.http.security,javax.security.auth";version="7.2.2.v20101
+ 205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Security
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090391980
+Bundle-ManifestVersion: 2
+Bundle-Description: Jetty security infrastructure
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.security.auth,javax.servlet;version="[2.5,3.0)",
+ javax.servlet.http;version="[2.5,3.0)",org.eclipse.jetty.http;version
+ ="[7.2,8)",org.eclipse.jetty.http.security;version="[7.2,8)",org.ecli
+ pse.jetty.security;version="[7.2,8)",org.eclipse.jetty.security.authe
+ ntication;version="[7.2,8)",org.eclipse.jetty.server;version="[7.2,8)
+ ",org.eclipse.jetty.server.handler;version="[7.2,8)",org.eclipse.jett
+ y.server.session;version="[7.2,8)",org.eclipse.jetty.util;version="[7
+ .2,8)",org.eclipse.jetty.util.component;version="[7.2,8)",org.eclipse
+ .jetty.util.log;version="[7.2,8)",org.eclipse.jetty.util.resource;ver
+ sion="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.security
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-server/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-server/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-server/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-server/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:46.000000000 +0200
@@ -0,0 +1,72 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty;version="7.2.2.v20101205",org.eclips
+ e.jetty.server;uses:="org.eclipse.jetty.io,org.eclipse.jetty.util.log
+ ,org.eclipse.jetty.util.statistic,org.eclipse.jetty.http,org.eclipse.
+ jetty.util.thread,org.eclipse.jetty.util.component,javax.servlet,org.
+ eclipse.jetty.continuation,org.eclipse.jetty.server.handler,javax.ser
+ vlet.http,org.eclipse.jetty.util,org.eclipse.jetty.server.ssl,org.ecl
+ ipse.jetty.server.nio,org.eclipse.jetty.util.resource,org.eclipse.jet
+ ty.io.nio,org.eclipse.jetty.server.session,javax.security.auth";versi
+ on="7.2.2.v20101205",org.eclipse.jetty.server.bio;uses:="org.eclipse.
+ jetty.server,org.eclipse.jetty.io.bio,org.eclipse.jetty.io,org.eclips
+ e.jetty.http,org.eclipse.jetty.util.thread,org.eclipse.jetty.util.log
+ ";version="7.2.2.v20101205",org.eclipse.jetty.server.handler;uses:="o
+ rg.eclipse.jetty.server,org.eclipse.jetty.util.component,org.eclipse.
+ jetty.util.log,org.eclipse.jetty.util,org.eclipse.jetty.io.nio,org.ec
+ lipse.jetty.io,org.eclipse.jetty.util.thread,org.eclipse.jetty.http,j
+ avax.servlet,javax.servlet.http,org.eclipse.jetty.util.resource,org.e
+ clipse.jetty.util.statistic,org.eclipse.jetty.continuation";version="
+ 7.2.2.v20101205",org.eclipse.jetty.server.nio;uses:="org.eclipse.jett
+ y.server,org.eclipse.jetty.io.nio,org.eclipse.jetty.io,org.eclipse.je
+ tty.util.log,org.eclipse.jetty.http,org.eclipse.jetty.util.thread,org
+ .eclipse.jetty.util";version="7.2.2.v20101205",org.eclipse.jetty.serv
+ er.session;uses:="org.eclipse.jetty.server,org.eclipse.jetty.util.com
+ ponent,org.eclipse.jetty.util.log,javax.servlet.http,javax.servlet,or
+ g.eclipse.jetty.server.handler,org.eclipse.jetty.util,org.eclipse.jet
+ ty.util.statistic,org.eclipse.jetty.http,javax.naming,javax.sql";vers
+ ion="7.2.2.v20101205",org.eclipse.jetty.server.ssl;uses:="org.eclipse
+ .jetty.server,org.eclipse.jetty.io,javax.security.cert,javax.net.ssl,
+ org.eclipse.jetty.util.log,org.eclipse.jetty.util,org.eclipse.jetty.i
+ o.nio,org.eclipse.jetty.http,org.eclipse.jetty.server.nio,org.eclipse
+ .jetty.util.resource,org.eclipse.jetty.http.security,org.eclipse.jett
+ y.server.bio,org.eclipse.jetty.io.bio";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Server Core
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090386079
+Bundle-ManifestVersion: 2
+Bundle-Description: The core jetty server artifact.
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.naming,javax.net.ssl,javax.security.auth,javax.s
+ ecurity.cert,javax.servlet;version="[2.5,3.0)",javax.servlet.http;ver
+ sion="[2.5,3.0)",javax.sql,org.eclipse.jetty;version="[7.2,8)",org.ec
+ lipse.jetty.continuation;version="[7.2,8)",org.eclipse.jetty.http;ver
+ sion="[7.2,8)",org.eclipse.jetty.http.security;version="[7.2,8)",org.
+ eclipse.jetty.io;version="[7.2,8)",org.eclipse.jetty.io.bio;version="
+ [7.2,8)",org.eclipse.jetty.io.nio;version="[7.2,8)",org.eclipse.jetty
+ .server;version="[7.2,8)",org.eclipse.jetty.server.bio;version="[7.2,
+ 8)",org.eclipse.jetty.server.handler;version="[7.2,8)",org.eclipse.je
+ tty.server.nio;version="[7.2,8)",org.eclipse.jetty.server.session;ver
+ sion="[7.2,8)",org.eclipse.jetty.server.ssl;version="[7.2,8)",org.ecl
+ ipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.util.component;ve
+ rsion="[7.2,8)",org.eclipse.jetty.util.log;version="[7.2,8)",org.ecli
+ pse.jetty.util.resource;version="[7.2,8)",org.eclipse.jetty.util.stat
+ istic;version="[7.2,8)",org.eclipse.jetty.util.thread;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.server
+Bundle-DocURL: http://www.eclipse.org/jetty
+Originally-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-servlet/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-servlet/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-servlet/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-servlet/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:54.000000000 +0200
@@ -0,0 +1,45 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.servlet;uses:="org.eclipse.jetty.ser
+ ver,org.eclipse.jetty.io,org.eclipse.jetty.http,org.eclipse.jetty.ser
+ ver.nio,org.eclipse.jetty.server.handler,org.eclipse.jetty.util.resou
+ rce,javax.servlet,org.eclipse.jetty.server.ssl,org.eclipse.jetty.util
+ .log,org.eclipse.jetty.util,javax.servlet.http,org.eclipse.jetty.serv
+ let.api,org.eclipse.jetty.util.component,org.eclipse.jetty.security,o
+ rg.eclipse.jetty.server.session,org.eclipse.jetty.continuation";versi
+ on="7.2.2.v20101205",org.eclipse.jetty.servlet.api;version="7.2.2.v20
+ 101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Servlet Handling
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090395023
+Bundle-ManifestVersion: 2
+Bundle-Description: Jetty Servlet Container
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,javax.servlet.http,org.eclipse.jetty.con
+ tinuation;version="[7.2,8)",org.eclipse.jetty.http;version="[7.2,8)",
+ org.eclipse.jetty.io;version="[7.2,8)",org.eclipse.jetty.security;ver
+ sion="[7.2,8)",org.eclipse.jetty.server;version="[7.2,8)",org.eclipse
+ .jetty.server.handler;version="[7.2,8)",org.eclipse.jetty.server.nio;
+ version="[7.2,8)",org.eclipse.jetty.server.session;version="[7.2,8)",
+ org.eclipse.jetty.server.ssl;version="[7.2,8)",org.eclipse.jetty.serv
+ let;version="[7.2,8)",org.eclipse.jetty.servlet.api;version="[7.2,8)"
+ ,org.eclipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.util.comp
+ onent;version="[7.2,8)",org.eclipse.jetty.util.log;version="[7.2,8)",
+ org.eclipse.jetty.util.resource;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.servlet
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-servlets/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-servlets/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-servlets/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-servlets/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:10.000000000 +0200
@@ -0,0 +1,37 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.servlets;uses:="org.eclipse.jetty.ut
+ il.log,javax.servlet.http,org.eclipse.jetty.util,javax.servlet,org.ec
+ lipse.jetty.server,org.eclipse.jetty.io,org.eclipse.jetty.continuatio
+ n,org.eclipse.jetty.util.thread,org.eclipse.jetty.client,org.eclipse.
+ jetty.http";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Utility Servlets and Filters
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090411462
+Bundle-ManifestVersion: 2
+Bundle-Description: Utility Servlets from Jetty
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,javax.servlet.http,org.eclipse.jetty.cli
+ ent;version="[7.2,8)",org.eclipse.jetty.continuation;version="[7.2,8)
+ ",org.eclipse.jetty.http;version="[7.2,8)",org.eclipse.jetty.io;versi
+ on="[7.2,8)",org.eclipse.jetty.server;version="[7.2,8)",org.eclipse.j
+ etty.servlets;version="[7.2,8)",org.eclipse.jetty.util;version="[7.2,
+ 8)",org.eclipse.jetty.util.log;version="[7.2,8)",org.eclipse.jetty.ut
+ il.thread;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.servlets
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-start/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-start/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-start/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-start/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:21:08.000000000 +0200
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Main-Class: org.eclipse.jetty.start.Main
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-util/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-util/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-util/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-util/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:38.000000000 +0200
@@ -0,0 +1,44 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.util;uses:="org.eclipse.jetty.util.l
+ og,org.eclipse.jetty.util.thread";version="7.2.2.v20101205",org.eclip
+ se.jetty.util.ajax;uses:="org.eclipse.jetty.util,org.eclipse.jetty.ut
+ il.log";version="7.2.2.v20101205",org.eclipse.jetty.util.component;us
+ es:="org.eclipse.jetty.util.log,org.eclipse.jetty.util";version="7.2.
+ 2.v20101205",org.eclipse.jetty.util.log;uses:="org.eclipse.jetty.util
+ ,org.slf4j";version="7.2.2.v20101205",org.eclipse.jetty.util.resource
+ ;uses:="org.eclipse.jetty.util.log,org.eclipse.jetty.util";version="7
+ .2.2.v20101205",org.eclipse.jetty.util.statistic;version="7.2.2.v2010
+ 1205",org.eclipse.jetty.util.thread;uses:="org.eclipse.jetty.util.com
+ ponent,org.eclipse.jetty.util.log,org.eclipse.jetty.util";version="7.
+ 2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Utilities
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090377740
+Bundle-ManifestVersion: 2
+Bundle-Description: Utility classes for Jetty
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: org.eclipse.jetty.util;version="[7.2,8)",org.eclipse.j
+ etty.util.ajax;version="[7.2,8)",org.eclipse.jetty.util.component;ver
+ sion="[7.2,8)",org.eclipse.jetty.util.log;version="[7.2,8)",org.eclip
+ se.jetty.util.resource;version="[7.2,8)",org.eclipse.jetty.util.stati
+ stic;version="[7.2,8)",org.eclipse.jetty.util.thread;version="[7.2,8)
+ ",org.slf4j;resolution:=optional;version="[1.5,1.7)"
+Bundle-SymbolicName: org.eclipse.jetty.util
+Bundle-DocURL: http://www.eclipse.org/jetty
+Originally-Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-webapp/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-webapp/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-webapp/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-webapp/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:04.000000000 +0200
@@ -0,0 +1,42 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.webapp;uses:="org.eclipse.jetty.util
+ .resource,org.eclipse.jetty.xml,org.eclipse.jetty.util.log,org.eclips
+ e.jetty.util,org.eclipse.jetty.server.handler,org.eclipse.jetty.serve
+ r,org.eclipse.jetty.servlet,org.eclipse.jetty.io,org.eclipse.jetty.se
+ curity,org.eclipse.jetty.http,javax.servlet,org.eclipse.jetty.http.se
+ curity,org.eclipse.jetty.server.session,javax.servlet.http";version="
+ 7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Webapp Application Support
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090405723
+Bundle-ManifestVersion: 2
+Bundle-Description: Jetty web application support
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,javax.servlet.http,org.eclipse.jetty.htt
+ p;version="[7.2,8)",org.eclipse.jetty.http.security;version="[7.2,8)"
+ ,org.eclipse.jetty.io;version="[7.2,8)",org.eclipse.jetty.security;ve
+ rsion="[7.2,8)",org.eclipse.jetty.server;version="[7.2,8)",org.eclips
+ e.jetty.server.handler;version="[7.2,8)",org.eclipse.jetty.server.ses
+ sion;version="[7.2,8)",org.eclipse.jetty.servlet;version="[7.2,8)",or
+ g.eclipse.jetty.util;version="[7.2,8)",org.eclipse.jetty.util.log;ver
+ sion="[7.2,8)",org.eclipse.jetty.util.resource;version="[7.2,8)",org.
+ eclipse.jetty.webapp;version="[7.2,8)",org.eclipse.jetty.xml;version=
+ "[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.webapp
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-websocket/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-websocket/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-websocket/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-websocket/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:19:48.000000000 +0200
@@ -0,0 +1,36 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.websocket;uses:="org.eclipse.jetty.i
+ o,org.eclipse.jetty.util.log,org.eclipse.jetty.util,org.eclipse.jetty
+ .io.nio,javax.servlet.http,org.eclipse.jetty.server,org.eclipse.jetty
+ .http,javax.servlet,org.eclipse.jetty.server.handler";version="7.2.2.
+ v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: Websocket
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090388915
+Bundle-ManifestVersion: 2
+Bundle-Description: Administrative parent pom for Jetty modules
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.servlet,javax.servlet.http,org.eclipse.jetty.htt
+ p;version="[7.2,8)",org.eclipse.jetty.io;version="[7.2,8)",org.eclips
+ e.jetty.io.nio;version="[7.2,8)",org.eclipse.jetty.server;version="[7
+ .2,8)",org.eclipse.jetty.server.handler;version="[7.2,8)",org.eclipse
+ .jetty.util;version="[7.2,8)",org.eclipse.jetty.util.log;version="[7.
+ 2,8)",org.eclipse.jetty.websocket;version="[7.2,8)"
+Bundle-SymbolicName: org.eclipse.jetty.websocket
+Bundle-DocURL: http://www.eclipse.org/jetty
+
diff --recursive '--unified=3' --text '--exclude=target' '--exclude=.git' '--exclude=.svn' '--exclude=.SVN' '--exclude=.*.swp' '--exclude=.classpath' '--exclude=.project' '--exclude=.settings' --new-file linux-packaging_orig/jetty-xml/src/main/resources/META-INF/MANIFEST.MF linux-packaging/jetty-xml/src/main/resources/META-INF/MANIFEST.MF
--- linux-packaging_orig/jetty-xml/src/main/resources/META-INF/MANIFEST.MF	1970-01-01 03:00:00.000000000 +0300
+++ linux-packaging/jetty-xml/src/main/resources/META-INF/MANIFEST.MF	2011-01-15 13:20:00.000000000 +0200
@@ -0,0 +1,34 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: 1.6.0_18 (Sun Microsystems Inc.)
+Built-By: ruslan
+Build-Jdk: 1.6.0_18
+Implementation-Vendor: Eclipse.org - Jetty
+Implementation-Version: 7.2.2.v20101205
+url: http://www.eclipse.org/jetty
+Export-Package: org.eclipse.jetty.xml;uses:="org.eclipse.jetty.util.re
+ source,org.eclipse.jetty.util.component,org.eclipse.jetty.util.log,or
+ g.xml.sax,org.eclipse.jetty.util,javax.xml.parsers,org.xml.sax.helper
+ s";version="7.2.2.v20101205"
+Private-Package: .;version="7.2.2.v20101205"
+Bundle-Classpath: .
+Tool: Bnd-0.0.311
+Bundle-Name: Jetty :: XML utilities
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Copyright: Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+Bundle-Vendor: Eclipse Jetty Project
+Bundle-Version: 7.2.2.v20101205
+Bnd-LastModified: 1295090400561
+Bundle-ManifestVersion: 2
+Bundle-Description: The jetty xml utilities.
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0, http://www
+ .eclipse.org/org/documents/epl-v10.php
+Import-Package: javax.xml.parsers,org.eclipse.jetty.util;version="[7.2
+ ,8)",org.eclipse.jetty.util.component;version="[7.2,8)",org.eclipse.j
+ etty.util.log;version="[7.2,8)",org.eclipse.jetty.util.resource;versi
+ on="[7.2,8)",org.eclipse.jetty.xml;version="[7.2,8)",org.xml.sax,org.
+ xml.sax.helpers
+Bundle-SymbolicName: org.eclipse.jetty.xml
+Bundle-DocURL: http://www.eclipse.org/jetty
+

Back to the top