File tree Expand file tree Collapse file tree 4 files changed +8
-41
lines changed
audit-test-allow-update-outside-transaction Expand file tree Collapse file tree 4 files changed +8
-41
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ jobs:
57
57
- name : " 🚀 Publish to Sonatype OSSRH"
58
58
id : publish
59
59
env :
60
- SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
61
- SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
62
- SONATYPE_NEXUS_URL : ${{ secrets.SONATYPE_NEXUS_URL }}
63
- SONATYPE_STAGING_PROFILE_ID : ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
60
+ NEXUS_PUBLISH_USERNAME : ${{ secrets.NEXUS_PUBLISH_USERNAME }}
61
+ NEXUS_PUBLISH_PASSWORD : ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
62
+ NEXUS_PUBLISH_URL : ${{ secrets.NEXUS_PUBLISH_RELEASE_URL }}
63
+ NEXUS_PUBLISH_STAGING_PROFILE_ID : ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }}
64
64
SIGNING_KEY : ${{ secrets.SIGNING_KEY }}
65
65
SIGNING_PASSPHRASE : ${{ secrets.SIGNING_PASSPHRASE }}
66
66
SECRING_FILE : ${{ secrets.SECRING_FILE }}
98
98
env :
99
99
DEVELOCITY_BUILD_CACHE_NODE_USER : ${{ secrets.DEVELOCITY_BUILD_CACHE_NODE_USER }}
100
100
DEVELOCITY_BUILD_CACHE_NODE_KEY : ${{ secrets.DEVELOCITY_BUILD_CACHE_NODE_KEY }}
101
- SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
102
- SONATYPE_PASSWORD : ${{ secrets.SONATYPE_PASSWORD }}
103
- SONATYPE_STAGING_PROFILE_ID : ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
101
+ NEXUS_PUBLISH_USERNAME : ${{ secrets.NEXUS_PUBLISH_USERNAME }}
102
+ NEXUS_PUBLISH_PASSWORD : ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
103
+ NEXUS_PUBLISH_URL : ${{ secrets.NEXUS_PUBLISH_RELEASE_URL }}
104
+ NEXUS_PUBLISH_STAGING_PROFILE_ID : ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }}
104
105
working-directory : ./plugin
105
106
run : >
106
107
../gradlew
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext {
3
- grailsVersion = project. grailsVersion
4
- }
5
2
repositories {
6
3
maven { url " https://repo.grails.org/grails/core" }
7
4
}
@@ -14,7 +11,6 @@ plugins {
14
11
id " com.bertramlabs.asset-pipeline" version " $assetPipelineVersion "
15
12
}
16
13
17
-
18
14
version project. projectVersion
19
15
group " audit.test"
20
16
@@ -24,11 +20,6 @@ apply plugin: 'idea'
24
20
apply plugin : " org.grails.grails-web"
25
21
apply plugin : " org.grails.grails-gsp"
26
22
27
- ext {
28
- grailsVersion = project. grailsVersion
29
- gradleWrapperVersion = project. gradleWrapperVersion
30
- }
31
-
32
23
assets {
33
24
minifyJs = true
34
25
minifyCss = true
@@ -80,10 +71,6 @@ dependencies {
80
71
profile " org.grails.profiles:web"
81
72
}
82
73
83
- task wrapper (type : Wrapper ) {
84
- gradleVersion = gradleWrapperVersion
85
- }
86
-
87
74
test {
88
75
testLogging {
89
76
showStandardStreams = true
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext {
3
- grailsVersion = project. grailsVersion
4
- }
5
2
repositories {
6
3
maven { url " https://repo.grails.org/grails/core" }
7
4
}
@@ -23,11 +20,6 @@ apply plugin: 'idea'
23
20
apply plugin : " org.grails.grails-web"
24
21
apply plugin : " org.grails.grails-gsp"
25
22
26
- ext {
27
- grailsVersion = project. grailsVersion
28
- gradleWrapperVersion = project. gradleWrapperVersion
29
- }
30
-
31
23
assets {
32
24
minifyJs = true
33
25
minifyCss = true
@@ -79,10 +71,6 @@ dependencies {
79
71
profile " org.grails.profiles:web"
80
72
}
81
73
82
- task wrapper (type : Wrapper ) {
83
- gradleVersion = gradleWrapperVersion
84
- }
85
-
86
74
tasks. withType(Test ). configureEach { Task it ->
87
75
useJUnitPlatform()
88
76
Original file line number Diff line number Diff line change @@ -22,11 +22,6 @@ apply plugin: "idea"
22
22
apply plugin : " org.grails.grails-plugin"
23
23
apply plugin : " org.grails.grails-gsp"
24
24
25
- ext {
26
- grailsVersion = project. grailsVersion
27
- gradleWrapperVersion = project. gradleWrapperVersion
28
- }
29
-
30
25
repositories {
31
26
mavenLocal()
32
27
mavenCentral()
@@ -62,10 +57,6 @@ dependencies {
62
57
63
58
bootJar. enabled = false
64
59
65
- task wrapper (type : Wrapper ) {
66
- gradleVersion = gradleWrapperVersion
67
- }
68
-
69
60
apply plugin : " org.grails.grails-publish"
70
61
grailsPublish {
71
62
githubSlug = ' grails-plugins/grails-audit-logging-plugin'
You can’t perform that action at this time.
0 commit comments