Is it possible to upgrade embedded Jetty to a newer version?

View: New views
9 Messages — Rating Filter:   Alert me  

Is it possible to upgrade embedded Jetty to a newer version?

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems hardcoded to 6.1.1rc1.

Thanks,

Matt

Re: Is it possible to upgrade embedded Jetty to a newer version?

by S. Ali Tokmen-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello

What do you mean by "hardcoded"? Normally, CARGO is not linked with any
Jetty version. Moreover, the "samples" test cases are run on 6.1.14
(which is not 6.1.1.rc1).

Thanks

S. Ali Tokmen
savas-ali.tokmen@...

Office: +33 4 76 29 76 19
GSM:    +33 66 43 00 555

Bull, Architect of an Open World TM
http://www.bull.com



mraible a écrit :
> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems
> hardcoded to 6.1.1rc1.
>
> Thanks,
>
> Matt
>  


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Is it possible to upgrade embedded Jetty to a newer version?

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

If it's not hard-coded, how do I upgrade it in the following plugin configuration?

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.0</version>
    <configuration>
        <container>
            <containerId>jetty6x</containerId>
            <type>embedded</type>
        </container>
    </configuration>
    <executions>
        <execution>
            <id>start-container</id>
            <phase>pre-integration-test</phase>
            <goals>
                <goal>start</goal>
            </goals>
        </execution>
        <execution>
            <id>stop-container</id>
            <phase>post-integration-test</phase>
            <goals>
                <goal>stop</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Thanks,

Matt

S. Ali Tokmen-4 wrote:
Hello

What do you mean by "hardcoded"? Normally, CARGO is not linked with any
Jetty version. Moreover, the "samples" test cases are run on 6.1.14
(which is not 6.1.1.rc1).

Thanks

S. Ali Tokmen
savas-ali.tokmen@bull.net

Office: +33 4 76 29 76 19
GSM:    +33 66 43 00 555

Bull, Architect of an Open World TM
http://www.bull.com



mraible a écrit :
> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems
> hardcoded to 6.1.1rc1.
>
> Thanks,
>
> Matt
>  


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Re: Is it possible to upgrade embedded Jetty to a newer version?

by Shailesh Patel :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I was just looking at this yesterday, not specifically for jetty  
though, but it should work for your needs Matt:

http://cargo.codehaus.org/Starting+and+stopping+a+container

- Shailesh
On Apr 24, 2009, at 12:12 PM, mraible wrote:

>
> If it's not hard-coded, how do I upgrade it in the following plugin
> configuration?
>
> <plugin>
>    <groupId>org.codehaus.cargo</groupId>
>    <artifactId>cargo-maven2-plugin</artifactId>
>    <version>1.0</version>
>    <configuration>
>        <container>
>            <containerId>jetty6x</containerId>
>            <type>embedded</type>
>        </container>
>    </configuration>
>    <executions>
>        <execution>
>            <id>start-container</id>
>            <phase>pre-integration-test</phase>
>            <goals>
>                <goal>start</goal>
>            </goals>
>        </execution>
>        <execution>
>            <id>stop-container</id>
>            <phase>post-integration-test</phase>
>            <goals>
>                <goal>stop</goal>
>            </goals>
>        </execution>
>    </executions>
> </plugin>
>
> Thanks,
>
> Matt
>
>
> S. Ali Tokmen-4 wrote:
>>
>> Hello
>>
>> What do you mean by "hardcoded"? Normally, CARGO is not linked with  
>> any
>> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
>> (which is not 6.1.1.rc1).
>>
>> Thanks
>>
>> S. Ali Tokmen
>> savas-ali.tokmen@...
>>
>> Office: +33 4 76 29 76 19
>> GSM:    +33 66 43 00 555
>>
>> Bull, Architect of an Open World TM
>> http://www.bull.com
>>
>>
>>
>> mraible a écrit :
>>> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems
>>> hardcoded to 6.1.1rc1.
>>>
>>> Thanks,
>>>
>>> Matt
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Is-it-possible-to-upgrade-embedded-Jetty-to-a-newer-version--tp23218641p23219799.html
> Sent from the Cargo - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Is it possible to upgrade embedded Jetty to a newer version?

by Shailesh Patel :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Specifically, take at look at the zipUrlInstaller configuration under  
the section titled:  "Example of a full-fledged m2 configuration"


On Apr 24, 2009, at 12:25 PM, Shailesh Patel wrote:

