Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
feat!: remove embedded rest-proxy
Browse files Browse the repository at this point in the history
BREAKING CHANGE
  • Loading branch information
apetro committed Jul 17, 2019
1 parent 0e02288 commit 46c721c
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 195 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased][]
## [Unreleased][] (10.0.0)

* Removes embedded rest-proxy. Local implementations of uPortal-home needing a
proxy should deploy a proxy alongside rather than within uPortal-home.

## [9.2.0][] - 2019-06-07

Expand Down
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>edu.wisc.my.restproxy</groupId>
<artifactId>rest-proxy-core</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@
</dependency>

<!-- compile -->
<dependency>
<groupId>edu.wisc.my.restproxy</groupId>
<artifactId>rest-proxy-core</artifactId>
</dependency>

<dependency>
<groupId>commons-codec</groupId>
Expand Down

This file was deleted.

58 changes: 0 additions & 58 deletions web/src/main/resources/endpoint.properties.example

This file was deleted.

29 changes: 0 additions & 29 deletions web/src/main/webapp/WEB-INF/views.xml

This file was deleted.

23 changes: 0 additions & 23 deletions web/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,29 +69,6 @@
</init-param>
</filter>

<servlet>
<servlet-name>rest-proxy-api</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<init-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
edu.wisc.my.home.api.RestProxyApplicationConfiguration
</param-value>
</init-param>
</servlet>

<servlet-mapping>
<servlet-name>rest-proxy-api</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>

<servlet>
<servlet-name>StaticServlet</servlet-name>
<jsp-file>/index.jsp</jsp-file>
Expand Down

0 comments on commit 46c721c

Please sign in to comment.