Skip to content

Commit

Permalink
#3611 - Upgrade to Spring 6, Boot 3, Wicket 10, etc.
Browse files Browse the repository at this point in the history
- Added workaround for Wicket JQuery not yet properly initializing its themes
- Removed redundant dependencies
  • Loading branch information
reckart committed Jun 11, 2024
1 parent c81302d commit 6548c78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
10 changes: 0 additions & 10 deletions inception/inception-recommendation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -342,16 +342,6 @@
<artifactId>inception-documents</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.tudarmstadt.ukp.inception.app</groupId>
<artifactId>inception-testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.tudarmstadt.ukp.inception.app</groupId>
<artifactId>inception-project</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,16 @@ private void initPageRequestTracker()
getRequestCycleListeners().add(new PageRequestHandlerTracker());
}

protected void initWebFrameworks()
@Override
protected void internalInit()
{
super.internalInit();

WicketWebjars.install(this);
}

protected void initWebFrameworks()
{
initJQueryResourceReference();

addJQueryJavascriptToAllPages();
Expand Down

0 comments on commit 6548c78

Please sign in to comment.