Skip to content

Commit

Permalink
Release profile fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Hi-Fi committed Dec 17, 2019
1 parent 04dea3b commit 8adf2ee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ mvn site
* Send the material to Sonatype (see Deploy project to Sonatype below)

```bash
mvn deploy
mvn deploy -Pdeploy
```
* do close and release from Staging Repository at https://oss.sonatype.org/index.html#welcome

Expand Down Expand Up @@ -106,6 +106,6 @@ As a prerequisite, you need account at Sonatype Jira, gpg keys, and Sonatype ser
See https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide

```bash
mvn deploy
mvn deploy -Pdeploy
```
Then do close and release from Staging Repository at https://oss.sonatype.org/index.html#welcome
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@
<url>http://robotframework.org</url>
</organization>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/robotframework/MavenPlugin</url>
<system>Github Actions</system>
<url>https://github.com/robotframework/MavenPlugin/actions</url>
</ciManagement>

<profiles>
<profile>
<id>default</id>
Expand Down Expand Up @@ -104,7 +105,7 @@
</profile>

<profile>
<id>release</id>
<id>deploy</id>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -173,6 +174,13 @@
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- Prevent `gpg` from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 8adf2ee

Please sign in to comment.