Skip to content

Commit

Permalink
Remove Gradle deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scottfrederick committed Jan 24, 2020
1 parent f7fb481 commit 60f8017
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,39 +31,40 @@ repositories {

dependencies {
// Spring Boot
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-data-mongodb"
compile "org.springframework.boot:spring-boot-starter-data-redis"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-data-mongodb"
implementation "org.springframework.boot:spring-boot-starter-data-redis"
implementation "org.springframework.boot:spring-boot-starter-validation"

// Java CfEnv
compile "io.pivotal.cfenv:java-cfenv-boot:${javaCfEnvVersion}"
implementation "io.pivotal.cfenv:java-cfenv-boot:${javaCfEnvVersion}"

// JPA Persistence
runtime "org.apache.commons:commons-pool2:2.6.0"
runtime "com.h2database:h2"
runtime "mysql:mysql-connector-java"
runtime "org.postgresql:postgresql"
runtime "com.microsoft.sqlserver:mssql-jdbc"
runtimeOnly "org.apache.commons:commons-pool2:2.6.0"
runtimeOnly "com.h2database:h2"
runtimeOnly "mysql:mysql-connector-java"
runtimeOnly "org.postgresql:postgresql"
runtimeOnly "com.microsoft.sqlserver:mssql-jdbc"

// uncomment to use Lettuce instead of Jedis for Redis connections
// runtime "io.lettuce:lettuce-core"

// Webjars
compile "org.webjars:bootstrap:3.1.1"
compile "org.webjars:angularjs:1.2.16"
compile "org.webjars:angular-ui:0.4.0-2"
compile "org.webjars:angular-ui-bootstrap:0.10.0-1"
compile "org.webjars:jquery:2.1.0-2"
implementation "org.webjars:bootstrap:3.1.1"
implementation "org.webjars:angularjs:1.2.16"
implementation "org.webjars:angular-ui:0.4.0-2"
implementation "org.webjars:angular-ui-bootstrap:0.10.0-1"
implementation "org.webjars:jquery:2.1.0-2"

// Oracle - uncomment one of the following after placing driver in ./libs
// compile files('libs/ojdbc8.jar')
// compile files('libs/ojdbc7.jar')

// Testing
testCompile "junit:junit"
testCompile "org.springframework.boot:spring-boot-starter-test"
testImplementation "junit:junit"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}

jar {
Expand Down

0 comments on commit 60f8017

Please sign in to comment.