Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Re: [jetty-commit] r285 - in jetty/trunk: . distribution start/src/main/resources/org/eclipse/jetty/start

I really don't like this change here...

We have already published the distribution and start jars into the
maven central repository as jetty-distribution and jetty-start, and
the jetty-start is being renamed start.jar and placed in the usual
place in the distribution so I don't see the value in

1) changing this structure in svn
2) further confusing the o.e.jetty locations in the maven svn repo
with duplicated jetty-distribution and distribution (also jetty-start
and start) directories...

We need to confirm this is what we want to do before we push another
release with these changes..

jesse

--
jesse mcconnell
jesse.mcconnell@xxxxxxxxx



On Mon, May 25, 2009 at 20:44,  <genie@xxxxxxxxxxx> wrote:
> Author: gwilkins
> Date: 2009-05-25 21:44:57 -0400 (Mon, 25 May 2009)
> New Revision: 285
>
> Modified:
>   jetty/trunk/README.txt
>   jetty/trunk/distribution/pom.xml
>   jetty/trunk/start/src/main/resources/org/eclipse/jetty/start/start.config
> Log:
> renamed non runtime modules
>
> Modified: jetty/trunk/README.txt
> ===================================================================
> --- jetty/trunk/README.txt      2009-05-26 01:18:10 UTC (rev 284)
> +++ jetty/trunk/README.txt      2009-05-26 01:44:57 UTC (rev 285)
> @@ -53,10 +53,10 @@
>
>  To run with JSP support
>
> -  java -jar start.jar OPTIONS=Server,deploy,jsp
> +  java -jar start.jar OPTIONS=Server,jsp
>
>  To run with JMX support
>
> -  java -jar start.jar OPTIONS=Server,deploy,jmx etc/jetty-jmx.xml etc/jetty.xml
> +  java -jar start.jar OPTIONS=Server,jmx etc/jetty-jmx.xml etc/jetty.xml
>
>
>
> Modified: jetty/trunk/distribution/pom.xml
> ===================================================================
> --- jetty/trunk/distribution/pom.xml    2009-05-26 01:18:10 UTC (rev 284)
> +++ jetty/trunk/distribution/pom.xml    2009-05-26 01:44:57 UTC (rev 285)
> @@ -5,11 +5,11 @@
>     <artifactId>jetty-project</artifactId>
>     <version>7.0.0.M3-SNAPSHOT</version>
>   </parent>
> -  <artifactId>jetty-distribution</artifactId>
> -  <name>Jetty :: Distribution Assemblies</name>
> +  <artifactId>distribution</artifactId>
> +  <name>Distribution Assemblies</name>
>   <packaging>pom</packaging>
>   <properties>
> -    <assembly.directory>target/assembly-prep</assembly.directory>
> +    <assembly.directory>target/distribution</assembly.directory>
>     <slf4j-version>1.5.6</slf4j-version>
>     <jsp-2-1-version>9.1.1.B60.25.p1</jsp-2-1-version>
>   </properties>
>
> Modified: jetty/trunk/start/src/main/resources/org/eclipse/jetty/start/start.config
> ===================================================================
> --- jetty/trunk/start/src/main/resources/org/eclipse/jetty/start/start.config   2009-05-26 01:18:10 UTC (rev 284)
> +++ jetty/trunk/start/src/main/resources/org/eclipse/jetty/start/start.config   2009-05-26 01:44:57 UTC (rev 285)
> @@ -108,10 +108,10 @@
>  [Server,All,webapp,default]
>  $(jetty.home)/lib/jetty-webapp-$(version).jar                                           ! available org.eclipse.jetty.webapp.WebAppContext
>
> -[All,deploy,default]
> +[Server,All,deploy,default]
>  $(jetty.home)/lib/jetty-deploy-$(version).jar                                           ! available org.eclipse.jetty.deploy.ContextDeployer
>
> -[All,servlets,default]
> +[Server,All,servlets,default]
>  $(jetty.home)/lib/jetty-servlets-$(version).jar                                         ! available org.eclipse.jetty.servlets.WelcomeFilter
>
>  [All,rewrite]
>
> _______________________________________________
> jetty-commit mailing list
> jetty-commit@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/jetty-commit
>


Back to the top