123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <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>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <netty.version>4.1.6.Final</netty.version>
- <source.version>1.7</source.version>
- <target.version>1.7</target.version>
- <bintray.repo>andsel/maven</bintray.repo>
- <bintray.parent.package>io.moquette.moquette-parent</bintray.parent.package>
- </properties>
- <groupId>io.moquette</groupId>
- <artifactId>moquette-parent</artifactId>
- <packaging>pom</packaging>
- <version>0.10-SNAPSHOT</version>
- <name>Moquette MQTT</name>
- <description>Moquette lightweight MQTT Broker</description>
- <inceptionYear>2011</inceptionYear>
- <url>https://github.com/andsel/moquette/</url>
- <licenses>
- <license>
- <name>The Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- <license>
- <name>Eclipse Public License - Version 1.0</name>
- <url>http://www.eclipse.org/org/documents/epl-v10.php</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>andsel</id>
- <name>Andrea Selva</name>
- <roles>
- <role>architect</role>
- <role>developer</role>
- <role>founder</role>
- </roles>
- <timezone>+1</timezone>
- </developer>
- </developers>
- <contributors>
- <contributor>
- <name>Steven Warwick</name>
- <url>http://stevenwarwick.com</url>
- </contributor>
- <contributor>
- <name>Igor Yova</name>
- <url>https://github.com/Fameing</url>
- </contributor>
- <contributor>
- <name>Luca Capra</name>
- <url>https://github.com/muka</url>
- </contributor>
- <contributor>
- <name>Wagner Macedo</name>
- <url>https://github.com/wagnerluis1982</url>
- </contributor>
- <contributor>
- <name>Luis Barrios</name>
- <url>https://github.com/lbarriosh</url>
- </contributor>
- <contributor>
- <name>Christophe Mourette</name>
- <url>https://github.com/mackristof</url>
- </contributor>
- <contributor>
- <name>Victor Kazakov</name>
- <url>https://github.com/kazvictor</url>
- </contributor>
- <contributor>
- <name>Neeme Praks</name>
- <url>https://github.com/nemecec</url>
- </contributor>
- <contributor>
- <name>Kevin Berendsen</name>
- <url>https://github.com/kevto</url>
- </contributor>
- <contributor>
- <name>Chris Schaefer</name>
- <url>https://github.com/windbender</url>
- </contributor>
- <contributor>
- <name>Keith Hughes</name>
- <url>http://www.inhabitech.com/blog/author/keith/</url>
- </contributor>
- </contributors>
- <scm>
- <connection>scm:git:git@github.com:andsel/moquette.git</connection>
- <developerConnection>scm:git:git@github.com:andsel/moquette.git</developerConnection>
- <url>git@github.com:andsel/moquette.git</url>
- </scm>
- <modules>
- <module>netty_parser</module>
- <module>broker</module>
- <module>distribution</module>
- <module>embedding_moquette</module>
- <module>osgi_test</module>
- <module>perf</module>
- </modules>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.6</version>
- </plugin>
- </plugins>
- </reporting>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${source.version}</source>
- <target>${target.version}</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.17</version>
- <configuration>
- <configLocation>checkstyle.xml</configLocation>
- <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
- <!--
- <configLocation>/google_checks.xml</configLocation>
- -->
- <consoleOutput>true</consoleOutput>
- </configuration>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>release-sign-artifacts</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- <repositories>
- <repository>
- <id>Paho Releases</id>
- <url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
- </repository>
- <repository>
- <id>sonatype-snapshots</id>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </repository>
- </repositories>
- <distributionManagement>
- <repository>
- <id>bintray</id>
- <url>https://api.bintray.com/maven/${bintray.repo}/${bintray.parent.package}</url>
- </repository>
- </distributionManagement>
- </project>
|