> I was just looking at this yesterday, not specifically for jetty  
> though, but it should work for your needs Matt:
>
> http://cargo.codehaus.org/Starting+and+stopping+a+container
>
> - Shailesh
> On Apr 24, 2009, at 12:12 PM, mraible wrote:
>
>>
>> If it's not hard-coded, how do I upgrade it in the following plugin
>> configuration?
>>
>> <plugin>
>>   <groupId>org.codehaus.cargo</groupId>
>>   <artifactId>cargo-maven2-plugin</artifactId>
>>   <version>1.0</version>
>>   <configuration>
>>       <container>
>>           <containerId>jetty6x</containerId>
>>           <type>embedded</type>
>>       </container>
>>   </configuration>
>>   <executions>
>>       <execution>
>>           <id>start-container</id>
>>           <phase>pre-integration-test</phase>
>>           <goals>
>>               <goal>start</goal>
>>           </goals>
>>       </execution>
>>       <execution>
>>           <id>stop-container</id>
>>           <phase>post-integration-test</phase>
>>           <goals>
>>               <goal>stop</goal>
>>           </goals>
>>       </execution>
>>   </executions>
>> </plugin>
>>
>> Thanks,
>>
>> Matt
>>
>>
>> S. Ali Tokmen-4 wrote:
>>>
>>> Hello
>>>
>>> What do you mean by "hardcoded"? Normally, CARGO is not linked  
>>> with any
>>> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
>>> (which is not 6.1.1.rc1).
>>>
>>> Thanks
>>>
>>> S. Ali Tokmen
>>> savas-ali.tokmen@...
>>>
>>> Office: +33 4 76 29 76 19
>>> GSM:    +33 66 43 00 555
>>>
>>> Bull, Architect of an Open World TM
>>> http://www.bull.com
>>>
>>>
>>>
>>> mraible a écrit :
>>>> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It  
>>>> seems
>>>> hardcoded to 6.1.1rc1.
>>>>
>>>> Thanks,
>>>>
>>>> Matt
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>>
>>
>> --
>> View this message in context: http://www.nabble.com/Is-it-possible-to-upgrade-embedded-Jetty-to-a-newer-version--tp23218641p23219799.html
>> Sent from the Cargo - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Is it possible to upgrade embedded Jetty to a newer version?

by Matt Wringe :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, 2009-04-24 at 18:08 +0200, S. Ali Tokmen wrote:
> Hello
>
> What do you mean by "hardcoded"? Normally, CARGO is not linked with any
> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
> (which is not 6.1.1.rc1).

The embedded jetty is completely hardcoded on both the version and jars
being added to its classpath.

> Thanks
>
> S. Ali Tokmen
> savas-ali.tokmen@...
>
> Office: +33 4 76 29 76 19
> GSM:    +33 66 43 00 555
>
> Bull, Architect of an Open World TM
> http://www.bull.com
>
>
>
> mraible a écrit :
> > Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems
> > hardcoded to 6.1.1rc1.
> >
> > Thanks,
> >
> > Matt
> >  
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Is it possible to upgrade embedded Jetty to a newer version?

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Do you think it's possible to change this in a future release?

Matt Wringe wrote:
On Fri, 2009-04-24 at 18:08 +0200, S. Ali Tokmen wrote:
> Hello
>
> What do you mean by "hardcoded"? Normally, CARGO is not linked with any
> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
> (which is not 6.1.1.rc1).

The embedded jetty is completely hardcoded on both the version and jars
being added to its classpath.

> Thanks
>
> S. Ali Tokmen
> savas-ali.tokmen@bull.net
>
> Office: +33 4 76 29 76 19
> GSM:    +33 66 43 00 555
>
> Bull, Architect of an Open World TM
> http://www.bull.com
>
>
>
> mraible a écrit :
> > Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It seems
> > hardcoded to 6.1.1rc1.
> >
> > Thanks,
> >
> > Matt
> >  
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Re: Is it possible to upgrade embedded Jetty to a newer version?

by mraible :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

That worked - thanks!

Matt

Shailesh Patel wrote:
Specifically, take at look at the zipUrlInstaller configuration under  
the section titled:  "Example of a full-fledged m2 configuration"


On Apr 24, 2009, at 12:25 PM, Shailesh Patel wrote:

