Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit a0a1a48

Browse files
committed
update build
(cherry picked from commit 12aa4b9) (cherry picked from commit 55334a5)
1 parent d49d195 commit a0a1a48

File tree

5 files changed

+18
-43
lines changed

5 files changed

+18
-43
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ gradle-app.setting
2121
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
2222
# gradle/wrapper/gradle-wrapper.properties
2323
.DS_Store
24+
25+
# Database Migration Test Database File
26+
*.db

gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
projectVersion=9.0.0-SNAPSHOT
2-
asciidoctorGradleVersion=4.0.1
2+
asciidoctorGradleVersion=4.0.3
33
gormVersion=9.0.0-M2
44
gradleNexusPublishPluginVersion=2.0.0
55
grailsGradlePluginVersion=7.0.0-M2
66
grailsVersion=7.0.0-M1
77
groovyVersion=4.0.24
88
hibernateVersion=5.6.15.Final
9+
liquibaseHibernate5Version=4.27.0
910
yakworksHibernateGroovyProxyVersion=1.1
1011
micronautPlatformVersion=4.6.3
1112
picocliVersion=4.7.6

grails-database-migration/build.gradle

+8-10
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55
dependencies {
66
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
7-
classpath "org.asciidoctor:asciidoctor-gradle-jvm:$asciidoctorJvmVersion"
7+
classpath "org.asciidoctor:asciidoctor-gradle-jvm:$asciidoctorGradleVersion"
88
}
99
}
1010

@@ -15,7 +15,6 @@ apply plugin:"eclipse"
1515
apply plugin:"idea"
1616
apply plugin:"java-library"
1717
apply plugin:"org.grails.grails-plugin"
18-
apply plugin:"org.grails.grails-publish"
1918
apply plugin:"org.grails.grails-gsp"
2019
apply plugin: "org.asciidoctor.jvm.convert"
2120

@@ -74,14 +73,13 @@ dependencies {
7473

7574
compileJava.options.release = 17
7675

77-
grailsPublish {
78-
githubSlug = 'grails/grails-database-migration'
79-
license {
80-
name = 'Apache-2.0'
81-
}
82-
title = 'Grails Database Migration Plugin'
83-
desc = 'Grails Database Migration Plugin'
84-
developers = [kazukiyamamoto: "Kazuki YAMAMOTO"]
76+
ext {
77+
pomTitle = 'Grails Database Migration Plugin'
78+
pomDescription = 'The Database Migration plugin helps you manage database changes, via Liquibase, while developing Grails applications'
79+
pomDevelopers = [
80+
[id: 'kazukiyamamoto', name: 'Kazuki YAMAMOTO'],
81+
[id: 'jamesfredley', name: 'James Fredley']
82+
]
8583
}
8684

8785
asciidoctor {

grails-database-migration/settings.gradle

-28
This file was deleted.

settings.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ include 'docs'
3636
// Plugins
3737
include "boot-plugin"
3838
include 'grails-plugin'
39+
include 'grails-database-migration'
40+
41+
findProject(':boot-plugin').name = 'gorm-hibernate5-spring-boot'
42+
findProject(':grails-database-migration').name = 'database-migration'
3943

4044
include "examples-grails-hibernate"
4145
project(":examples-grails-hibernate").projectDir = new File(settingsDir, "examples/grails-hibernate")
@@ -65,7 +69,4 @@ include "examples-grails-hibernate-groovy-proxy"
6569
project(":examples-grails-hibernate-groovy-proxy").projectDir = new File(settingsDir, "examples/grails-hibernate-groovy-proxy")
6670

6771
include 'examples-issue450'
68-
project(':examples-issue450').projectDir = new File(settingsDir, 'examples/issue450')
69-
70-
findProject(':boot-plugin').name = 'gorm-hibernate5-spring-boot'
71-
72+
project(':examples-issue450').projectDir = new File(settingsDir, 'examples/issue450')

0 commit comments

Comments
 (0)