File tree Expand file tree Collapse file tree 9 files changed +38
-34
lines changed
asciidoctorj-diagram-ditaamini
asciidoctorj-diagram-plantuml Expand file tree Collapse file tree 9 files changed +38
-34
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
- on : [push, pull_request]
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
3
11
jobs :
4
12
test :
5
13
strategy :
6
14
matrix :
7
- java : ['1. 8', '11', '16 ']
15
+ java : ['8', '11', '17 ']
8
16
os : [ubuntu-latest, macos-latest, windows-latest]
9
17
exclude :
10
18
- os : macos-latest
11
- java : ' 1. 8'
19
+ java : ' 8'
12
20
- os : macos-latest
13
- java : ' 16 '
21
+ java : ' 17 '
14
22
- os : windows-latest
15
- java : ' 1. 8'
23
+ java : ' 8'
16
24
- os : windows-latest
17
- java : ' 16 '
25
+ java : ' 17 '
18
26
runs-on : ${{ matrix.os }}
19
27
steps :
20
28
- uses : actions/checkout@v2
21
- - uses : actions/setup-java@v1
29
+ - uses : actions/setup-java@v2
22
30
with :
31
+ distribution : ' temurin'
23
32
java-version : ${{ matrix.java }}
24
33
- name : Build
25
34
run : |
Original file line number Diff line number Diff line change 1
1
properName =AsciidoctorJ Diagram Ditaamini
2
2
description =AsciidoctorJ Diagram Ditaamini bundles the Asciidoctor Diagram Ditaamini RubyGem (asciidoctor-diagram-ditaamini) so it can be loaded into the JVM using JRuby.
3
- version =1.0.1
3
+ version =1.0.3
4
4
gem_name =asciidoctor-diagram-ditaamini
Original file line number Diff line number Diff line change 1
1
properName =AsciidoctorJ Diagram Plantuml
2
2
description =AsciidoctorJ Diagram Plantul bundles the Asciidoctor Diagram Plantuml RubyGem (asciidoctor-diagram-plantuml) so it can be loaded into the JVM using JRuby.
3
- version =1.2021.8
3
+ version =1.2022.5
4
4
gem_name =asciidoctor-diagram-plantuml
5
5
Original file line number Diff line number Diff line change 1
1
properName =AsciidoctorJ Diagram
2
2
description =AsciidoctorJ Diagram bundles the Asciidoctor Diagram RubyGem (asciidoctor-diagram) so it can be loaded into the JVM using JRuby.
3
- version =2.2.1
3
+ version =2.2.3
4
4
gem_name =asciidoctor-diagram
Original file line number Diff line number Diff line change @@ -17,24 +17,10 @@ buildscript {
17
17
// modern plugins config
18
18
plugins {
19
19
id " signing"
20
- id " io.codearte.nexus-staging" version " 0.22.0"
21
- id " de.marcphilipp.nexus-publish" version " 0.4.0"
20
+ id " io.github.gradle-nexus.publish-plugin" version " 1.1.0"
22
21
id ' com.github.jruby-gradle.base' version ' 2.0.0'
23
22
}
24
23
25
- apply plugin : ' io.codearte.nexus-staging'
26
-
27
-
28
- nexusStaging {
29
- if (project. hasProperty(" sonatypeUsername" )) {
30
- username = project. sonatypeUsername
31
- }
32
- if (project. hasProperty(" sonatypePassword" )) {
33
- password = project. sonatypePassword
34
- }
35
- repositoryDescription = " Release ${ project.group} ${ project.version} "
36
- }
37
-
38
24
// TIP use -PpublishRelease=true to active release behavior regardless of the version
39
25
status = project. hasProperty(' publishRelease' ) && project. publishRelease. toBoolean() ?
40
26
' release' : ((version == ' unspecified' || version. endsWith(' -SNAPSHOT' )) ? ' snapshot' : ' release' )
@@ -187,3 +173,18 @@ configure(subprojects.findAll { it.name != 'itest'}) {
187
173
processResources. dependsOn jrubyPrepare
188
174
189
175
}
176
+
177
+ nexusPublishing {
178
+ repositories {
179
+ sonatype {
180
+ if (project. hasProperty(" sonatypeUsername" )) {
181
+ username = project. sonatypeUsername
182
+ }
183
+ if (project. hasProperty(" sonatypePassword" )) {
184
+ password = project. sonatypePassword
185
+ }
186
+ repositoryDescription = " Release ${ project.group} ${ project.version} "
187
+ }
188
+ }
189
+ clientTimeout = Duration . ofMinutes(5 )
190
+ }
Original file line number Diff line number Diff line change 1
- version =2.2.1
1
+ version =2.2.3
2
2
gem_name =asciidoctor-diagram
Original file line number Diff line number Diff line change 1
- apply plugin : ' de.marcphilipp.nexus -publish'
1
+ apply plugin : ' maven -publish'
2
2
3
3
publishing {
4
4
publications. create(project. ext. publicationName, MavenPublication ) {
@@ -85,9 +85,3 @@ publishing {
85
85
}
86
86
}
87
87
}
88
-
89
- nexusPublishing {
90
- repositories {
91
- sonatype()
92
- }
93
- }
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4. 2-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments