Skip to content

Commit

Permalink
Reverting bootstrap webjar version from 4.6.0-1 to 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhesse committed Apr 21, 2021
1 parent e4a7266 commit e3b5286
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
* @author Michael Haitz <michael.haitz@agilecoders.de>
*/
public interface IBootstrapSettings {

/**
* The version of Bootstrap for Webjars
*/
String BOOTSTRAP_WEBJARS_VERSION = "4.6.0-1";

/**
* The version of Bootstrap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void cdnResources() {
CharSequence url = tester().getRequestCycle().urlFor(jsResourceReference, null);
assertThat(url.toString(), is(equalTo(
String.format("./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/%s/js/bootstrap.js",
IBootstrapSettings.BOOTSTRAP_WEBJARS_VERSION))));
IBootstrapSettings.VERSION))));

settings.useCdnResources(true);
jsResourceReference = settings.getJsResourceReference();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<maven.java.source>${java.version}</maven.java.source>
<maven.java.target>${java.version}</maven.java.target>

<bootstrap.version>4.6.0-1</bootstrap.version>
<bootstrap.version>4.6.0</bootstrap.version>
<wicket-webjars.version>2.0.19</wicket-webjars.version>
<wicket-jquery-selectors.version>2.0.10</wicket-jquery-selectors.version>

Expand Down

0 comments on commit e3b5286

Please sign in to comment.