> I was just looking at this yesterday, not specifically for jetty  
> though, but it should work for your needs Matt:
>
> http://cargo.codehaus.org/Starting+and+stopping+a+container
>
> - Shailesh
> On Apr 24, 2009, at 12:12 PM, mraible wrote:
>
>>
>> If it's not hard-coded, how do I upgrade it in the following plugin
>> configuration?
>>
>> <plugin>
>>   <groupId>org.codehaus.cargo</groupId>
>>   <artifactId>cargo-maven2-plugin</artifactId>
>>   <version>1.0</version>
>>   <configuration>
>>       <container>
>>           <containerId>jetty6x</containerId>
>>           <type>embedded</type>
>>       </container>
>>   </configuration>
>>   <executions>
>>       <execution>
>>           <id>start-container</id>
>>           <phase>pre-integration-test</phase>
>>           <goals>
>>               <goal>start</goal>
>>           </goals>
>>       </execution>
>>       <execution>
>>           <id>stop-container</id>
>>           <phase>post-integration-test</phase>
>>           <goals>
>>               <goal>stop</goal>
>>           </goals>
>>       </execution>
>>   </executions>
>> </plugin>
>>
>> Thanks,
>>
>> Matt
>>
>>
>> S. Ali Tokmen-4 wrote:
>>>
>>> Hello
>>>
>>> What do you mean by "hardcoded"? Normally, CARGO is not linked  
>>> with any
>>> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
>>> (which is not 6.1.1.rc1).
>>>
>>> Thanks
>>>
>>> S. Ali Tokmen
>>> savas-ali.tokmen@bull.net
>>>
>>> Office: +33 4 76 29 76 19
>>> GSM:    +33 66 43 00 555
>>>
>>> Bull, Architect of an Open World TM
>>> http://www.bull.com
>>>
>>>
>>>
>>> mraible a écrit :
>>>> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It  
>>>> seems
>>>> hardcoded to 6.1.1rc1.
>>>>
>>>> Thanks,
>>>>
>>>> Matt
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>>
>>
>> --
>> View this message in context: http://www.nabble.com/Is-it-possible-to-upgrade-embedded-Jetty-to-a-newer-version--tp23218641p23219799.html
>> Sent from the Cargo - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Re: Is it possible to upgrade embedded Jetty to a newer version?

by S. Ali Tokmen-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Great :)

S. Ali Tokmen
savas-ali.tokmen@...

Office: +33 4 76 29 76 19
GSM:    +33 66 43 00 555

Bull, Architect of an Open World TM
http://www.bull.com



mraible a écrit :

> That worked - thanks!
>
> Matt
>
>
> Shailesh Patel wrote:
>  
>> Specifically, take at look at the zipUrlInstaller configuration under  
>> the section titled:  "Example of a full-fledged m2 configuration"
>>
>>
>> On Apr 24, 2009, at 12:25 PM, Shailesh Patel wrote:
>>
>>    
>>> I was just looking at this yesterday, not specifically for jetty  
>>> though, but it should work for your needs Matt:
>>>
>>> http://cargo.codehaus.org/Starting+and+stopping+a+container
>>>
>>> - Shailesh
>>> On Apr 24, 2009, at 12:12 PM, mraible wrote:
>>>
>>>      
>>>> If it's not hard-coded, how do I upgrade it in the following plugin
>>>> configuration?
>>>>
>>>> <plugin>
>>>>   <groupId>org.codehaus.cargo</groupId>
>>>>   <artifactId>cargo-maven2-plugin</artifactId>
>>>>   <version>1.0</version>
>>>>   <configuration>
>>>>       <container>
>>>>           <containerId>jetty6x</containerId>
>>>>           <type>embedded</type>
>>>>       </container>
>>>>   </configuration>
>>>>   <executions>
>>>>       <execution>
>>>>           <id>start-container</id>
>>>>           <phase>pre-integration-test</phase>
>>>>           <goals>
>>>>               <goal>start</goal>
>>>>           </goals>
>>>>       </execution>
>>>>       <execution>
>>>>           <id>stop-container</id>
>>>>           <phase>post-integration-test</phase>
>>>>           <goals>
>>>>               <goal>stop</goal>
>>>>           </goals>
>>>>       </execution>
>>>>   </executions>
>>>> </plugin>
>>>>
>>>> Thanks,
>>>>
>>>> Matt
>>>>
>>>>
>>>> S. Ali Tokmen-4 wrote:
>>>>        
>>>>> Hello
>>>>>
>>>>> What do you mean by "hardcoded"? Normally, CARGO is not linked  
>>>>> with any
>>>>> Jetty version. Moreover, the "samples" test cases are run on 6.1.14
>>>>> (which is not 6.1.1.rc1).
>>>>>
>>>>> Thanks
>>>>>
>>>>> S. Ali Tokmen
>>>>> savas-ali.tokmen@...
>>>>>
>>>>> Office: +33 4 76 29 76 19
>>>>> GSM:    +33 66 43 00 555
>>>>>
>>>>> Bull, Architect of an Open World TM
>>>>> http://www.bull.com
>>>>>
>>>>>
>>>>>
>>>>> mraible a écrit :
>>>>>          
>>>>>> Is it possible to upgrade Cargo's embedded Jetty to 6.1.14? It  
>>>>>> seems
>>>>>> hardcoded to 6.1.1rc1.
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> Matt
>>>>>>
>>>>>>            
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe from this list, please visit:
>>>>>
>>>>>   http://xircles.codehaus.org/manage_email
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>          
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/Is-it-possible-to-upgrade-embedded-Jetty-to-a-newer-version--tp23218641p23219799.html
>>>> Sent from the Cargo - User mailing list archive at Nabble.com.
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>   http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>>        
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>     http://xircles.codehaus.org/manage_email
>>
>>
>>
>>
>>    
>
>  


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email