-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpom.xml
91 lines (84 loc) · 2.49 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
91
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.seagate.kinetic</groupId>
<artifactId>kinetic-java</artifactId>
<packaging>pom</packaging>
<version>3.0.7-SNAPSHOT</version>
<name>Kinetic</name>
<description>Kinetic open source storage platform</description>
<url>https://github.com/Kinetic/kinetic-java</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.test.excludes />
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<licenses>
<license>
<name>Mozilla Public License</name>
<url>https://github.com/Kinetic/kinetic-java/tree/master/LICENSES</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<developerConnection>scm:git:[email protected]:Kinetic/kinetic-java.git</developerConnection>
<connection>scm:git:[email protected]:Kinetic/kinetic-java.git</connection>
<url>https://github.com/Kinetic/kinetic-java</url>
</scm>
<developers>
<developer>
<id>seagate.com</id>
<name>The Kinetic Project Contributors</name>
<email>[email protected]/</email>
<url>http://seagate.com</url>
<organization>The Kinetic Project</organization>
<organizationUrl>http://seagate.com/</organizationUrl>
</developer>
</developers>
<modules>
<module>kinetic-common</module>
<module>kinetic-client</module>
<module>kinetic-simulator</module>
<module>kinetic-test</module>
<module>kinetic-all</module>
</modules>
<profiles>
<!-- Jenkins by default defines a property BUILD_NUMBER which is used to
enable the profile. -->
<profile>
<id>jenkins</id>
<activation>
<property>
<name>env.BUILD_NUMBER</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<formats>
<format>xml</format>
</formats>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>