event-handler-lightblue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.esbtools.eventhandler</groupId>
<artifactId>event-handler-lightblue</artifactId>
<version>0.1.15</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2016 esbtools Contributors and/or its affiliates.
~
~ This file is part of esbtools.
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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>event-handler-parent</artifactId>
<groupId>org.esbtools.eventhandler</groupId>
<version>0.1.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>event-handler-lightblue</artifactId>
<name>event-handler: ${project.groupId}|${project.artifactId}</name>
<properties>
<version.event-handler-lib>0.1.15</version.event-handler-lib>
<version.lightblue-notification-hook-model>0.1.3</version.lightblue-notification-hook-model>
<version.lightblue-java-generator>0.1.5-SNAPSHOT</version.lightblue-java-generator>
<version.lightblue-client>5.16.0</version.lightblue-client>
<version.jackson>2.6.4</version.jackson>
<version.exec-maven-plugin>1.5.0</version.exec-maven-plugin>
<sonar.exclusions>**/*Test.java,**/*Exception.java</sonar.exclusions>
<sonar.projectName>event-handler-lightblue</sonar.projectName>
<!-- Override with -Dmetadata.outputDirectory= -->
<metadata.outputDirectory>${project.build.outputDirectory}</metadata.outputDirectory>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${version.exec-maven-plugin}</version>
<executions>
<execution>
<id>generate-lightblue-entity-metadata</id>
<phase>process-classes</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<includeProjectDependencies>true</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
<executableDependency>
<groupId>com.redhat.lightblue.generator</groupId>
<artifactId>lightblue-java-generator-bin</artifactId>
</executableDependency>
<mainClass>com.redhat.lightblue.generator.Main</mainClass>
<arguments>
<argument>-o ${metadata.outputDirectory}</argument>
<argument>org.esbtools.eventhandler.lightblue.DocumentEventEntity</argument>
<argument>org.esbtools.eventhandler.lightblue.config.EventHandlerConfigEntity</argument>
</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>com.redhat.lightblue.generator</groupId>
<artifactId>lightblue-java-generator-bin</artifactId>
<version>${version.lightblue-java-generator}</version>
<type>jar</type>
<exclusions>
<exclusion>
<!--
It doesn't appear that this is respected, and I don't know why.
Not a huge deal though.
-->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- Yes, this is redundant. But it silences an IntelliJ bug :(. -->
<version>${version.maven-surefire-plugin}</version>
<configuration>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${version.jackson}</version>
</dependency>
<!-- Implementation specific testing -->
<dependency>
<groupId>com.redhat.lightblue.client</groupId>
<artifactId>lightblue-client-integration-test</artifactId>
<version>${version.lightblue-client}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.redhat.lightblue.generator</groupId>
<artifactId>lightblue-java-generator-lib</artifactId>
<version>0.1.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.esbtools.eventhandler</groupId>
<artifactId>event-handler-lib</artifactId>
<version>${version.event-handler-lib}</version>
</dependency>
<!-- Lightblue implementation -->
<dependency>
<groupId>org.esbtools.lightblue-notification-hook</groupId>
<artifactId>lightblue-notification-hook-model</artifactId>
<version>${version.lightblue-notification-hook-model}</version>
</dependency>
<dependency>
<groupId>com.redhat.lightblue.client</groupId>
<artifactId>lightblue-client-http</artifactId>
<version>${version.lightblue-client}</version>
</dependency>
<dependency>
<groupId>com.redhat.lightblue.generator</groupId>
<artifactId>lightblue-java-generator-api</artifactId>
<version>0.1.5</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${version.jackson}</version>
</dependency>
<!-- Implementation specific testing -->
<dependency>
<groupId>com.redhat.lightblue.client</groupId>
<artifactId>lightblue-client-integration-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.redhat.lightblue.generator</groupId>
<artifactId>lightblue-java-generator-lib</artifactId>
<scope>test</scope>
</dependency>
<!-- Camel and friends -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-camel</artifactId>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-pool</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-http4</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test</artifactId>
</dependency>
<!-- Libraries -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
</dependency>
</dependencies>
</project>