update dependencies

This commit is contained in:
Shinsuke Sugaya 2017-12-18 23:16:20 +09:00
parent a0ebf773a9
commit aacf6e2da2
2 changed files with 5 additions and 5 deletions

View file

@ -39,8 +39,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Main Framework -->
<dbflute.version>1.1.4</dbflute.version>
<lastaflute.version>1.0.2</lastaflute.version>
<dbflute.version>1.1.5</dbflute.version>
<lastaflute.version>1.0.3-RC3</lastaflute.version>
<lasta.taglib.version>0.7.2</lasta.taglib.version>
<lasta.job.version>0.5.2</lasta.job.version>
<mailflute.version>0.5.7</mailflute.version>
@ -54,7 +54,7 @@
<!-- Testing -->
<junit.version>4.12</junit.version>
<junit.jupiter.version>5.0.0</junit.jupiter.version>
<junit.jupiter.version>5.0.2</junit.jupiter.version>
<junit.vintage.version>${junit.version}.0</junit.vintage.version>
<junit.platform.version>1.0.0</junit.platform.version>
<utflute.version>0.8.5</utflute.version>
@ -71,7 +71,7 @@
<cluster.runner.version>${elasticsearch.version}.0</cluster.runner.version>
<!-- Tomcat -->
<tomcat.version>9.0.1</tomcat.version>
<tomcat.version>9.0.2</tomcat.version>
<tomcat.boot.version>0.6.0</tomcat.boot.version>
<!-- DEB & RPM build -->

View file

@ -218,7 +218,7 @@ public abstract class FessSearchAction extends FessBaseAction {
protected HtmlResponse redirectToRoot() {
final String contextPath = request.getServletContext().getContextPath();
return newHtmlResponseAsRediect(StringUtil.isBlank(contextPath) ? "/" : contextPath);
return newHtmlResponseAsRedirect(StringUtil.isBlank(contextPath) ? "/" : contextPath);
}
protected HtmlNext virtualHost(final HtmlNext path) {