Github user merrimanr commented on a diff in the pull request:

    https://github.com/apache/incubator-metron/pull/316#discussion_r97170214
  
    --- Diff: metron-interface/metron-rest/pom.xml ---
    @@ -0,0 +1,357 @@
    +<?xml version="1.0" encoding="UTF-8"?>
    +<!-- 
    +  Licensed to the Apache Software 
    +  Foundation (ASF) under one or more contributor license agreements. See 
the 
    +  NOTICE file distributed with this work for additional information 
regarding 
    +  copyright ownership. The ASF licenses this file to You 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/xsd/maven-4.0.0.xsd";>
    +    <modelVersion>4.0.0</modelVersion>
    +    <parent>
    +        <groupId>org.apache.metron</groupId>
    +        <artifactId>metron-interface</artifactId>
    +        <version>0.3.0</version>
    +    </parent>
    +    <artifactId>metron-rest</artifactId>
    +    <version>${project.parent.version}</version>
    +    <properties>
    +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    +        
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    +        <java.version>1.8</java.version>
    +        <antlr.version>4.5</antlr.version>
    +        <curator.version>2.7.1</curator.version>
    +        <powermock.version>1.6.4</powermock.version>
    +        <spring.boot.version>1.4.1.RELEASE</spring.boot.version>
    +        <swagger.version>2.5.0</swagger.version>
    +        <mysql.client.version>5.1.40</mysql.client.version>
    +        <joda.time.version>2.9.4</joda.time.version>
    +        <hibernate.version>5.0.11.Final</hibernate.version>
    +    </properties>
    +    <dependencies>
    +        <dependency>
    +            <groupId>org.springframework.boot</groupId>
    +            <artifactId>spring-boot-starter-web</artifactId>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>ch.qos.logback</groupId>
    +                    <artifactId>logback-classic</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.slf4j</groupId>
    +                    <artifactId>log4j-over-slf4j</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.hibernate</groupId>
    +                    <artifactId>hibernate-validator</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.springframework.boot</groupId>
    +            <artifactId>spring-boot-starter-security</artifactId>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.springframework.boot</groupId>
    +            <artifactId>spring-boot-starter-data-jpa</artifactId>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>org.hibernate</groupId>
    +                    <artifactId>hibernate-core</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.hibernate</groupId>
    +                    <artifactId>hibernate-entitymanager</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.hibernate</groupId>
    +            <artifactId>hibernate-core</artifactId>
    +            <version>${hibernate.version}</version>
    +            <scope>provided</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>mysql</groupId>
    +            <artifactId>mysql-connector-java</artifactId>
    +            <version>${mysql.client.version}</version>
    +            <scope>provided</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.curator</groupId>
    +            <artifactId>curator-recipes</artifactId>
    +            <version>${curator.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.googlecode.json-simple</groupId>
    +            <artifactId>json-simple</artifactId>
    +            <version>${global_json_simple_version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.antlr</groupId>
    +            <artifactId>antlr4-runtime</artifactId>
    +            <version>${antlr.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.fasterxml.jackson.core</groupId>
    +            <artifactId>jackson-databind</artifactId>
    +            <version>2.8.3</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.fasterxml.jackson.datatype</groupId>
    +            <artifactId>jackson-datatype-joda</artifactId>
    +            <version>2.8.1</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.metron</groupId>
    +            <artifactId>metron-rest-client</artifactId>
    +            <version>${project.parent.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.metron</groupId>
    +            <artifactId>metron-common</artifactId>
    +            <version>${project.parent.version}</version>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>com.fasterxml.jackson.core</groupId>
    +                    <artifactId>jackson-databind</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.metron</groupId>
    +            <artifactId>metron-parsers</artifactId>
    +            <version>${project.parent.version}</version>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>com.fasterxml.jackson.core</groupId>
    +                    <artifactId>jackson-databind</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.apache.metron</groupId>
    +                    <artifactId>metron-profiler-client</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.apache.metron</groupId>
    +                    <artifactId>metron-writer</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>io.springfox</groupId>
    +            <artifactId>springfox-swagger2</artifactId>
    +            <version>${swagger.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>io.springfox</groupId>
    +            <artifactId>springfox-swagger-ui</artifactId>
    +            <version>${swagger.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.kafka</groupId>
    +            <artifactId>kafka_2.10</artifactId>
    +            <version>${global_kafka_version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>joda-time</groupId>
    +            <artifactId>joda-time</artifactId>
    +            <version>${joda.time.version}</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.hibernate</groupId>
    +            <artifactId>hibernate-envers</artifactId>
    +            <version>${hibernate.version}</version>
    +            <scope>provided</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>io.thekraken</groupId>
    +            <artifactId>grok</artifactId>
    +            <version>0.1.0</version>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.reflections</groupId>
    +            <artifactId>reflections</artifactId>
    +            <version>0.9.10</version>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>com.google.code.findbugs</groupId>
    +                    <artifactId>annotations</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +
    +        <dependency>
    +            <groupId>org.springframework.boot</groupId>
    +            <artifactId>spring-boot-starter-test</artifactId>
    +            <scope>test</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>com.h2database</groupId>
    +            <artifactId>h2</artifactId>
    +            <scope>test</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.springframework.security</groupId>
    +            <artifactId>spring-security-test</artifactId>
    +            <scope>test</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.powermock</groupId>
    +            <artifactId>powermock-module-junit4</artifactId>
    +            <version>${powermock.version}</version>
    +            <scope>test</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.powermock</groupId>
    +            <artifactId>powermock-api-mockito</artifactId>
    +            <version>${powermock.version}</version>
    +            <scope>test</scope>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.metron</groupId>
    +            <artifactId>metron-integration-test</artifactId>
    +            <version>${project.parent.version}</version>
    +            <scope>test</scope>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>org.apache.logging.log4j</groupId>
    +                    <artifactId>log4j-slf4j-impl</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>org.slf4j</groupId>
    +                    <artifactId>log4j-over-slf4j</artifactId>
    +                </exclusion>
    +                <exclusion>
    +                    <groupId>javax.servlet</groupId>
    +                    <artifactId>servlet-api</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.kafka</groupId>
    +            <artifactId>kafka-clients</artifactId>
    +            <version>${global_kafka_version}</version>
    +            <classifier>test</classifier>
    +            <scope>test</scope>
    +            <exclusions>
    +                <exclusion>
    +                    <groupId>log4j</groupId>
    +                    <artifactId>log4j</artifactId>
    +                </exclusion>
    +            </exclusions>
    +        </dependency>
    +        <dependency>
    +            <groupId>org.apache.velocity</groupId>
    +            <artifactId>velocity</artifactId>
    +            <version>1.7</version>
    +            <scope>test</scope>
    +        </dependency>
    +    </dependencies>
    +
    +    <dependencyManagement>
    +        <dependencies>
    +            <dependency>
    +                <!-- Import dependency management from Spring Boot -->
    +                <groupId>org.springframework.boot</groupId>
    +                <artifactId>spring-boot-dependencies</artifactId>
    +                <version>${spring.boot.version}</version>
    +                <type>pom</type>
    +                <scope>import</scope>
    +                <exclusions>
    +                    <exclusion>
    +                        <groupId>org.apache.logging.log4j</groupId>
    +                        <artifactId>log4j-slf4j-impl</artifactId>
    +                    </exclusion>
    +                    <exclusion>
    +                        <groupId>ch.qos.logback</groupId>
    +                        <artifactId>logback-classic</artifactId>
    +                    </exclusion>
    +                </exclusions>
    +            </dependency>
    +        </dependencies>
    +    </dependencyManagement>
    +
    +    <reporting>
    +        <plugins>
    +            <plugin>
    +                <groupId>org.codehaus.mojo</groupId>
    +                <artifactId>emma-maven-plugin</artifactId>
    +                <version>1.0-alpha-3</version>
    --- End diff --
    
    Done


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to