This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 494
/
pom.xml
79 lines (68 loc) · 2.31 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
<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.spotify</groupId>
<artifactId>foss-root</artifactId>
<version>6</version>
</parent>
<artifactId>dockerfile-maven</artifactId>
<version>1.4.14-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dockerfile Maven Support</name>
<description>A set of Maven tools for dealing with Dockerfiles</description>
<url>https://github.com/spotify/dockerfile-maven</url>
<modules>
<module>extension</module>
<module>plugin</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:ssh://[email protected]/spotify/dockerfile-maven.git</connection>
<developerConnection>scm:git:ssh://[email protected]/spotify/dockerfile-maven.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/spotify/dockerfile-maven</url>
</scm>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<violationSeverity>warning</violationSeverity>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>dflemstr</id>
<email>[email protected]</email>
<name>David Flemström</name>
</developer>
<developer>
<id>davidxia</id>
<email>[email protected]</email>
<name>David Xia</name>
</developer>
<developer>
<id>mattnworb</id>
<email>[email protected]</email>
<name>Matt Brown</name>
</developer>
</developers>
</project>