mbassador
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.engio</groupId> <artifactId>mbassador</artifactId> <version>1.3.2</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.engio</groupId> <artifactId>mbassador</artifactId> <version>1.3.2</version> <packaging>bundle</packaging> <name>mbassador</name> <description> Mbassador is a fast and flexible event bus system following the publish subscribe pattern. It is designed for ease of use and aims to be feature rich and extensible while preserving resource efficiency and performance. It provides non-blocking iterators and minimal write contention with low memory footprint. Some features: declarative handler definition via annotations, sync and/or async event delivery, weak or strong references, configurable event filters, </description> <!-- Documentation for this pom see http://central.sonatype.org/pages/apache-maven.html For deployment (and release of non SNAPSHOT): mvn clean deploy For manual release of staging: mvn nexus-staging:release tagging and release on github --> <url>https://github.com/bennidi/mbassador</url> <licenses> <license> <name>MIT license</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <url>git@github.com:bennidi/mbassador.git</url> <connection>scm:git:git@github.com:bennidi/mbassador.git</connection> <tag>mbassador-1.2.2</tag> <developerConnection>scm:git:git@github.com:bennidi/mbassador.git</developerConnection> </scm> <developers> <developer> <id>bennidi</id> <name>Benjamin Diedrichsen</name> <timezone>+1</timezone> <email>b.diedrichsen@googlemail.com</email> </developer> </developers> <properties> <jdk.version>1.7</jdk.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.java.version>1.7</project.build.java.version> <github.url>file://${project.basedir}/mvn-local-repo</github.url> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.5</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>el-api</artifactId> <scope>provided</scope> <version>2.2</version> </dependency> <dependency> <groupId>de.odysseus.juel</groupId> <artifactId>juel-impl</artifactId> <version>2.2.7</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>de.odysseus.juel</groupId> <artifactId>juel-spi</artifactId> <version>2.2.7</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> <!-- Local repository (for testing) <distributionManagement> <repository> <id>mbassador-github-repo</id> <url>${github.url}</url> </repository> </distributionManagement> --> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.7</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Export-Package>{local-packages}</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${project.build.java.version}</source> <target>${project.build.java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <!-- Sets the VM argument line used when unit tests are run.--> <argLine>${surefireArgLine}</argLine> <skipTests>false</skipTests> <excludes> <!-- exclude the suite which is a convenience class for running all tests from IDE or using scripts --> <exclude>AllTests.java</exclude> </excludes> </configuration> </plugin> <!-- bind the source attaching to package phase --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <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> <version>2.10.3</version> <configuration> <aggregate>true</aggregate> <show>public</show> <nohelp>true</nohelp> <header>mbassador, ${project.version}</header> <footer>mbassador, ${project.version}</footer> <doctitle>mbassador, ${project.version}</doctitle> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- To build and publish the javadoc run mvn clean javadoc:javadoc scm-publish:publish-scm --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <version>1.1</version> <configuration> <checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment> <content>${project.reporting.outputDirectory}/apidocs</content> <skipDeletedFiles>true</skipDeletedFiles> <pubScmUrl>scm:git:git@github.com:bennidi/mbassador.git</pubScmUrl> <scmBranch>gh-pages</scmBranch> <!-- branch with static site on github--> </configuration> </plugin> </plugins> </build> <profiles> <!-- Profile to run full test suite with coverage reporting engine JaCoCo mvn clean test -Djacoco --> <profile> <id>jacoco-coverage</id> <activation> <property> <name>jacoco</name> </property> </activation> <build> <plugins> <!-- JaCoCo integration for code coverage reports To receive a full list of goals and available parameters you can use maven-help-plugin: mvn help:describe -Dplugin=org.jacoco:jacoco-maven-plugin -Ddetail --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.5.201505241946</version> <executions> <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when Maven the Surefire plugin is executed. --> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <!-- Sets the path to the file which contains the execution data. --> <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile> <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. --> <!-- <excludes> <exclude>net.engio.mbassy.bus.error.*</exclude> </excludes> --> <propertyName>surefireArgLine</propertyName> </configuration> </execution> <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. --> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <!-- Sets the path to the file which contains the execution data. --> <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile> <!-- Sets the output directory for the code coverage report. --> <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>