Skip to content

Commit

Permalink
Bind everything to deploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jan 19, 2024
1 parent c07b9b7 commit 82b5ec7
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipStaging>true</skipStaging>
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -740,13 +740,30 @@
</configuration>
<executions>
<execution>
<phase>verify</phase>
<phase>deploy</phase>
<goals>
<goal>graph</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<configuration>
<message>[depgraph-maven-plugin] Synchronize dependencies in UML component diagram</message>
<includes>doc/dependency-graph.puml</includes>
<pushChanges>true</pushChanges>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>checkin</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit 82b5ec7

Please sign in to comment.