event-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.datarpm.sigma</groupId> <artifactId>event-engine</artifactId> <version>1.6.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2017 DataRPM Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>com.datarpm.sigma</groupId> <artifactId>event-engine</artifactId> <packaging>pom</packaging> <version>1.6.1</version> <name>Events Engine</name> <description>Event Processing Engine project</description> <url>https://github.com/DataRPM-Labs/sigma-events</url> <inceptionYear>2013</inceptionYear> <modules> <module>core</module> <module>server</module> <module>model</module> <module>assembly</module> </modules> <properties> <slf4j.version>1.7.10</slf4j.version> <log4j.version>1.2.17</log4j.version> <gson.version>2.2</gson.version> <PermGen>64m</PermGen> <MaxPermGen>512m</MaxPermGen> </properties> <scm> <url>https://github.com/DataRPM-Labs/sigma-events</url> <connection>scm:git:https://github.com/DataRPM-Labs/sigma-events.git</connection> <developerConnection>scm:git:https://github.com/DataRPM-Labs/sigma-events.git</developerConnection> <tag>v1.6.2</tag> </scm> <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> <dependencyManagement> <dependencies> <dependency> <groupId>org.hibernate.ogm</groupId> <artifactId>hibernate-ogm-bom</artifactId> <version>5.1.0.Final</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>vishaldatarpm</id> <email>vishal@datarpm.com</email> <name>Vishal Katkar</name> <organization>DataRPM</organization> <organizationUrl>http://datarpm.com</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> </developer> <developer> <id>mrgautamsam</id> <email>gautam@datarpm.com</email> <name>Shyamantak Gautam</name> <organization>DataRPM</organization> <organizationUrl>http://datarpm.com</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> </developer> <developer> <id>vinayskashyap</id> <email>vinay@datarpm.com</email> <name>Vinay Kashyap</name> <organization>DataRPM</organization> <organizationUrl>http://datarpm.com</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <id>bikashdatarpm</id> <email>bikash@datarpm.com</email> <name>Bikash Patra</name> <organization>DataRPM</organization> <organizationUrl>http://datarpm.com</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <allowTimestampedSnapshots>true</allowTimestampedSnapshots> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <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-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>