Skip to content

Commit

Permalink
deploy all modules
Browse files Browse the repository at this point in the history
  • Loading branch information
BeckerFrank committed Apr 14, 2024
1 parent 847d1b3 commit 1a33953
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
1 change: 0 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ pipeline {
sh '''
mvn \
deploy \
-f mylyn.docs/pom.xml \
-U -B -V -e \
-s /home/jenkins/.m2/settings-deploy-ossrh-docs.xml \
$MAVEN_PROFILES \
Expand Down
49 changes: 49 additions & 0 deletions mylyn.releng/org.eclipse.mylyn.parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,55 @@
<test.osvmargs>-XstartOnFirstThread</test.osvmargs>
</properties>
</profile>
<profile>
<id>ossrh</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-gpg-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign-p2-artifacts</goal>
</goals>
<configuration>
<gpgArguments>
<arg>pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
Expand Down

0 comments on commit 1a33953

Please sign in to comment.