123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <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>
- <parent>
- <relativePath>../</relativePath>
- <artifactId>moquette-parent</artifactId>
- <groupId>io.moquette</groupId>
- <version>0.11-SNAPSHOT</version>
- </parent>
- <artifactId>moquette-performance</artifactId>
- <packaging>jar</packaging>
- <name>Moquette - performance tests</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <bintray.package>io.moquette.moquette-performance</bintray.package>
- </properties>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>moquette-broker</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>moquette-broker</artifactId>
- <version>${project.version}</version>
- <type>test-jar</type>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>io.netty</groupId>-->
- <!--<artifactId>netty-common</artifactId>-->
- <!--<version>${netty.version}</version>-->
- <!--</dependency>-->
- <!---->
- <!--<dependency>-->
- <!--<groupId>io.netty</groupId>-->
- <!--<artifactId>netty-buffer</artifactId>-->
- <!--<version>${netty.version}</version>-->
- <!--</dependency>-->
- <!---->
- <!--<dependency>-->
- <!--<groupId>io.netty</groupId>-->
- <!--<artifactId>netty-transport</artifactId>-->
- <!--<version>${netty.version}</version>-->
- <!--</dependency>-->
- <!---->
- <!--<dependency>-->
- <!--<groupId>io.netty</groupId>-->
- <!--<artifactId>netty-handler</artifactId>-->
- <!--<version>${netty.version}</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.6.4</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-codec-mqtt</artifactId>
- <version>${netty.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hdrhistogram</groupId>
- <artifactId>HdrHistogram</artifactId>
- <version>2.1.2</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.paho</groupId>
- <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty.toolchain</groupId>
- <artifactId>jetty-perf-helper</artifactId>
- <version>1.0.5</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>io/moquette/parser/netty/TestUtils.java</exclude>
- <exclude>io/moquette/parser/netty/TestUtils$*</exclude>
- </excludes>
- </configuration>
- </plugin>
- <!-- Includes to generate OSGi headers -->
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <executions>
- <execution>
- <id>bundle-manifest</id>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <distributionManagement>
- <repository>
- <id>bintray</id>
- <url>https://api.bintray.com/maven/${bintray.repo}/${bintray.package}</url>
- </repository>
- </distributionManagement>
- </project>
|