You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by danjee <da...@asf.ro> on 2014/02/05 07:52:13 UTC

Re: Wicket-bootstrap Bootstrap 3 support

Hello Michael,
First of all thank you for the wonderful job you're doing.
Current release downloads bootstrap-3.0.3.jar. Is there a way to force this
wicket integration to  download the latest webjar for bootstrap? A solution
as I see it is to alter the pom.xml to add version for the artifact in your
release but I do not want to do that.

Latest webjar for bootstrap supports bootstrap 3.1.0

https://github.com/webjars/bootstrap/blob/master/pom.xml

Thanks in advance,

Daniel Jipa

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664170.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


RE: Wicket-bootstrap Bootstrap 3 support

Posted by "Richter, Marvin" <Ma...@jestadigital.com>.
There might be breaking changes with Modals. Not sure if you provide support for the remote function of the Bootstrap Modals.

Marvin Richter


-----Original Message-----
From: Martin Grigorov [mailto:mgrigorov@apache.org] 
Sent: Wednesday, February 05, 2014 8:54 AM
To: users@wicket.apache.org
Subject: Re: Wicket-bootstrap Bootstrap 3 support

Right, the correct way is to use Maven for this.
Another way is via IBootstrapSettings#setCssResourceReference() -
https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/master/bootstrap-core/src/main/java/de/agilecoders/wicket/core/settings/IBootstrapSettings.java?source=c#L53

We will upgrade to 3.1.0 soon. We have to see whether there are breaking migration changes first.

Martin Grigorov
Wicket Training and Consulting


On Wed, Feb 5, 2014 at 8:41 AM, Richter, Marvin < Marvin.Richter@jestadigital.com> wrote:

> In Maven you can just exclude transitive dependecies from a dependency 
> and add the version you prefer. But be aware of possible version conflicts.
>
> <dependency>
>     <groupId>de.agilecoders.wicket</groupId>
>     <artifactId>wicket-bootstrap-core</artifactId>
>     <version>${wicket.bootstrap.version}</version>
>     <exclusions>
>         <exclusion>
>             <artifactId>org.webjars</artifactId>
>             <groupId>bootstrap</groupId>
>         </exclusion>
>     </exclusions>
> </dependency>
> <dependency>
>     <groupId>org.webjars</groupId>
>     <artifactId>bootstrap</artifactId>
>     <version>3.1.0</version>
> </dependency>
>
> Best,
> Marvin
>
> -----Original Message-----
> From: danjee [mailto:daniel.jipa@asf.ro]
> Sent: Wednesday, February 05, 2014 8:32 AM
> To: users@wicket.apache.org
> Subject: Re: Wicket-bootstrap Bootstrap 3 support
>
> On 02/05/2014 09:13 AM, danjee [via Apache Wicket] wrote:
> > I found out that I could put the dependency in my pom.xml and no 
> > need to alter the one from your release.
> > Sorry for the confusion, I am pretty new to maven.
> > Best regards,
> > Daniel
> >
> > --------------------------------------------------------------------
> > --
> > -- If you reply to this email, your message will be added to the 
> > discussion below:
> > http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstra
> > p-
> > 3-support-tp4661497p4664171.html
> >
> > To unsubscribe from Wicket-bootstrap Bootstrap 3 support, click here 
> > <
> http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?ma
> cro=unsubscribe_by_code&node=4661497&code=ZGFuaWVsLmppcGFAYXNmLnJvfDQ2
> NjE0OTd8LTIwNDU1Njg5NTY=
> >.
> > NAML
> > 
> ><http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?
> >m  
> >acro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.n
> >a
> > 
> >ml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace
> >-  
> >nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers
> >%  
> >21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_insta
> >n
> > t_email%21nabble%3Aemail.naml>
> >
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-
> 3-support-tp4661497p4664173.html Sent from the Users forum mailing 
> list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Wicket-bootstrap Bootstrap 3 support

Posted by Martin Grigorov <mg...@apache.org>.
Right, the correct way is to use Maven for this.
Another way is via IBootstrapSettings#setCssResourceReference() -
https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/master/bootstrap-core/src/main/java/de/agilecoders/wicket/core/settings/IBootstrapSettings.java?source=c#L53

We will upgrade to 3.1.0 soon. We have to see whether there are breaking
migration changes first.

Martin Grigorov
Wicket Training and Consulting


On Wed, Feb 5, 2014 at 8:41 AM, Richter, Marvin <
Marvin.Richter@jestadigital.com> wrote:

