-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpom.xml
55 lines (51 loc) · 1.79 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
<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>
<parent>
<groupId>com.foldright.auto-pipeline</groupId>
<artifactId>auto-pipeline-parent</artifactId>
<version>0.5.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>auto-pipeline-examples</artifactId>
<name>${project.artifactId}</name>
<description>examples of auto-pipeline.</description>
<url>https://github.com/foldright/auto-pipeline</url>
<inceptionYear>2021</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:foldright/auto-pipeline.git</connection>
<developerConnection>scm:git:[email protected]:foldright/auto-pipeline.git</developerConnection>
<url>https://github.com/foldright/auto-pipeline</url>
</scm>
<properties>
<!--
skip deploy for examples module
https://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html#skip
-->
<maven.deploy.skip>true</maven.deploy.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<!--
annotation processor dependency should be "provided" scope.
-->
<groupId>com.foldright.auto-pipeline</groupId>
<artifactId>auto-pipeline-processor</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>