forked from camunda/camunda-external-task-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
90 lines (76 loc) · 2.73 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>Camunda External Task Client - ROOT</name>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-external-task-client-root</artifactId>
<inceptionYear>2018</inceptionYear>
<version>1.5.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.camunda</groupId>
<artifactId>camunda-bpm-release-parent</artifactId>
<version>2.0.0</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
</parent>
<modules>
<module>qa</module>
<module>client</module>
</modules>
<properties>
<!-- please, during a release, update the camunda.version tag in the client pom as well -->
<camunda.version>7.15.0-SNAPSHOT</camunda.version>
<license.includeTransitiveDependencies>false</license.includeTransitiveDependencies>
<!-- disable javadoc linter for JDK8 to not fail on incomplete javadoc -->
<additionalparam>-Xdoclint:none</additionalparam>
<version.plugin.license>1.14</version.plugin.license>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bom</artifactId>
<version>${camunda.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- LICENSE PLUGIN -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${version.plugin.license}</version>
<configuration>
<acceptPomPackaging>true</acceptPomPackaging>
<excludedScopes>test</excludedScopes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>license-header-check</id>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<url>http://github.com/camunda/camunda-external-task-client-java</url>
<connection>scm:git:[email protected]:camunda/camunda-external-task-client-java.git</connection>
<developerConnection>scm:git:[email protected]:camunda/camunda-external-task-client-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<repositories>
<repository><id>fix</id><url>me</url></repository>
</repositories>
</project>