Skip to content

Commit da2c0e0

Browse files
authored
Merge pull request #13944 from grails/move-bootstrap-jquery-webjar-versions
add bootstrap, bootstap-icons and jquery webjar versions to grails-bom
2 parents af002df + 3f8bff4 commit da2c0e0

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

dependabot/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ dependencies {
1515
api "org.grails.plugins:converters:${project['converters.version']}"
1616
api "io.methvin:directory-watcher:${project['directory-watcher.version']}"
1717
api "org.xhtmlrenderer:flying-saucer-pdf-openpdf:${project['flying-saucer-pdf-openpdf.version']}"
18+
api "org.webjars.npm:bootstrap:${project['bootstrap.version']}"
19+
api "org.webjars.npm:bootstrap-icons:${project['bootstrap-icons.version']}"
20+
api "org.webjars.npm:jquery:${project['jquery.version']}"
1821
api "org.gebish:geb-spock:${project['geb-spock.version']}"
1922
api "org.grails.plugins:async:${project['grails-async.version']}"
2023
api "org.grails.plugins:events:${project['grails-async.version']}"

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ asciidoctorj.version=3.0.0
3232
asset-pipeline-gradle.version=5.0.5
3333
asset-pipeline-grails.version=5.0.5
3434
byte-buddy.version=1.15.5
35+
bootstrap.version=5.3.3
36+
bootstrap-icons.version=1.11.3
3537
commons-codec.version=1.17.1
3638
commons-text.version=1.12.0
3739
converters.version=6.0.0-SNAPSHOT
@@ -53,6 +55,7 @@ jansi.version=1.18
5355
javaparser-core.version=3.26.2
5456
jline.version=2.14.6
5557
jna.version=5.15.0
58+
jquery.version=3.7.1
5659
jsoup.version=1.18.3
5760
mongodb.version=5.1.4
5861
objenesis.version=3.4

grails-bom/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ ext {
6262
org.springframework.boot:spring-boot-cli,spring-boot-gradle-plugin:::spring-boot
6363
org.springframework:springloaded::
6464
org.xhtmlrenderer:flying-saucer-pdf-openpdf::
65+
org.webjars.npm:bootstrap::
66+
org.webjars.npm:bootstrap-icons::
67+
org.webjars.npm:jquery::
6568
""".stripIndent(true).trim().readLines().collect {
6669
def info = it.toString().split(':', -1)
6770
def dep = [group: info[0], names: info[1].split(','), modules: info[2].split(','), version: info.length >= 4? info[3] : null]

0 commit comments

Comments
 (0)