This repository was archived by the owner on Apr 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 5555 uses : gradle/gradle-build-action@v3
5656 if : steps.build.outcome == 'success' && github.event_name == 'push'
5757 env :
58- ARTIFACTORY_USERNAME : ${{ secrets.ARTIFACTORY_USERNAME }}
59- ARTIFACTORY_PASSWORD : ${{ secrets.ARTIFACTORY_PASSWORD }}
58+ MAVEN_PUBLISH_USERNAME : ${{ secrets.MAVEN_PUBLISH_USERNAME }}
59+ MAVEN_PUBLISH_PASSWORD : ${{ secrets.MAVEN_PUBLISH_PASSWORD }}
60+ MAVEN_PUBLISH_URL : ${{ secrets.MAVEN_PUBLISH_SNAPSHOT_URL }}
6061 GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
6162 GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }}
6263 GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }}
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ jobs:
3434 id : publish
3535 uses : gradle/gradle-build-action@v3
3636 env :
37- SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
38- SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
39- SONATYPE_NEXUS_URL : ${{ secrets.SONATYPE_NEXUS_URL }}
40- SONATYPE_STAGING_PROFILE_ID : ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
37+ NEXUS_PUBLISH_USERNAME : ${{ secrets.NEXUS_PUBLISH_USERNAME }}
38+ NEXUS_PUBLISH_PASSWORD : ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
39+ NEXUS_PUBLISH_NEXUS_URL : ${{ secrets.NEXUS_PUBLISH_RELEASE_URL }}
40+ NEXUS_PUBLISH_STAGING_PROFILE_ID : ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }}
4141 SIGNING_KEY : ${{ secrets.SIGNING_KEY }}
4242 SIGNING_PASSPHRASE : ${{ secrets.SIGNING_PASSPHRASE }}
4343 SECRING_FILE : ${{ secrets.SECRING_FILE }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ apply plugin:"eclipse"
1515apply plugin :" idea"
1616apply plugin :" java-library"
1717apply plugin :" org.grails.grails-plugin"
18- apply plugin :" org.grails.internal. grails-plugin -publish"
18+ apply plugin :" org.grails.grails-publish"
1919apply plugin :" org.grails.grails-gsp"
2020apply plugin : " org.asciidoctor.jvm.convert"
2121
@@ -61,13 +61,12 @@ dependencies {
6161compileJava. options. release = 17
6262
6363grailsPublish {
64- userOrg = " grails"
65- githubSlug = ' grails-plugins/grails-database-migration'
64+ githubSlug = ' grails/grails-database-migration'
6665 license {
6766 name = ' Apache-2.0'
6867 }
69- title = " Grails Database Migration Plugin"
70- desc = " Grails Database Migration Plugin"
68+ title = ' Grails Database Migration Plugin'
69+ desc = ' Grails Database Migration Plugin'
7170 developers = [kazukiyamamoto : " Kazuki YAMAMOTO" ]
7271}
7372
Original file line number Diff line number Diff line change @@ -6,10 +6,6 @@ grailsGradlePluginVersion=7.0.0-SNAPSHOT
66groovyVersion =4.0.23
77liquibaseHibernate5Version =4.27.0
88
9- websiteUrl =https://grails-plugins.github.io/grails-database-migration
10- issueTrackerUrl =https://github.com/grails-plugins/grails-database-migration/issues
11- vcsUrl =https://github.com/grails-plugins/grails-database-migration
12-
139org.gradle.parallel =true
1410org.gradle.caching =true
1511org.gradle.daemon =true
You can’t perform that action at this time.
0 commit comments