File tree Expand file tree Collapse file tree 2 files changed +1
-27
lines changed Expand file tree Collapse file tree 2 files changed +1
-27
lines changed Original file line number Diff line number Diff line change 91
91
MVN_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
92
92
echo "MVN_VERSION=$MVN_VERSION" >> $GITHUB_OUTPUT
93
93
94
- # Replaced all version occurrences in README.md in the form: <version>1.0.0</version> or version: '1.0.0'
95
- # A version can be 1.0.0, 1.0.0-SNAPSHOT, or 1.0.0-beta4
96
- - name : " Change README"
97
- run : |
98
- sed -i -e "s@\(<version>\)\([0-9].[0-9].[0-9]\(-[A-z0-9]*\)*\)\(</version>\)@\1${{ steps.extract-version.outputs.MVN_VERSION }}\4@g" README.md
99
- sed -i -e "s@\(version: '\)\([0-9].[0-9].[0-9]\(-[A-z0-9]*\)*\)\('\)@\1${{ steps.extract-version.outputs.MVN_VERSION }}\4@g" README.md
100
- git add README.md
101
- git commit -sS -m "Update version in README" || true
102
- git push
103
-
104
94
# Required for creation of GitHub release
105
95
- name : " Get previous tag"
106
96
id : previous_tag
Original file line number Diff line number Diff line change @@ -10,23 +10,7 @@ Java Client to interact with the DefectDojo API.
10
10
11
11
## Dependency Information
12
12
13
- You can find the latest version on [ Maven Central] ( https://central.sonatype.com/artifact/io.securecodebox/defectdojo-client/ ) .
14
-
15
- ### Maven
16
-
17
- ``` xml
18
- <dependency >
19
- <groupId >io.securecodebox</groupId >
20
- <artifactId >defectdojo-client</artifactId >
21
- <version >1.0.1</version >
22
- </dependency >
23
- ```
24
-
25
- ### Gradle
26
-
27
- ``` groovy
28
- implementation group: 'io.securecodebox', name: 'defectdojo-client', version: '1.0.1'
29
- ```
13
+ You can find the latest version and dependency infos on [ Maven Central] ( https://central.sonatype.com/artifact/io.securecodebox/defectdojo-client/ ) .
30
14
31
15
## Development
32
16
You can’t perform that action at this time.
0 commit comments