Skip to content

Commit 4674e25

Browse files
committed
Cleanup Wicket dependencies
1 parent 11d615c commit 4674e25

File tree

13 files changed

+39
-61
lines changed

13 files changed

+39
-61
lines changed

client/idrepo/common-ui/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,24 +71,24 @@ under the License.
7171
<artifactId>wicket-native-websocket-javax</artifactId>
7272
</dependency>
7373
<dependency>
74-
<groupId>com.googlecode.wicket-jquery-ui</groupId>
75-
<artifactId>wicket-jquery-ui</artifactId>
74+
<groupId>org.wicketstuff</groupId>
75+
<artifactId>wicketstuff-jquery-ui</artifactId>
7676
</dependency>
7777
<dependency>
78-
<groupId>com.googlecode.wicket-jquery-ui</groupId>
79-
<artifactId>wicket-jquery-ui-theme-base</artifactId>
78+
<groupId>org.wicketstuff</groupId>
79+
<artifactId>wicketstuff-jquery-ui-theme-base</artifactId>
8080
</dependency>
8181
<dependency>
82-
<groupId>com.googlecode.wicket-jquery-ui</groupId>
83-
<artifactId>wicket-kendo-ui</artifactId>
82+
<groupId>org.wicketstuff</groupId>
83+
<artifactId>wicketstuff-kendo-ui</artifactId>
8484
</dependency>
8585
<dependency>
86-
<groupId>com.googlecode.wicket-jquery-ui</groupId>
87-
<artifactId>wicket-kendo-ui-culture</artifactId>
86+
<groupId>org.wicketstuff</groupId>
87+
<artifactId>wicketstuff-kendo-ui-culture</artifactId>
8888
</dependency>
8989
<dependency>
90-
<groupId>com.googlecode.wicket-jquery-ui</groupId>
91-
<artifactId>wicket-kendo-ui-theme-bootstrap</artifactId>
90+
<groupId>org.wicketstuff</groupId>
91+
<artifactId>wicketstuff-kendo-ui-theme-bootstrap</artifactId>
9292
</dependency>
9393
<dependency>
9494
<groupId>de.agilecoders.wicket</groupId>

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/BaseLogin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons;
2020

21-
import com.googlecode.wicket.kendo.ui.widget.notification.Notification;
2221
import jakarta.ws.rs.NotAuthorizedException;
2322
import jakarta.ws.rs.core.HttpHeaders;
2423
import java.util.ArrayList;
@@ -55,6 +54,7 @@
5554
import org.apache.wicket.spring.injection.annot.SpringBean;
5655
import org.slf4j.Logger;
5756
import org.slf4j.LoggerFactory;
57+
import org.wicketstuff.kendo.ui.widget.notification.Notification;
5858

5959
public abstract class BaseLogin extends WebPage {
6060

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/StyledNotificationBehavior.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons;
2020

21-
import com.googlecode.wicket.jquery.core.Options;
22-
import com.googlecode.wicket.kendo.ui.widget.notification.Notification;
23-
import com.googlecode.wicket.kendo.ui.widget.notification.NotificationBehavior;
2421
import java.io.Serializable;
2522
import org.apache.wicket.core.request.handler.IPartialPageRequestHandler;
23+
import org.wicketstuff.jquery.core.Options;
24+
import org.wicketstuff.kendo.ui.widget.notification.Notification;
25+
import org.wicketstuff.kendo.ui.widget.notification.NotificationBehavior;
2626

2727
public class StyledNotificationBehavior extends NotificationBehavior {
2828

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxDateFieldPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons.markup.html.form;
2020

21-
import com.googlecode.wicket.kendo.ui.form.datetime.AjaxDatePicker;
2221
import java.util.Date;
2322
import org.apache.commons.lang3.time.FastDateFormat;
2423
import org.apache.wicket.model.IModel;
2524
import org.apache.wicket.model.Model;
2625
import org.apache.wicket.model.ResourceModel;
26+
import org.wicketstuff.kendo.ui.form.datetime.AjaxDatePicker;
2727

2828
public class AjaxDateFieldPanel extends DateFieldPanel {
2929

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxDateTimeFieldPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons.markup.html.form;
2020

21-
import com.googlecode.wicket.kendo.ui.form.datetime.AjaxDateTimePicker;
2221
import java.text.DateFormat;
2322
import java.util.Date;
2423
import java.util.Locale;
@@ -27,6 +26,7 @@
2726
import org.apache.wicket.model.IModel;
2827
import org.apache.wicket.model.Model;
2928
import org.apache.wicket.model.ResourceModel;
29+
import org.wicketstuff.kendo.ui.form.datetime.AjaxDateTimePicker;
3030

3131
public class AjaxDateTimeFieldPanel extends DateFieldPanel {
3232

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxNumberFieldPanel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons.markup.html.form;
2020

21-
import com.googlecode.wicket.jquery.core.Options;
22-
import com.googlecode.wicket.kendo.ui.form.NumberTextField;
23-
import com.googlecode.wicket.kendo.ui.resource.KendoCultureResourceReference;
2421
import java.io.Serializable;
2522
import java.util.List;
2623
import java.util.Optional;
@@ -37,6 +34,9 @@
3734
import org.apache.wicket.model.IModel;
3835
import org.apache.wicket.model.Model;
3936
import org.apache.wicket.model.ResourceModel;
37+
import org.wicketstuff.jquery.core.Options;
38+
import org.wicketstuff.kendo.ui.form.NumberTextField;
39+
import org.wicketstuff.kendo.ui.resource.KendoCultureResourceReference;
4040

4141
public final class AjaxNumberFieldPanel<T extends Number & Comparable<T>> extends FieldPanel<T> {
4242

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/DateFieldPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons.markup.html.form;
2020

21-
import com.googlecode.wicket.kendo.ui.resource.KendoCultureResourceReference;
2221
import java.io.Serializable;
2322
import java.text.ParseException;
2423
import java.util.Date;
@@ -34,6 +33,7 @@
3433
import org.apache.wicket.model.IModel;
3534
import org.apache.wicket.model.Model;
3635
import org.springframework.util.StringUtils;
36+
import org.wicketstuff.kendo.ui.resource.KendoCultureResourceReference;
3737

3838
public abstract class DateFieldPanel extends FieldPanel<Date> {
3939

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/panels/NotificationPanel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
*/
1919
package org.apache.syncope.client.ui.commons.panels;
2020

21-
import com.googlecode.wicket.jquery.core.Options;
22-
import com.googlecode.wicket.kendo.ui.widget.notification.Notification;
2321
import java.util.List;
2422
import org.apache.syncope.client.ui.commons.Constants;
2523
import org.apache.syncope.client.ui.commons.StyledNotificationBehavior;
@@ -30,6 +28,8 @@
3028
import org.apache.wicket.feedback.IFeedback;
3129
import org.apache.wicket.markup.html.panel.Panel;
3230
import org.apache.wicket.model.IModel;
31+
import org.wicketstuff.jquery.core.Options;
32+
import org.wicketstuff.kendo.ui.widget.notification.Notification;
3333

3434
public class NotificationPanel extends Panel
3535
implements IFeedback, IGenericComponent<List<FeedbackMessage>, NotificationPanel> {
@@ -118,5 +118,5 @@ public List<FeedbackMessage> getModelObject() {
118118
public String getNotificationMarkupId() {
119119
return this.notification.getMarkupId();
120120
}
121-
121+
122122
}

client/idrepo/enduser/src/main/java/org/apache/syncope/client/enduser/pages/BaseReauthPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
*/
1919
package org.apache.syncope.client.enduser.pages;
2020

21-
import com.googlecode.wicket.kendo.ui.widget.notification.Notification;
2221
import org.apache.syncope.client.enduser.SyncopeEnduserSession;
2322
import org.apache.syncope.client.ui.commons.Constants;
2423
import org.apache.wicket.RestartResponseAtInterceptPageException;
2524
import org.apache.wicket.request.mapper.parameter.PageParameters;
25+
import org.wicketstuff.kendo.ui.widget.notification.Notification;
2626

2727
abstract class BaseReauthPage extends BasePage {
2828

docker/console/LICENSE

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,11 +297,6 @@ This is licensed under the AL 2.0, see above.
297297

298298
==
299299

300-
For Wicket - jQuery UI (http://www.7thweb.net/wicket-jquery-ui/):
301-
This is licensed under the AL 2.0, see above.
302-
303-
==
304-
305300
For LMAX Disruptor (https://lmax-exchange.github.io/disruptor/):
306301
This is licensed under the AL 2.0, see above.
307302

0 commit comments

Comments
 (0)