diff --git a/README.md b/README.md index ee84dfb..121a5dd 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ JavaMelody: monitoring of JavaEE applications | Add-on | Platform | |:------------- |:------------- | +| 0.6.0 | 7.1.0 | | 0.5.1 | 7.0.0 | | 0.4.0 | 6.10.0 | | 0.3.1 | 6.9.0 | @@ -27,7 +28,7 @@ JavaMelody: monitoring of JavaEE applications 1. Add custom application component to your project (change the version part if needed): - `com.haulmont.addon.cubajm:cuba-jm-global:0.5.1` + `com.haulmont.addon.cubajm:cuba-jm-global:0.6.0` 2. Configure monitoring URLs with the `cubajm.monitoringUrl` application property. Default values are `/core-jm/` and `/web-jm/` for middleware diff --git a/build.gradle b/build.gradle index 9882660..2251b18 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ */ buildscript { - ext.cubaVersion = '7.0.0' + ext.cubaVersion = '7.1.0' repositories { jcenter() maven { url "https://dl.bintray.com/cuba-platform/main" } @@ -40,7 +40,7 @@ apply(plugin: 'cuba') cuba { artifact { group = 'com.haulmont.addon.cubajm' - version = '0.5.0' + version = '0.6.0' isSnapshot = true } tomcat { @@ -75,7 +75,7 @@ dependencies { appComponent("com.haulmont.cuba:cuba-global:$cubaVersion") } -def hsql = 'org.hsqldb:hsqldb:2.2.9' +def hsql = 'org.hsqldb:hsqldb:2.4.1' configure([globalModule, coreModule, webModule, jmModule]) { apply(plugin: 'java') @@ -122,7 +122,6 @@ configure(coreModule) { dependencies { compile(globalModule) compile(jmModule) - compileOnly(servletApi) jdbc(hsql) testRuntime(hsql) } @@ -167,7 +166,6 @@ configure(webModule) { dependencies { compile(globalModule) - compileOnly(servletApi) compile(jmModule) } @@ -212,7 +210,8 @@ configure(webModule) { configure(jmModule) { dependencies { compile(globalModule) - compile('net.bull.javamelody:javamelody-core:1.76.0') + compile('net.bull.javamelody:javamelody-core:1.79.0') + compileOnly(servletApi) } } diff --git a/modules/web/web/WEB-INF/web.xml b/modules/web/web/WEB-INF/web.xml index e755b4c..066366a 100644 --- a/modules/web/web/WEB-INF/web.xml +++ b/modules/web/web/WEB-INF/web.xml @@ -48,11 +48,6 @@ com.haulmont.cuba.web.sys.CubaDispatcherServlet 1 - - rest_api - com.haulmont.restapi.sys.CubaRestApiServlet - 2 - dispatcher /dispatch/* @@ -61,10 +56,6 @@ app_servlet /* - - rest_api - /rest/* - cuba_filter com.haulmont.cuba.web.sys.CubaHttpFilter @@ -74,20 +65,4 @@ cuba_filter /* - - restSpringSecurityFilterChain - org.springframework.web.filter.DelegatingFilterProxy - - contextAttribute - org.springframework.web.servlet.FrameworkServlet.CONTEXT.rest_api - - - targetBeanName - springSecurityFilterChain - - - - restSpringSecurityFilterChain - /rest/* -