Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #286 from dacrome/update-gradle-and-spring-boot
Browse files Browse the repository at this point in the history
Update Gradle and Spring Boot
  • Loading branch information
tkrille committed Feb 13, 2017
2 parents a09d978 + a34007f commit 0b77883
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 17 deletions.
22 changes: 7 additions & 15 deletions build.gradle
@@ -1,12 +1,3 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}

plugins {
id 'antlr'
id 'java'
Expand All @@ -16,13 +7,12 @@ plugins {
id 'maven'
id 'maven-publish'
id 'com.github.hierynomus.license' version '0.13.1'
id 'com.github.kt3k.coveralls' version '2.7.1'
id 'com.github.kt3k.coveralls' version '2.8.1'
id 'com.jfrog.bintray' version '1.7.3'
id 'com.github.ben-manes.versions' version '0.13.0'
id 'com.github.ben-manes.versions' version '0.14.0'
id 'org.springframework.boot' version '1.5.1.RELEASE'
}

apply plugin: 'spring-boot'

group = 'org.osiam'

sourceCompatibility = 1.8
Expand Down Expand Up @@ -106,6 +96,8 @@ configurations {
jpaModelGen
}

ext['spock.version'] = '1.1-groovy-2.4-rc-3'

dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
Expand All @@ -125,8 +117,8 @@ dependencies {
compile 'org.aspectj:aspectjweaver'
compile 'org.hibernate:hibernate-validator'
compile 'org.apache.tika:tika-core:1.14'
compile 'com.google.guava:guava:20.0'
compile 'org.antlr:antlr4:4.5.3'
compile 'com.google.guava:guava:21.0'
compile 'org.antlr:antlr4:4.6'
testCompile 'org.codehaus.groovy:groovy-all'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'org.spockframework:spock-core'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Wed Nov 23 22:08:48 CET 2016
#Fri Feb 10 15:57:45 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
1 change: 1 addition & 0 deletions src/main/resources/application.yml
Expand Up @@ -36,6 +36,7 @@ spring.main.banner-mode: 'off'
spring.thymeleaf.prefix: file:${osiam.home}/templates/web/
spring.jpa.hibernate.ddl-auto: none
server.port: ${osiam.port:8080}
security.oauth2.resource.filterOrder: 3

management.context-path: /management

Expand Down

0 comments on commit 0b77883

Please sign in to comment.