Skip to content

Commit 162eba5

Browse files
authored
Merge pull request #13963 from jdaugherty/convertersRepoMerge
2 parents 4d9d2f6 + df0ddc7 commit 162eba5

File tree

75 files changed

+6001
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+6001
-4
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,10 +261,11 @@ subprojects { subproject ->
261261
maven(MavenPublication) {
262262
// Historically async mapped the core libraries to different artifact ids
263263
Map mappedArtifactIds = [
264-
'grails-async-core' : 'grails-async',
265-
'grails-async-plugin' : 'async',
266-
'grails-events-core' : 'grails-events',
267-
'grails-events-plugin': 'events'
264+
'grails-async-core' : 'grails-async',
265+
'grails-async-plugin' : 'async',
266+
'grails-events-core' : 'grails-events',
267+
'grails-events-plugin' : 'events',
268+
'grails-plugin-converters': 'converters'
268269

269270
]
270271
if(mappedArtifactIds.containsKey(subproject.name)) {

grails-plugin-converters/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## grails-plugin-converters
2+

grails-plugin-converters/build.gradle

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import org.springframework.boot.gradle.tasks.bundling.BootJar
2+
3+
buildscript {
4+
repositories {
5+
maven { url = 'https://repo.grails.org/grails/core' }
6+
}
7+
dependencies {
8+
classpath "org.grails:grails-gradle-plugin:${project['grails-gradle-plugin.version']}"
9+
}
10+
}
11+
12+
group = 'org.grails.plugins'
13+
version = projectVersion
14+
15+
apply plugin: 'groovy'
16+
apply plugin: 'java-library'
17+
apply plugin: 'org.grails.grails-plugin'
18+
19+
dependencies {
20+
implementation platform(project(':grails-bom'))
21+
22+
api project(':grails-web-common')
23+
24+
compileOnly 'jakarta.servlet:jakarta.servlet-api' // Provided
25+
26+
implementation 'org.apache.commons:commons-lang3'
27+
implementation 'org.grails:grails-datastore-gorm'
28+
implementation project(':grails-bootstrap')
29+
30+
testImplementation 'jakarta.servlet:jakarta.servlet-api'
31+
testImplementation 'org.grails:grails-datastore-core'
32+
testImplementation 'org.spockframework:spock-core'
33+
testImplementation 'org.springframework:spring-context'
34+
testImplementation project(':grails-core')
35+
testImplementation project(':grails-web-common')
36+
}

0 commit comments

Comments
 (0)