Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
4   <modelVersion>4.0.0</modelVersion>
5   <groupId>com.ceph</groupId>
6   <artifactId>libcephfs</artifactId>
7   <packaging>jar</packaging>
8   <version>${version}</version>
9   <name>libcephfs</name>
10   <url>http://www.ceph.com</url>
11   <description>Ceph FS Java API.</description>
12   <licenses>
13     <license>
14       <name>GNU Lesser General Public License, Version 2.1</name>
15       <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
16     </license>
17   </licenses>
18   <developers>
19     <developer>
20           <name>Sage Weil</name>
21           <email>sage@inktank.com</email>
22           <organization>Red Hat</organization>
23           <organizationUrl>http://www.redhat.com</organizationUrl>
24     </developer>
25
26     <developer>
27           <name>Noah Watkins</name>
28           <email>noahwatkins@gmail.com</email>
29           <organization>Red Hat</organization>
30           <organizationUrl>http://www.redhat.com</organizationUrl>
31     </developer>
32
33     <developer>
34       <name>Greg Farnum</name>
35       <email>greg@inktank.com</email>
36       <organization>Red Hat</organization>
37       <organizationUrl>http://www.redhat.com</organizationUrl>
38     </developer>
39
40     <developer>
41       <name>Joe Buck</name>
42       <email>jbbuck@gmail.com</email>
43     </developer>
44
45     <developer>
46       <name>Gary Lowell</name>
47       <email>glowell@inktank.com</email>
48       <organization>Red Hat</organization>
49       <organizationUrl>http://www.redhat.com</organizationUrl>
50     </developer>
51
52     <developer>
53       <name>Dmitry Smirnov</name>
54       <email>onlyjob@member.fsf.org</email>
55     </developer>
56
57     <developer>
58       <name>Danny Al-Gaaf</name>
59       <email>danny.al-gaaf@bisect.de</email>
60     </developer>
61
62     <developer>
63       <name>Huamin Chen</name>
64       <email>hchen@redhat.com</email>
65       <organization>Red Hat</organization>
66       <organizationUrl>http://www.redhat.com</organizationUrl>
67     </developer>
68   </developers>
69   <scm>
70     <connection>scm:git:git@github.com:ceph/ceph.git</connection>
71     <developerConnection>scm:git:git@github.com:ceph/ceph.git</developerConnection>
72     <url>scm:git:git@github.com:ceph/ceph.git</url>
73   </scm>
74
75   <distributionManagement>
76     <snapshotRepository>
77       <id>ossrh</id>
78       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
79     </snapshotRepository>
80   </distributionManagement>
81
82
83   <build>
84     <sourceDirectory>java</sourceDirectory>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-compiler-plugin</artifactId>
89         <version>3.1</version>
90       </plugin>
91       <plugin>
92         <groupId>org.apache.maven.plugins</groupId>
93         <artifactId>maven-release-plugin</artifactId>
94         <version>2.4.1</version>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-source-plugin</artifactId>
99         <executions>
100           <execution>
101             <id>attach-sources</id>
102             <goals>
103               <goal>jar</goal>
104             </goals>
105           </execution>
106         </executions>
107       </plugin>
108       <plugin>
109         <groupId>org.apache.maven.plugins</groupId>
110         <artifactId>maven-javadoc-plugin</artifactId>
111         <executions>
112           <execution>
113             <id>attach-javadocs</id>
114             <goals>
115               <goal>jar</goal>
116             </goals>
117           </execution>
118         </executions>
119       </plugin>
120       <plugin>
121         <groupId>org.sonatype.plugins</groupId>
122         <artifactId>nexus-staging-maven-plugin</artifactId>
123         <version>1.6.2</version>
124         <extensions>true</extensions>
125         <configuration>
126           <serverId>ossrh</serverId>
127           <nexusUrl>https://oss.sonatype.org/</nexusUrl>
128           <autoReleaseAfterClose>true</autoReleaseAfterClose>
129         </configuration>
130       </plugin>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-gpg-plugin</artifactId>
134         <version>1.5</version>
135         <executions>
136           <execution>
137             <id>sign-artifacts</id>
138             <phase>verify</phase>
139             <goals>
140               <goal>sign</goal>
141             </goals>
142           </execution>
143         </executions>
144       </plugin>
145     </plugins>
146   </build>
147 </project>