Skip to content

Commit

Permalink
Skip maven-gpg-plugin in the gwtserializer module.
Browse files Browse the repository at this point in the history
I'm not sure why this has started mattering. Perhaps because of an update to the plugin. But without this change we get this when trying to deploy AutoValue:

```
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-gpg-plugin:3.1.0:sign (sign-artifacts) on project gwtserializer: The project artifact has not been assembled yet. Please do not invoke this goal before the lifecycle phase "package". -> [Help 1]
```

RELNOTES=n/a
PiperOrigin-RevId: 544057275
  • Loading branch information
eamonnmcmanus authored and Google Java Core Libraries committed Jun 28, 2023
1 parent 7d93867 commit ac6de46
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions value/src/it/gwtserializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit ac6de46

Please sign in to comment.