> In Maven you can just exclude transitive dependecies from a dependency and
> add the version you prefer. But be aware of possible version conflicts.
>
> <dependency>
>     <groupId>de.agilecoders.wicket</groupId>
>     <artifactId>wicket-bootstrap-core</artifactId>
>     <version>${wicket.bootstrap.version}</version>
>     <exclusions>
>         <exclusion>
>             <artifactId>org.webjars</artifactId>
>             <groupId>bootstrap</groupId>
>         </exclusion>
>     </exclusions>
> </dependency>
> <dependency>
>     <groupId>org.webjars</groupId>
>     <artifactId>bootstrap</artifactId>
>     <version>3.1.0</version>
> </dependency>
>
> Best,
> Marvin
>
> -----Original Message-----
> From: danjee [mailto:daniel.jipa@asf.ro]
> Sent: Wednesday, February 05, 2014 8:32 AM
> To: users@wicket.apache.org
> Subject: Re: Wicket-bootstrap Bootstrap 3 support
>
> On 02/05/2014 09:13 AM, danjee [via Apache Wicket] wrote:
> > I found out that I could put the dependency in my pom.xml and no need
> > to alter the one from your release.
> > Sorry for the confusion, I am pretty new to maven.
> > Best regards,
> > Daniel
> >
> > ----------------------------------------------------------------------
> > -- If you reply to this email, your message will be added to the
> > discussion below:
> > http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-
> > 3-support-tp4661497p4664171.html
> >
> > To unsubscribe from Wicket-bootstrap Bootstrap 3 support, click here
> > <
> http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4661497&code=ZGFuaWVsLmppcGFAYXNmLnJvfDQ2NjE0OTd8LTIwNDU1Njg5NTY=
> >.
> > NAML
> > <http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?m
> > acro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.na
> > ml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-
> > nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%
> > 21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instan
> > t_email%21nabble%3Aemail.naml>
> >
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664173.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

RE: Wicket-bootstrap Bootstrap 3 support

Posted by "Richter, Marvin" <Ma...@jestadigital.com>.
In Maven you can just exclude transitive dependecies from a dependency and add the version you prefer. But be aware of possible version conflicts.

<dependency>
    <groupId>de.agilecoders.wicket</groupId>
    <artifactId>wicket-bootstrap-core</artifactId>
    <version>${wicket.bootstrap.version}</version>
    <exclusions>
        <exclusion>
            <artifactId>org.webjars</artifactId>
            <groupId>bootstrap</groupId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.webjars</groupId>
    <artifactId>bootstrap</artifactId>
    <version>3.1.0</version>
</dependency>

Best,
Marvin

-----Original Message-----
From: danjee [mailto:daniel.jipa@asf.ro] 
Sent: Wednesday, February 05, 2014 8:32 AM
To: users@wicket.apache.org
Subject: Re: Wicket-bootstrap Bootstrap 3 support

On 02/05/2014 09:13 AM, danjee [via Apache Wicket] wrote:
> I found out that I could put the dependency in my pom.xml and no need 
> to alter the one from your release.
> Sorry for the confusion, I am pretty new to maven.
> Best regards,
> Daniel
>
> ----------------------------------------------------------------------
> -- If you reply to this email, your message will be added to the 
> discussion below:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-
> 3-support-tp4661497p4664171.html
>
> To unsubscribe from Wicket-bootstrap Bootstrap 3 support, click here 
> <http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4661497&code=ZGFuaWVsLmppcGFAYXNmLnJvfDQ2NjE0OTd8LTIwNDU1Njg5NTY=>.
> NAML
> <http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?m
> acro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.na
> ml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-
> nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%
> 21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instan
> t_email%21nabble%3Aemail.naml>
>



--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664173.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket-bootstrap Bootstrap 3 support

Posted by danjee <da...@asf.ro>.
On 02/05/2014 09:13 AM, danjee [via Apache Wicket] wrote:
> I found out that I could put the dependency in my pom.xml and no need 
> to alter the one from your release.
> Sorry for the confusion, I am pretty new to maven.
> Best regards,
> Daniel
>
> ------------------------------------------------------------------------
> If you reply to this email, your message will be added to the 
> discussion below:
> http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664171.html 
>
> To unsubscribe from Wicket-bootstrap Bootstrap 3 support, click here 
> <http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4661497&code=ZGFuaWVsLmppcGFAYXNmLnJvfDQ2NjE0OTd8LTIwNDU1Njg5NTY=>.
> NAML 
> <http://apache-wicket.1842946.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> 
>



--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664173.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket-bootstrap Bootstrap 3 support

Posted by danjee <da...@asf.ro>.
I found out that I could put the dependency in my pom.xml and no need to
alter the one from your release.
Sorry for the confusion, I am pretty new to maven.
Best regards,
Daniel

--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-bootstrap-Bootstrap-3-support-tp4661497p4664171.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org