Skip to content

Commit

Permalink
Finish Liquibase Release Automation
Browse files Browse the repository at this point in the history
- Cleaning up install/deploy logic
DAT-3131
  • Loading branch information
nvoxland committed Nov 19, 2019
1 parent cbe103d commit 54ccc02
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions base.pom.xml
Expand Up @@ -177,6 +177,19 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
<gpgArguments>
<arg>--batch</arg>
<!-- This is necessary for gpg to not try to use the pinentry programs -->
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down
1 change: 1 addition & 0 deletions liquibase-cdi/pom.xml
Expand Up @@ -137,6 +137,7 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
<gpgArguments>
<!-- This is necessary for gpg to not try to use the pinentry programs -->
<arg>--batch</arg>
Expand Down
1 change: 1 addition & 0 deletions liquibase-dist/pom.xml
Expand Up @@ -216,6 +216,7 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
<gpgArguments>
<arg>--batch</arg>
<arg>--no-tty</arg>
Expand Down
1 change: 1 addition & 0 deletions liquibase-maven-plugin/pom.xml
Expand Up @@ -167,6 +167,7 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<passphrase>${env.GPG_PASSPHRASE}</passphrase>
<gpgArguments>
<arg>--batch</arg>
<arg>--no-tty</arg>
Expand Down

0 comments on commit 54ccc02

Please sign in to comment.