Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-28070 Replace javax.servlet.jsp dependency with tomcat-jasper#5607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -87,6 +87,11 @@ | ||
| <exclude>junit:junit</exclude> | ||
| <exclude>org.hamcrest:hamcrest-core</exclude> | ||
| <exclude>org.mockito:mockito-core</exclude> | ||
| <!-- Exclude transitive dependencies of tomcat-jasper, not needed at runtime --> | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We do not need this for our release binaries? For client I think it is OK that we do not need to start a web server, but for hbase we do need to start master/rs webs?
| ||
| <exclude>org.apache.tomcat:tomcat-juli</exclude> | ||
| <exclude>org.apache.tomcat:tomcat-api</exclude> | ||
| <exclude>org.apache.tomcat:tomcat-util-scan</exclude> | ||
| <exclude>org.apache.tomcat:tomcat-util</exclude> | ||
| </excludes> | ||
| </dependencySet> | ||
| </dependencySets> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -857,8 +857,7 @@ | ||
| <jaxb-api.version>2.3.1</jaxb-api.version> | ||
| <servlet.api.version>3.1.0</servlet.api.version> | ||
| <wx.rs.api.version>2.1.1</wx.rs.api.version> | ||
| <glassfish.jsp.version>2.3.2</glassfish.jsp.version> | ||
| <glassfish.el.version>3.0.1-b08</glassfish.el.version> | ||
| <tomcat.jasper.version>9.0.93</tomcat.jasper.version> | ||
| <jruby.version>9.4.8.0</jruby.version> | ||
| <junit.version>4.13.2</junit.version> | ||
| <hamcrest.version>1.3</hamcrest.version> | ||
| @@ -1566,21 +1565,30 @@ | ||
| </dependency> | ||
| <dependency> | ||
| <!--This lib has JspC in it. Needed precompiling jsps in hbase-rest, etc.--> | ||
| <groupId>org.glassfish.web</groupId> | ||
| <artifactId>javax.servlet.jsp</artifactId> | ||
| <version>${glassfish.jsp.version}</version> | ||
| <groupId>org.apache.tomcat</groupId> | ||
chrajeshbabu marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| <artifactId>tomcat-jasper</artifactId> | ||
| <version>${tomcat.jasper.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.eclipse.jdt</groupId> | ||
| <artifactId>ecj</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.tomcat</groupId> | ||
| <artifactId>tomcat-servlet-api</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.tomcat</groupId> | ||
| <artifactId>tomcat-jsp-api</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <!-- this lib is used by the compiled Jsp from the above JspC --> | ||
| <groupId>javax.servlet.jsp</groupId> | ||
| <artifactId>javax.servlet.jsp-api</artifactId> | ||
| <version>2.3.1</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.glassfish</groupId> | ||
| <artifactId>javax.el</artifactId> | ||
| <version>${glassfish.el.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>javax.xml.bind</groupId> | ||
| <artifactId>jaxb-api</artifactId> | ||
Uh oh!
There was an error while loading. Please reload this page.