-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32003b5
commit b774cca
Showing
2 changed files
with
89 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -524,6 +524,90 @@ | |
</dependencies> | ||
</dependencyManagement> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.0.1</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>deploy</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<!-- Various information, not used by the build --> | ||
|
||
<url>http://www.flowable.org</url> | ||
<licenses> | ||
<license> | ||
<name>Apache v2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> | ||
</license> | ||
</licenses> | ||
<organization> | ||
<name>Flowable</name> | ||
<url>http://www.flowable.org</url> | ||
</organization> | ||
<developers> | ||
<developer> | ||
<name>Tijs Rademakers</name> | ||
<organization>Flowable</organization> | ||
<url>http://www.flowable.org</url> | ||
</developer> | ||
<developer> | ||
<name>Joram Barrez</name> | ||
<organization>Flowable</organization> | ||
<url>http://www.flowable.org</url> | ||
</developer> | ||
<developer> | ||
<name>Filip Hrisafov</name> | ||
<organization>Flowable</organization> | ||
<url>http://www.flowable.org</url> | ||
</developer> | ||
<developer> | ||
<name>Yvo Swillens</name> | ||
<organization>Flowable</organization> | ||
<url>http://www.flowable.org</url> | ||
</developer> | ||
<developer> | ||
<name>Josh Long</name> | ||
<organization>Pivotal</organization> | ||
<url>http://www.pivotal.com</url> | ||
</developer> | ||
</developers> | ||
<issueManagement> | ||
<system>Github issues</system> | ||
<url>https://github.com/flowable/flowable-engine/issues</url> | ||
</issueManagement> | ||
<scm> | ||
<url>[email protected]:flowable/flowable-engine.git</url> | ||
<connection>scm:git:[email protected]:flowable/flowable-engine.git</connection> | ||
<developerConnection>scm:git:[email protected]:flowable/flowable-engine.git</developerConnection> | ||
</scm> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>sonatype-nexus-snapshots</id> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters