diff options
author | Vitaly Takmazov | 2016-12-12 23:36:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-12 23:39:04 +0300 |
commit | cecbc5063bc173f4a25f0e5366a5dbf3b1c70e0a (patch) | |
tree | 4d42a7d8fb3069307b832dff7e32e37fba5d6968 | |
parent | 052f8508ab2c8995d135edb7f8207073332e1e96 (diff) |
update dependencies
-rw-r--r-- | juick-crosspost/build.gradle | 1 | ||||
-rw-r--r-- | juick-notifications/build.gradle | 1 | ||||
-rw-r--r-- | juick-notifications/src/main/java/com/juick/components/configuration/NotificationsMvcConfiguration.java | 8 | ||||
-rw-r--r-- | juick-www/build.gradle | 2 |
4 files changed, 1 insertions, 11 deletions
diff --git a/juick-crosspost/build.gradle b/juick-crosspost/build.gradle index 30b13533..7b1c3731 100644 --- a/juick-crosspost/build.gradle +++ b/juick-crosspost/build.gradle @@ -6,7 +6,6 @@ apply plugin: 'com.github.ben-manes.versions' dependencies { compile project(':juick-server') compile "org.springframework:spring-webmvc:${rootProject.springFrameworkVersion}" - compile 'com.mitchellbosecke:pebble-spring4:2.3.0' providedRuntime 'mysql:mysql-connector-java:5.1.40' } diff --git a/juick-notifications/build.gradle b/juick-notifications/build.gradle index 41fa1206..9aa98fc2 100644 --- a/juick-notifications/build.gradle +++ b/juick-notifications/build.gradle @@ -8,7 +8,6 @@ dependencies { compile 'com.ganyo:gcm-server:1.1.0' compile 'com.notnoop.apns:apns:1.0.0.Beta6' compile "org.springframework:spring-webmvc:${rootProject.springFrameworkVersion}" - compile 'com.mitchellbosecke:pebble-spring4:2.3.0' providedRuntime 'mysql:mysql-connector-java:5.1.40' diff --git a/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsMvcConfiguration.java b/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsMvcConfiguration.java index a0f0ad06..f92b6a19 100644 --- a/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsMvcConfiguration.java +++ b/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsMvcConfiguration.java @@ -8,7 +8,6 @@ import org.springframework.http.converter.HttpMessageConverter; import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; -import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; import java.util.List; @@ -20,13 +19,6 @@ import java.util.List; public class NotificationsMvcConfiguration extends WebMvcConfigurationSupport { @Override - public RequestMappingHandlerMapping requestMappingHandlerMapping() { - RequestMappingHandlerMapping mapping = super.requestMappingHandlerMapping(); - mapping.setUseSuffixPatternMatch(false); - return mapping; - } - - @Override protected void configureMessageConverters(List<HttpMessageConverter<?>> converters) { Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder() .serializationInclusion(JsonInclude.Include.NON_DEFAULT) diff --git a/juick-www/build.gradle b/juick-www/build.gradle index e3451336..d6a8f4b2 100644 --- a/juick-www/build.gradle +++ b/juick-www/build.gradle @@ -20,7 +20,7 @@ apply plugin: 'com.github.ben-manes.versions' dependencies { compile project(':juick-server') - compile 'com.github.scribejava:scribejava-apis:3.3.0' + compile 'com.github.scribejava:scribejava-apis:3.4.0' compile 'net.coobird:thumbnailator:0.4.8' compile 'com.github.ooxi:serialized-php-parser:0.5.0' compile 'com.mitchellbosecke:pebble:2.3.0' |