evenbus-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.progressoft.brix.domino</groupId>
<artifactId>evenbus-sample</artifactId>
<version>1.0-rc.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>domino-event-bus</artifactId>
<groupId>com.progressoft.brix.domino</groupId>
<version>1.0-rc.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>evenbus-sample</artifactId>
<packaging>pom</packaging>
<name>evenbus-sample</name>
<url>https://github.com/GwtDomino/domino-event-bus</url>
<description>Dmino vertx event bus sample module</description>
<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<mavenVersion>3.0</mavenVersion>
<domino.version>1.0-rc.1</domino.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>evenbus-sample-frontend</module>
<module>evenbus-sample-frontend-ui</module>
<module>evenbus-sample-shared</module>
<module>evenbus-sample-backend</module>
</modules>
</project>