Skip to content

Commit c1a7f1a

Browse files
committed
Merge branch 'develop'
2 parents 6cc14be + 271087c commit c1a7f1a

File tree

6 files changed

+37
-9
lines changed

6 files changed

+37
-9
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ timeout(60) {
3939

4040
stage('Deploy') {
4141
if (git.isProductionBranch()) {
42-
sh "./mvnw -Prelease package source:jar gpg:sign install:install deploy:deploy"
42+
sh "GPG_TTY=\$(tty) ./mvnw -Prelease package source:jar gpg:sign install:install deploy:deploy"
4343
} else {
4444
sh "./mvnw deploy"
4545
}

Jenkinsfile_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ timeout(20) {
2929

3030
stage('Start Release') {
3131
echo "releaseVersion: ${releaseVersion}"
32-
sh "./mvnw gitflow:release -DreleaseVersion=${releaseVersion} -DdevelopmentVersion=${developmentVersion} -DskipITs=true "
32+
sh "./mvnw -B gitflow:release-start gitflow:release-finish -DreleaseVersion=${releaseVersion} -DdevelopmentVersion=${developmentVersion} -DskipITs=true "
3333
}
3434
} catch (e) {
3535
mail subject: "${env.JOB_NAME} (${env.BUILD_NUMBER}): Error on build", to: 'github@martinreinhardt-online.de', body: "Please go to ${env.BUILD_URL}."

pom.xml

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
<groupId>net.continuous-security-tools</groupId>
66
<artifactId>zap-java-integration</artifactId>
7-
<version>0.3.0</version>
7+
<version>0.3.1</version>
88
<packaging>pom</packaging>
99

10-
<name>ZAP Maven Plugin Parent</name>
11-
<description>Parent project for the ZAP Maven Plugin</description>
10+
<name>ZAP Java Integration</name>
11+
<description>Java Integration for OWASP ZAP</description>
1212
<url>https://github.com/ContinuousSecurityTooling/zap-maven-plugin</url>
1313

1414
<modules>
@@ -189,7 +189,35 @@
189189
</configuration>
190190
</plugin>
191191

192-
<!-- -->
192+
<!-- Attach Javadoc and source -->
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-javadoc-plugin</artifactId>
196+
<version>${maven-javadoc-plugin.version}</version>
197+
<executions>
198+
<execution>
199+
<id>attach-javadocs</id>
200+
<goals>
201+
<goal>jar</goal>
202+
</goals>
203+
</execution>
204+
</executions>
205+
</plugin>
206+
<plugin>
207+
<groupId>org.apache.maven.plugins</groupId>
208+
<artifactId>maven-source-plugin</artifactId>
209+
<version>${maven-source-plugin.version}</version>
210+
<executions>
211+
<execution>
212+
<id>attach-sources</id>
213+
<goals>
214+
<goal>jar</goal>
215+
</goals>
216+
</execution>
217+
</executions>
218+
</plugin>
219+
220+
<!-- Snyk -->
193221

194222
<plugin>
195223
<groupId>io.snyk</groupId>

zap-client-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.continuous-security-tools</groupId>
77
<artifactId>zap-java-integration</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<relativePath>../</relativePath>
1010
</parent>
1111

zap-report-parser/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.continuous-security-tools</groupId>
77
<artifactId>zap-java-integration</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<relativePath>../</relativePath>
1010
</parent>
1111

zap-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.continuous-security-tools</groupId>
77
<artifactId>zap-java-integration</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<relativePath>../</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)