-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use dependency versions from the
grails-bom
where available (#57)
* test: Add log output to tests * fix(deps): Use `grails-bom` versions where available * chore: Improve comment in `documentation-config.gradle` * test: Inject `JavaMailSender` to work with Spring 6 When creating the `JavaMailSender` via constructor, it could not connect to the greenmail server. * chore: Cleanup `MailServiceSpec` * fix(deps): Put all dependencies in version catalog * fix(deps): Use more versions from `grails-bom` `groovy-templates` and `grails-docs` are also in `grails-bom` * fix(deps): Rename `grails-gsp` version catalog entry * fix(deps): Set correct maven coords for `grails-gsp` * fix(deps): Rename the aliases for build dependencies To restrict the use of groups. * fix(deps): Use all available versions from `grails-bom` - Remove explicit versions to where versions are available in `grails-bom` - Use `org.eclipse.angus:jakarta.mail` instead of `com.sun.mail:jakarta.mail` - Restrict the use of version catalog alias groups * fix(deps): Update `com.icegreen:greenmail` `2.0.1` -> `2.1.0`
- Loading branch information
Showing
9 changed files
with
642 additions
and
454 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,30 @@ | ||
[versions] | ||
grails = '7.0.0-SNAPSHOT' | ||
grails-testing-support = '4.0.0-SNAPSHOT' | ||
greenmail = '2.0.1' | ||
groovy = '4.0.23' | ||
gsp = '7.0.0-SNAPSHOT' | ||
javamail = '2.0.1' | ||
servlet-api = '6.0.0' | ||
slf4j = '1.7.36' | ||
spring = '6.1.13' | ||
springboot = '3.3.4' | ||
spock = '2.3-groovy-4.0' | ||
greenmail = '2.1.0' | ||
|
||
[libraries] | ||
grails-core = { module = 'org.grails:grails-core', version.ref = 'grails' } | ||
grails-gsp = { module = 'org.grails:grails-gsp', version.ref = 'gsp' } | ||
grails-testing-support-core = { module = 'org.grails:grails-testing-support', version.ref = 'grails-testing-support' } | ||
grails-testing-support-web = { module = 'org.grails:grails-web-testing-support', version.ref = 'grails-testing-support' } | ||
grails-web-common = { module = 'org.grails:grails-web-common', version.ref = 'grails' } | ||
grails-web-urlmappings = { module = 'org.grails:grails-web-url-mappings', version.ref = 'grails' } | ||
grails-bom = { module = 'org.grails:grails-bom', version.ref = 'grails' } | ||
grails-core = { module = 'org.grails:grails-core' } | ||
greenmail = { module = 'com.icegreen:greenmail', version.ref = 'greenmail' } | ||
groovy-core = { module = 'org.apache.groovy:groovy', version.ref = 'groovy' } | ||
grails-docs = { module = 'org.grails:grails-docs', version.ref = 'grails' } | ||
groovy-templates = { module = 'org.apache.groovy:groovy-templates', version.ref = 'groovy' } | ||
groovy-xml = { module = 'org.apache.groovy:groovy-xml', version.ref = 'groovy' } | ||
servlet-api = { module = 'jakarta.servlet:jakarta.servlet-api', version.ref = 'servlet-api' } | ||
javamail-api = { module = 'jakarta.mail:jakarta.mail-api', version.ref = 'javamail' } | ||
javamail-impl = { module = 'com.sun.mail:jakarta.mail', version.ref = 'javamail' } | ||
slf4j-nop = { module = 'org.slf4j:slf4j-nop', version.ref = 'slf4j' } | ||
spring-beans = { module = 'org.springframework:spring-beans', version.ref = 'spring' } | ||
spring-context = { module = 'org.springframework:spring-context', version.ref = 'spring' } | ||
spring-context-support = { module = 'org.springframework:spring-context-support', version.ref = 'spring' } | ||
spring-web = { module = 'org.springframework:spring-web', version.ref = 'spring' } | ||
springboot-autoconfigure = { module = 'org.springframework.boot:spring-boot-autoconfigure', version.ref = 'springboot' } | ||
springboot-starter-tomcat = { module = 'org.springframework.boot:spring-boot-starter-tomcat', version.ref = 'springboot' } | ||
spock-core = { module = 'org.spockframework:spock-core', version.ref = 'spock' } | ||
grails-docs = { module = 'org.grails:grails-docs' } | ||
grails-gsp-core = { module = 'org.grails:grails-gsp' } | ||
grails-gsp-webTaglib = { module = 'org.grails:grails-web-taglib' } | ||
grails-testingSupport-core = { module = 'org.grails:grails-testing-support' } | ||
grails-testingSupport-web = { module = 'org.grails:grails-web-testing-support' } | ||
grails-webCommon = { module = 'org.grails:grails-web-common' } | ||
grails-webUrlmappings = { module = 'org.grails:grails-web-url-mappings' } | ||
groovy-core = { module = 'org.apache.groovy:groovy' } | ||
groovy-templates = { module = 'org.apache.groovy:groovy-templates' } | ||
groovy-xml = { module = 'org.apache.groovy:groovy-xml' } | ||
servlet-api = { module = 'jakarta.servlet:jakarta.servlet-api' } | ||
javamail-api = { module = 'jakarta.mail:jakarta.mail-api' } | ||
javamail-impl = { module = 'org.eclipse.angus:jakarta.mail' } | ||
slf4j-nop = { module = 'org.slf4j:slf4j-nop' } | ||
slf4j-simple = { module = 'org.slf4j:slf4j-simple' } | ||
spock-core = { module = 'org.spockframework:spock-core' } | ||
spring-beans = { module = 'org.springframework:spring-beans' } | ||
spring-context = { module = 'org.springframework:spring-context' } | ||
spring-contextSupport = { module = 'org.springframework:spring-context-support' } | ||
spring-web = { module = 'org.springframework:spring-web' } | ||
springboot-autoconfigure = { module = 'org.springframework.boot:spring-boot-autoconfigure' } | ||
springboot-starterTomcat = { module = 'org.springframework.boot:spring-boot-starter-tomcat' } |
Oops, something went wrong.