bloom-flower-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>bloom-flower-adapter</artifactId>
<version>0.1.1</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
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.flowerjvm</groupId>
<artifactId>bloom-parent</artifactId>
<version>0.1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bloom-flower-adapter</artifactId>
<packaging>jar</packaging>
<name>Bloom Flower Adapter</name>
<description>
Bridges Bloom event bus to the Flower core EventBus SPI.
Java 8 compatible. Keeps flower-core free of any Bloom dependency.
</description>
<dependencies>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>bloom-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-core</artifactId>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-eventloop</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.github.flowerjvm.bloom.flower</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>