minibus
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.padrig64</groupId>
<artifactId>minibus</artifactId>
<version>0.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.github.padrig64</groupId>
<artifactId>minibus</artifactId>
<version>0.1.0</version>
<packaging>bundle</packaging>
<name>MiniBus</name>
<description>In-JVM pub/sub event bus for Java 8</description>
<url>https://github.com/padrig64/MiniBus</url>
<licenses>
<license>
<name>Simplified BSD License</name>
<url>https://raw.github.com/padrig64/MiniBus/master/LICENSE.md</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:padrig64/MiniBus.git</connection>
<developerConnection>scm:git:git@github.com:padrig64/MiniBus.git</developerConnection>
<url>http://github.com/padrig64/minibus/tree/master</url>
<tag>minibus-0.1.0</tag>
</scm>
<developers>
<developer>
<id>padrig64</id>
<name>Patrick Moawad</name>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Maven plugins -->
<mavenbundleplugin.version>3.3.0</mavenbundleplugin.version>
<mavencompilerplugin.version>3.6.1</mavencompilerplugin.version>
<mavenjavadocplugin.version>2.10.4</mavenjavadocplugin.version>
<mavengpgplugin.version>1.6</mavengpgplugin.version>
<mavenreleaseplugin.version>2.5.3</mavenreleaseplugin.version>
<mavensourceplugin.version>3.0.1</mavensourceplugin.version>
<!-- Dependencies -->
<junit.version>4.12</junit.version>
<mockito.version>1.10.19</mockito.version>
<slf4j.version>1.7.25</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${mavensourceplugin.version}</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>${mavenjavadocplugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${mavenbundleplugin.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<_nouses>true</_nouses>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Import-Package>*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${mavenreleaseplugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- PGP signatures generation -->
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${mavengpgplugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>