pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <properties>
  5. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  6. <netty.version>4.1.12.Final</netty.version>
  7. <source.version>1.8</source.version>
  8. <target.version>1.8</target.version>
  9. <bintray.repo>andsel/maven</bintray.repo>
  10. <bintray.parent.package>io.moquette.moquette-parent</bintray.parent.package>
  11. </properties>
  12. <groupId>io.moquette</groupId>
  13. <artifactId>moquette-parent</artifactId>
  14. <packaging>pom</packaging>
  15. <version>0.11-SNAPSHOT</version>
  16. <name>Moquette MQTT</name>
  17. <description>Moquette lightweight MQTT Broker</description>
  18. <inceptionYear>2011</inceptionYear>
  19. <url>https://github.com/andsel/moquette/</url>
  20. <licenses>
  21. <license>
  22. <name>The Apache License, Version 2.0</name>
  23. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  24. </license>
  25. <license>
  26. <name>Eclipse Public License - Version 1.0</name>
  27. <url>http://www.eclipse.org/org/documents/epl-v10.php</url>
  28. </license>
  29. </licenses>
  30. <developers>
  31. <developer>
  32. <id>andsel</id>
  33. <name>Andrea Selva</name>
  34. <roles>
  35. <role>architect</role>
  36. <role>developer</role>
  37. <role>founder</role>
  38. </roles>
  39. <timezone>+1</timezone>
  40. </developer>
  41. </developers>
  42. <contributors>
  43. <contributor>
  44. <name>Steven Warwick</name>
  45. <url>http://stevenwarwick.com</url>
  46. </contributor>
  47. <contributor>
  48. <name>Igor Yova</name>
  49. <url>https://github.com/Fameing</url>
  50. </contributor>
  51. <contributor>
  52. <name>Luca Capra</name>
  53. <url>https://github.com/muka</url>
  54. </contributor>
  55. <contributor>
  56. <name>Wagner Macedo</name>
  57. <url>https://github.com/wagnerluis1982</url>
  58. </contributor>
  59. <contributor>
  60. <name>Luis Barrios</name>
  61. <url>https://github.com/lbarriosh</url>
  62. </contributor>
  63. <contributor>
  64. <name>Christophe Mourette</name>
  65. <url>https://github.com/mackristof</url>
  66. </contributor>
  67. <contributor>
  68. <name>Victor Kazakov</name>
  69. <url>https://github.com/kazvictor</url>
  70. </contributor>
  71. <contributor>
  72. <name>Neeme Praks</name>
  73. <url>https://github.com/nemecec</url>
  74. </contributor>
  75. <contributor>
  76. <name>Kevin Berendsen</name>
  77. <url>https://github.com/kevto</url>
  78. </contributor>
  79. <contributor>
  80. <name>Chris Schaefer</name>
  81. <url>https://github.com/windbender</url>
  82. </contributor>
  83. <contributor>
  84. <name>Keith Hughes</name>
  85. <url>http://www.inhabitech.com/blog/author/keith/</url>
  86. </contributor>
  87. <contributor>
  88. <name>Luca Capra</name>
  89. <email>luca.capra@create-net.org</email>
  90. </contributor>
  91. <contributor>
  92. <name>konradm</name>
  93. </contributor>
  94. <contributor>
  95. <name>pkhanal</name>
  96. </contributor>
  97. </contributors>
  98. <scm>
  99. <connection>scm:git:git@github.com:andsel/moquette.git</connection>
  100. <developerConnection>scm:git:git@github.com:andsel/moquette.git</developerConnection>
  101. <url>git@github.com:andsel/moquette.git</url>
  102. </scm>
  103. <modules>
  104. <module>broker</module>
  105. <module>mapdb_storage</module>
  106. <module>h2_storage</module>
  107. <module>distribution</module>
  108. <module>embedding_moquette</module>
  109. <module>osgi_test</module>
  110. <module>perf</module>
  111. </modules>
  112. <reporting>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.codehaus.mojo</groupId>
  116. <artifactId>cobertura-maven-plugin</artifactId>
  117. <version>2.6</version>
  118. </plugin>
  119. </plugins>
  120. </reporting>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-compiler-plugin</artifactId>
  126. <configuration>
  127. <source>${source.version}</source>
  128. <target>${target.version}</target>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-checkstyle-plugin</artifactId>
  134. <version>2.17</version>
  135. <configuration>
  136. <configLocation>checkstyle.xml</configLocation>
  137. <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
  138. <!--
  139. <configLocation>/google_checks.xml</configLocation>
  140. -->
  141. <failOnViolation>true</failOnViolation>
  142. <consoleOutput>true</consoleOutput>
  143. </configuration>
  144. <executions>
  145. <execution>
  146. <phase>validate</phase>
  147. <goals>
  148. <goal>check</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <profiles>
  156. <profile>
  157. <id>release-sign-artifacts</id>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-source-plugin</artifactId>
  163. <executions>
  164. <execution>
  165. <id>attach-sources</id>
  166. <goals>
  167. <goal>jar</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-javadoc-plugin</artifactId>
  175. <executions>
  176. <execution>
  177. <id>attach-javadocs</id>
  178. <goals>
  179. <goal>jar</goal>
  180. </goals>
  181. </execution>
  182. </executions>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-gpg-plugin</artifactId>
  187. <executions>
  188. <execution>
  189. <id>sign-artifacts</id>
  190. <phase>package</phase>
  191. <goals>
  192. <goal>sign</goal>
  193. </goals>
  194. </execution>
  195. </executions>
  196. </plugin>
  197. </plugins>
  198. </build>
  199. </profile>
  200. </profiles>
  201. <repositories>
  202. <repository>
  203. <id>Paho Releases</id>
  204. <url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
  205. </repository>
  206. <repository>
  207. <id>sonatype-snapshots</id>
  208. <snapshots>
  209. <enabled>true</enabled>
  210. </snapshots>
  211. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  212. </repository>
  213. </repositories>
  214. <distributionManagement>
  215. <repository>
  216. <id>bintray</id>
  217. <url>https://api.bintray.com/maven/${bintray.repo}/${bintray.parent.package}</url>
  218. </repository>
  219. </distributionManagement>
  220. </project>