2012-11-08 15:15:04 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.dist</groupId>
|
|
|
|
<artifactId>dist-parent</artifactId>
|
|
|
|
<version>9.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-deb</artifactId>
|
|
|
|
<name>Jetty :: Unix Distributions :: Debian</name>
|
|
|
|
<packaging>deb</packaging>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty.toolchain</groupId>
|
|
|
|
<artifactId>unix-maven-plugin</artifactId>
|
|
|
|
<version>1.0-alpha-6.1</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<contact>Jetty Project</contact>
|
|
|
|
<contactEmail>jetty-dev@eclipse.org</contactEmail>
|
|
|
|
<name>Core Jetty ${project.version} Distribution</name>
|
|
|
|
<description>Jetty provides an Web server and javax.servlet
|
|
|
|
container, plus support for Web Sockets, OSGi, JMX, JNDI,
|
|
|
|
JASPI, AJP and many other integrations. These components are
|
|
|
|
open source and available for commercial use and
|
|
|
|
distribution.</description>
|
|
|
|
<deb>
|
|
|
|
<useFakeroot>false</useFakeroot>
|
|
|
|
<priority>optional</priority>
|
|
|
|
<section>java</section>
|
|
|
|
</deb>
|
|
|
|
<packages>
|
|
|
|
<package>
|
|
|
|
<id>jetty-server</id>
|
|
|
|
<assembly>
|
|
|
|
<extractArtifact>
|
|
|
|
<artifact>org.eclipse.jetty:jetty-distribution:zip</artifact>
|
2012-11-16 17:08:40 -05:00
|
|
|
<to>/usr/share/jetty9</to>
|
2012-11-08 15:15:04 -05:00
|
|
|
<pattern>/jetty-distribution-${project.version}(.*)</pattern>
|
|
|
|
<replacement>$1</replacement>
|
|
|
|
<excludes>
|
|
|
|
<exclude>jetty-distribution-*/javadoc</exclude>
|
|
|
|
<exclude>jetty-distribution-*/javadoc/**</exclude>
|
2012-11-16 17:08:40 -05:00
|
|
|
<exclude>jetty-distribution-*/logs/**</exclude>
|
|
|
|
<exclude>jetty-distribution-*/bin/**</exclude>
|
2012-11-20 10:48:46 -05:00
|
|
|
<exclude>jetty-distribution-*/etc/**</exclude>
|
2012-11-16 17:08:40 -05:00
|
|
|
<exclude>jetty-distribution-*/webapps/**</exclude>
|
|
|
|
<exclude>jetty-distribution-*/*.html</exclude>
|
|
|
|
<exclude>jetty-distribution-*/*.txt</exclude>
|
|
|
|
</excludes>
|
|
|
|
</extractArtifact>
|
|
|
|
<extractArtifact>
|
|
|
|
<artifact>org.eclipse.jetty:jetty-distribution:zip</artifact>
|
|
|
|
<to>/usr/share/doc/jetty9</to>
|
|
|
|
<pattern>/jetty-distribution-${project.version}(.*)</pattern>
|
|
|
|
<replacement>$1</replacement>
|
|
|
|
<excludes>
|
|
|
|
<include>jetty-distribution-*/*.html</include>
|
|
|
|
<include>jetty-distribution-*/*.txt</include>
|
|
|
|
<exclude>jetty-distribution-*/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</extractArtifact>
|
|
|
|
<extractArtifact>
|
|
|
|
<artifact>org.eclipse.jetty:jetty-distribution:zip</artifact>
|
|
|
|
<to>/etc/jetty9</to>
|
|
|
|
<pattern>/jetty-distribution-${project.version}(.*)</pattern>
|
|
|
|
<replacement>$1</replacement>
|
|
|
|
<excludes>
|
|
|
|
<include>jetty-distribution-*/etc/**</include>
|
2012-11-20 10:48:46 -05:00
|
|
|
<!-- exclude>jetty-distribution-*/**</exclude-->
|
2012-11-16 17:08:40 -05:00
|
|
|
</excludes>
|
2012-11-08 15:15:04 -05:00
|
|
|
</extractArtifact>
|
|
|
|
</assembly>
|
|
|
|
</package>
|
2012-11-16 17:08:40 -05:00
|
|
|
<package>
|
|
|
|
<id>jetty-test-webapp</id>
|
|
|
|
<classifier>test-webapp</classifier>
|
2012-11-08 15:15:04 -05:00
|
|
|
<assembly>
|
|
|
|
<extractArtifact>
|
|
|
|
<artifact>org.eclipse.jetty:jetty-distribution:zip</artifact>
|
2012-11-16 17:08:40 -05:00
|
|
|
<to>/var/lib/jetty9/webapps</to>
|
2012-11-08 15:15:04 -05:00
|
|
|
<pattern>/jetty-distribution-${project.version}(.*)</pattern>
|
|
|
|
<replacement>$1</replacement>
|
|
|
|
<includes>
|
2012-11-16 17:08:40 -05:00
|
|
|
<include>jetty-distribution-*/webapps/**</include>
|
2012-11-08 15:15:04 -05:00
|
|
|
</includes>
|
|
|
|
</extractArtifact>
|
|
|
|
</assembly>
|
2012-11-16 17:08:40 -05:00
|
|
|
</package>
|
2012-11-08 15:15:04 -05:00
|
|
|
</packages>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-distribution</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>zip</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|