summaryrefslogtreecommitdiffstats
path: root/v3po/features
AgeCommit message (Expand)AuthorFilesLines
2016-06-10HONEYCOMB-33: Add notification service to HcMaros Marsalek2-0/+28
2016-05-24HONEYCOMB-63: bump ODL dependencies to BE-SR2Marek Gradzki2-8/+9
2016-05-24HONEYCOMB-61: Extend VPP initializers to initialize everything readers provideMaros Marsalek1-0/+1
2016-05-24HONEYCOMB-61: Restore configuration and context from persisted filesMaros Marsalek2-0/+8
2016-05-23HONEYCOMB-61: Add context data treeMaros Marsalek2-0/+8
2016-05-19Bump jvpp version to 16.09-SNAPSHOTMaros Marsalek2-2/+2
2016-05-05HONEYCOMB-10: Porting v3po2vpp to the new Java APIMarek Gradzki2-6/+6
2016-04-13HONEYCOMB-9: Remove initial Honeycomb pipelineMaros Marsalek2-0/+8
2016-04-12HONEYCOMB-34: Initializers. Initial versionMarek Gradzki2-0/+6
2016-04-12HONEYCOMB-9: Add configuration and wiring for readers and writersMaros Marsalek2-5/+21
2016-04-12HONEYCOMB-8: Move data layer from impl module into submodulesMaros Marsalek2-0/+18
2016-04-12HONEYCOMB-9: Remove references to VPP from translation layerMaros Marsalek2-8/+14
2016-04-12HONEYCOMB-9: Split impl module into smaller partsMaros Marsalek2-0/+30
2016-03-31Dedicated NETCONF north interface for v3poMaros Marsalek2-0/+8
2016-03-08Fix pom files to use Beryllium Release VersionsEd Warnicke1-6/+6
2016-01-30Initial honeycomb code commit.Ed Warnicke2-0/+189
ht .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
<?xml version="1.0" encoding="UTF-8"?>
<!--
 Copyright (c) 2015 Cisco and/or its affiliates.
 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/xsd/maven-4.0.0.xsd">

  <parent>
    <groupId>io.fd.honeycomb.common</groupId>
    <artifactId>honeycomb-parent</artifactId>
    <version>1.18.01-SNAPSHOT</version>
    <relativePath>../../common/honeycomb-parent</relativePath>
  </parent>

  <groupId>io.fd.honeycomb</groupId>
  <artifactId>notification-aggregator</artifactId>
  <version>1.18.01-SNAPSHOT</version>
  <name>${project.artifactId}</name>
  <packaging>pom</packaging>
  <modelVersion>4.0.0</modelVersion>

  <modules>
    <module>api</module>
    <module>impl</module>
  </modules>
  <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-install-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>