Skip to content

Commit

Permalink
Merge pull request #374 from groldan/feature/web-rest-settings
Browse files Browse the repository at this point in the history
webui: Add missing dependency on gs-web-rest
  • Loading branch information
groldan authored Nov 25, 2023
2 parents f23b647 + 1645ba9 commit ec78196
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/apps/geoserver/webui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
<groupId>org.geoserver.extension</groupId>
<artifactId>gs-web-resource</artifactId>
</dependency>
<dependency>
<groupId>org.geoserver.web</groupId>
<artifactId>gs-web-rest</artifactId>
</dependency>
<dependency>
<groupId>org.geoserver.importer</groupId>
<artifactId>gs-importer-web</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
reader = FilteringXmlBeanDefinitionReader.class, //
locations = { //
"jar:gs-web-core-.*!/applicationContext.xml#name="
+ WebCoreConfiguration.EXCLUDED_BEANS_PATTERN //
+ WebCoreConfiguration.EXCLUDED_BEANS_PATTERN, //
"jar:gs-web-rest-.*!/applicationContext.xml" //
})
public class WebCoreConfiguration {

Expand Down
5 changes: 5 additions & 0 deletions src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,11 @@
<artifactId>gs-web-wcs</artifactId>
<version>${gs.version}</version>
</dependency>
<dependency>
<groupId>org.geoserver.web</groupId>
<artifactId>gs-web-rest</artifactId>
<version>${gs.version}</version>
</dependency>
<dependency>
<groupId>org.geoserver.web</groupId>
<artifactId>gs-web-sec-core</artifactId>
Expand Down

0 comments on commit ec78196

Please sign in to comment.