pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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.6.Final</netty.version>
  7. <source.version>1.7</source.version>
  8. <target.version>1.7</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.10-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. </contributors>
  88. <scm>
  89. <connection>scm:git:git@github.com:andsel/moquette.git</connection>
  90. <developerConnection>scm:git:git@github.com:andsel/moquette.git</developerConnection>
  91. <url>git@github.com:andsel/moquette.git</url>
  92. </scm>
  93. <modules>
  94. <module>netty_parser</module>
  95. <module>broker</module>
  96. <module>distribution</module>
  97. <module>embedding_moquette</module>
  98. <module>osgi_test</module>
  99. <module>perf</module>
  100. </modules>
  101. <reporting>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.codehaus.mojo</groupId>
  105. <artifactId>cobertura-maven-plugin</artifactId>
  106. <version>2.6</version>
  107. </plugin>
  108. </plugins>
  109. </reporting>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-compiler-plugin</artifactId>
  115. <configuration>
  116. <source>${source.version}</source>
  117. <target>${target.version}</target>
  118. </configuration>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-checkstyle-plugin</artifactId>
  123. <version>2.17</version>
  124. <configuration>
  125. <configLocation>checkstyle.xml</configLocation>
  126. <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
  127. <!--
  128. <configLocation>/google_checks.xml</configLocation>
  129. -->
  130. <consoleOutput>true</consoleOutput>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <phase>validate</phase>
  135. <goals>
  136. <goal>check</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. <profiles>
  144. <profile>
  145. <id>release-sign-artifacts</id>
  146. <build>
  147. <plugins>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-source-plugin</artifactId>
  151. <executions>
  152. <execution>
  153. <id>attach-sources</id>
  154. <goals>
  155. <goal>jar</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-javadoc-plugin</artifactId>
  163. <executions>
  164. <execution>
  165. <id>attach-javadocs</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-gpg-plugin</artifactId>
  175. <executions>
  176. <execution>
  177. <id>sign-artifacts</id>
  178. <phase>package</phase>
  179. <goals>
  180. <goal>sign</goal>
  181. </goals>
  182. </execution>
  183. </executions>
  184. </plugin>
  185. </plugins>
  186. </build>
  187. </profile>
  188. </profiles>
  189. <repositories>
  190. <repository>
  191. <id>Paho Releases</id>
  192. <url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
  193. </repository>
  194. <repository>
  195. <id>sonatype-snapshots</id>
  196. <snapshots>
  197. <enabled>true</enabled>
  198. </snapshots>
  199. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  200. </repository>
  201. </repositories>
  202. <distributionManagement>
  203. <repository>
  204. <id>bintray</id>
  205. <url>https://api.bintray.com/maven/${bintray.repo}/${bintray.parent.package}</url>
  206. </repository>
  207. </distributionManagement>
  208. </project>