Skip to content

Commit

Permalink
Update to Gradle 7.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rwinch committed Jun 30, 2022
1 parent 39f6784 commit 136d48c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
68 changes: 34 additions & 34 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.boot' version '2.2.1.RELEASE'
id "com.gorylenko.gradle-git-properties" version "2.2.0"
id "com.gorylenko.gradle-git-properties" version "2.4.1"
}

apply plugin: 'java'
Expand Down Expand Up @@ -38,40 +38,40 @@ jar {
}

dependencies {
compile('org.springframework.boot:spring-boot-devtools')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-data-redis')
compile('org.apache.commons:commons-pool2')
compile('org.springframework.boot:spring-boot-starter-thymeleaf')
compile('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect')
compile('org.springframework.boot:spring-boot-starter-security')
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.cloud:spring-cloud-spring-service-connector')
compile('org.springframework.cloud:spring-cloud-cloudfoundry-connector')
compile('org.springframework.session:spring-session-data-redis')
compile('org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5')
compile('org.webjars:webjars-locator-core')
compile('org.webjars:bootstrap:3.3.6')
compile('org.webjars:jquery:1.11.3')
compile('org.webjars.bower:select2:4.0.3')
compile('com.h2database:h2')
compile('net.sourceforge.nekohtml:nekohtml')
compile('org.flywaydb:flyway-core')
compile('mysql:mysql-connector-java:5.1.49')
implementation('org.springframework.boot:spring-boot-devtools')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-data-redis')
implementation('org.apache.commons:commons-pool2')
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
implementation('nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect')
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.cloud:spring-cloud-spring-service-connector')
implementation('org.springframework.cloud:spring-cloud-cloudfoundry-connector')
implementation('org.springframework.session:spring-session-data-redis')
implementation('org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5')
implementation('org.webjars:webjars-locator-core')
implementation('org.webjars:bootstrap:3.3.6')
implementation('org.webjars:jquery:1.11.3')
implementation('org.webjars.bower:select2:4.0.3')
implementation('com.h2database:h2')
implementation('net.sourceforge.nekohtml:nekohtml')
implementation('org.flywaydb:flyway-core')
implementation('mysql:mysql-connector-java:5.1.49')
developmentOnly("org.springframework.boot:spring-boot-devtools")
testCompile('org.springframework.boot:spring-boot-configuration-processor')
testCompile('org.springframework.boot:spring-boot-devtools')
testCompile('org.springframework.security:spring-security-test')
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('net.sourceforge.htmlunit:htmlunit')
testCompile('org.seleniumhq.selenium:htmlunit-driver')
testCompile('org.seleniumhq.selenium:selenium-api')
testCompile('org.seleniumhq.selenium:selenium-remote-driver')
testCompile('org.seleniumhq.selenium:selenium-support')
testCompile('org.assertj:assertj-core')
testCompile('com.squareup.okhttp3:mockwebserver')
testCompile('org.testcontainers:selenium:1.12.4')
testImplementation('org.springframework.boot:spring-boot-configuration-processor')
testImplementation('org.springframework.boot:spring-boot-devtools')
testImplementation('org.springframework.security:spring-security-test')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('net.sourceforge.htmlunit:htmlunit')
testImplementation('org.seleniumhq.selenium:htmlunit-driver')
testImplementation('org.seleniumhq.selenium:selenium-api')
testImplementation('org.seleniumhq.selenium:selenium-remote-driver')
testImplementation('org.seleniumhq.selenium:selenium-support')
testImplementation('org.assertj:assertj-core')
testImplementation('com.squareup.okhttp3:mockwebserver')
testImplementation('org.testcontainers:selenium:1.12.4')
}


Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 136d48c

Please sign in to comment.