Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Re: [jetty-commit] r302 - in jetty/trunk: . jetty-aggregate jetty-aggregate/jetty-all jetty-aggregate/jetty-all-server jetty-aggregate/jetty-client jetty-aggregate/jetty-plus jetty-aggregate/jetty-server jetty-aggregate/jetty-servlet jetty-aggregate/

I would like to change the jetty-aggregate-project to
jetty-aggregate-parent to reflect that it is a parent pom for a set of
modules as opposed to a wholy separate project.

Also a quick thought, should these be a part of the project itself or
should they be a separate trunk/branch/tags setup?  Not sure how I
feel one way or the other on that...wanted to throw it out there for
discussion though.

I am thinking I like it being its own release train as it will not
cause clashing and keeps the import into eclipse clearly jetty
development artifacts. (there is import clashing right now as two
artifacts can't import with jetty-server as the artifact name....The
import into eclipse of the clean project now has a mixture of these
aggregates which I am not super keen on.

cheers,
jesse

--
jesse mcconnell
jesse.mcconnell@xxxxxxxxx



On Tue, May 26, 2009 at 22:24,  <genie@xxxxxxxxxxx> wrote:
> Author: gwilkins
> Date: 2009-05-26 23:24:11 -0400 (Tue, 26 May 2009)
> New Revision: 302
>
> Added:
>   jetty/trunk/jetty-aggregate/
>   jetty/trunk/jetty-aggregate/jetty-all-server/
>   jetty/trunk/jetty-aggregate/jetty-all-server/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-all/
>   jetty/trunk/jetty-aggregate/jetty-all/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-client/
>   jetty/trunk/jetty-aggregate/jetty-client/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-plus/
>   jetty/trunk/jetty-aggregate/jetty-plus/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-server/
>   jetty/trunk/jetty-aggregate/jetty-server/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-servlet/
>   jetty/trunk/jetty-aggregate/jetty-servlet/pom.xml
>   jetty/trunk/jetty-aggregate/jetty-webapp/
>   jetty/trunk/jetty-aggregate/jetty-webapp/pom.xml
>   jetty/trunk/jetty-aggregate/pom.xml
> Modified:
>   jetty/trunk/pom.xml
> Log:
> added aggregate jars
>
>
> Property changes on: jetty/trunk/jetty-aggregate
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-all
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-all/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-all/pom.xml                               (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-all/pom.xml       2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,218 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-all</artifactId>
> +  <name>Jetty :: Aggregate :: All core Jetty</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>META-INF/**,org/eclipse/**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-client</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-deploy</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +         <groupId>org.mortbay.jetty</groupId>
> +         <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +        <exclusion>
> +         <groupId>javax.servlet</groupId>
> +         <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jmx</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-plus</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-jta_1.1_spec</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.mail</groupId>
> +          <artifactId>mail</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.activation</groupId>
> +          <artifactId>activation</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-ajp</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-annotations</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-annotation_1.0_spec</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>asm</groupId>
> +          <artifactId>asm-commons</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jaspi</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-jaspi_1.0_spec</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jndi</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-rewrite</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-servlets</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-jta_1.1_spec</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.mail</groupId>
> +      <artifactId>mail</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.activation</groupId>
> +      <artifactId>activation</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-jaspi_1.0_spec</artifactId>
> +      <version>1.0-SNAPSHOT</version>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-annotation_1.0_spec</artifactId>
> +      <version>1.1.1</version>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>asm</groupId>
> +      <artifactId>asm-commons</artifactId>
> +      <scope>compile</scope>
> +      <version>3.1</version>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-all/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-all-server
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-all-server/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-all-server/pom.xml                                (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-all-server/pom.xml        2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,211 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-all-server</artifactId>
> +  <name>Jetty :: Aggregate :: All Server</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>META-INF/**,org/eclipse/**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty Server</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-deploy</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +         <groupId>org.mortbay.jetty</groupId>
> +         <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +        <exclusion>
> +         <groupId>javax.servlet</groupId>
> +         <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jmx</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-plus</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-jta_1.1_spec</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.mail</groupId>
> +          <artifactId>mail</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.activation</groupId>
> +          <artifactId>activation</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-ajp</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-annotations</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-annotation_1.0_spec</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>asm</groupId>
> +          <artifactId>asm-commons</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jaspi</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-jaspi_1.0_spec</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-jndi</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-rewrite</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-servlets</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-jta_1.1_spec</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.mail</groupId>
> +      <artifactId>mail</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.activation</groupId>
> +      <artifactId>activation</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-jaspi_1.0_spec</artifactId>
> +      <version>1.0-SNAPSHOT</version>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-annotation_1.0_spec</artifactId>
> +      <version>1.1.1</version>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>asm</groupId>
> +      <artifactId>asm-commons</artifactId>
> +      <scope>compile</scope>
> +      <version>3.1</version>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-all-server/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-client
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-client/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-client/pom.xml                            (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-client/pom.xml    2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,77 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-client</artifactId>
> +  <name>Jetty :: Aggregate :: HTTP Client</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>META-INF/**,org/eclipse/**</includes>
> +              <excludes>**/MANIFEST.MF</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty HTTP Client</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-client</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-client/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-plus
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-plus/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-plus/pom.xml                              (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-plus/pom.xml      2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,120 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-plus</artifactId>
> +  <name>Jetty :: Aggregate :: Plus Server</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>META-INF/**,org/eclipse/**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty HTTP Server</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-plus</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>org.apache.geronimo.specs</groupId>
> +          <artifactId>geronimo-jta_1.1_spec</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.mail</groupId>
> +          <artifactId>mail</artifactId>
> +        </exclusion>
> +        <exclusion>
> +          <groupId>javax.activation</groupId>
> +          <artifactId>activation</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.geronimo.specs</groupId>
> +      <artifactId>geronimo-jta_1.1_spec</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.mail</groupId>
> +      <artifactId>mail</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.activation</groupId>
> +      <artifactId>activation</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-plus/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-server
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-server/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-server/pom.xml                            (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-server/pom.xml    2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,88 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-server</artifactId>
> +  <name>Jetty :: Aggregate :: HTTP Server</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty HTTP Server</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-server</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-server/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-servlet
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-servlet/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-servlet/pom.xml                           (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-servlet/pom.xml   2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,88 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-servlet</artifactId>
> +  <name>Jetty :: Aggregate :: Servlet Server</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty HTTP Server</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-servlet</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-servlet/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-webapp
> ___________________________________________________________________
> Name: svn:ignore
>   + target
>
>
> Added: jetty/trunk/jetty-aggregate/jetty-webapp/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/jetty-webapp/pom.xml                            (rev 0)
> +++ jetty/trunk/jetty-aggregate/jetty-webapp/pom.xml    2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,88 @@
> +<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";>
> +  <parent>
> +    <groupId>org.eclipse.jetty.aggregate</groupId>
> +    <artifactId>jetty-aggregate-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <modelVersion>4.0.0</modelVersion>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-webapp</artifactId>
> +  <name>Jetty :: Aggregate :: WebApp Server</name>
> +
> +  <properties>
> +    <jetty-version>${project.version}</jetty-version>
> +  </properties>
> +
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-dependency-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>unpack-dependencies</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>unpack-dependencies</goal>
> +            </goals>
> +            <configuration>
> +              <includes>**</includes>
> +              <excludes>**/MANIFEST.MF,javax/**</excludes>
> +              <outputDirectory>${project.build.directory}/classes</outputDirectory>
> +              <overWriteReleases>false</overWriteReleases>
> +              <overWriteSnapshots>true</overWriteSnapshots>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins
> +        </groupId>
> +        <artifactId>maven-jar-plugin</artifactId>
> +        <executions>
> +          <execution>
> +            <id>package</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>jar</goal>
> +            </goals>
> +            <configuration>
> +              <archive>
> +                <manifest>
> +                </manifest>
> +                <manifestEntries>
> +                  <mode>development</mode>
> +                  <url>http://eclipse.org/jetty</url>
> +                  <Built-By>${user.name}</Built-By>
> +                  <package>org.eclipse.jetty</package>
> +                  <Bundle-License>http://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk/NOTICE.txt</Bundle-License>
> +                  <Bundle-Name>Jetty HTTP Server</Bundle-Name>
> +                </manifestEntries>
> +              </archive>
> +            </configuration>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
> +  <dependencies>
> +    <dependency>
> +      <groupId>org.eclipse.jetty</groupId>
> +      <artifactId>jetty-webapp</artifactId>
> +      <version>${jetty-version}</version>
> +      <scope>provided</scope>
> +      <exclusions>
> +        <exclusion>
> +          <groupId>javax.servlet</groupId>
> +          <artifactId>servlet-api</artifactId>
> +        </exclusion>
> +      </exclusions>
> +    </dependency>
> +    <dependency>
> +      <groupId>javax.servlet</groupId>
> +      <artifactId>servlet-api</artifactId>
> +      <scope>compile</scope>
> +    </dependency>
> +  </dependencies>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/jetty-webapp/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
> Added: jetty/trunk/jetty-aggregate/pom.xml
> ===================================================================
> --- jetty/trunk/jetty-aggregate/pom.xml                         (rev 0)
> +++ jetty/trunk/jetty-aggregate/pom.xml 2009-05-27 03:24:11 UTC (rev 302)
> @@ -0,0 +1,24 @@
> +<?xml version="1.0" encoding="UTF-8"?>
> +<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</groupId>
> +    <artifactId>jetty-project</artifactId>
> +    <version>7.0.0.M3-SNAPSHOT</version>
> +  </parent>
> +  <groupId>org.eclipse.jetty.aggregate</groupId>
> +  <artifactId>jetty-aggregate-project</artifactId>
> +  <name>Jetty :: Aggregate Project</name>
> +  <packaging>pom</packaging>
> +  <build>
> +  </build>
> +  <modules>
> +    <module>jetty-server</module>
> +    <module>jetty-client</module>
> +    <module>jetty-servlet</module>
> +    <module>jetty-webapp</module>
> +    <module>jetty-plus</module>
> +    <module>jetty-all-server</module>
> +    <module>jetty-all</module>
> +  </modules>
> +</project>
>
>
> Property changes on: jetty/trunk/jetty-aggregate/pom.xml
> ___________________________________________________________________
> Name: svn:eol-style
>   + native
>
> Modified: jetty/trunk/pom.xml
> ===================================================================
> --- jetty/trunk/pom.xml 2009-05-27 02:59:20 UTC (rev 301)
> +++ jetty/trunk/pom.xml 2009-05-27 03:24:11 UTC (rev 302)
> @@ -141,6 +141,7 @@
>     <module>jetty-start</module>
>     <module>test-jetty-servlet</module>
>     <module>test-jetty-webapp</module>
> +    <module>jetty-aggregate</module>
>     <module>example-jetty-embedded</module>
>     <module>jetty-distribution</module>
>   </modules>
>
> _______________________________________________
> jetty-commit mailing list
> jetty-commit@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/jetty-commit
>


Back to the top