diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-03-01 10:59:28 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-03-01 10:59:28 -0500 |
commit | 632987493c6c24532b2ec526b17daf73ee6d21f0 (patch) | |
tree | b27efd6f9d621122c9fcab4e0e32c7ad11bb08c2 /dgbuilder/pom.xml | |
parent | 33314626c3c8cf06a364deb11dfb6f006aed5d82 (diff) |
Nitrogen port : sdnc-oam
Update sdnc-oam to create docker containers based on
ODL Nitrogen release.
Change-Id: If8df28c417a2dec69be6eee2fc4521541126085a
Issue-ID: SDNC-269
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
Former-commit-id: 2822ea7882e20879b1556bf98cf28695f5052348
Diffstat (limited to 'dgbuilder/pom.xml')
-rw-r--r-- | dgbuilder/pom.xml | 41 |
1 files changed, 17 insertions, 24 deletions
diff --git a/dgbuilder/pom.xml b/dgbuilder/pom.xml index a2b5e8c7..374e4120 100644 --- a/dgbuilder/pom.xml +++ b/dgbuilder/pom.xml @@ -1,22 +1,24 @@ <?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/maven-v4_0_0.xsd"> +<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.onap.sdnc.oam</groupId> - <artifactId>sdnc-oam</artifactId> - <version>1.3.0-SNAPSHOT</version> + <groupId>org.onap.ccsdk.parent</groupId> + <artifactId>odlparent-lite</artifactId> + <version>1.0.1-SNAPSHOT</version> + <relativePath /> </parent> - <modelVersion>4.0.0</modelVersion> - <packaging>pom</packaging> <groupId>org.onap.sdnc.oam</groupId> <artifactId>dgbuilder</artifactId> + <version>1.3.1-SNAPSHOT</version> + <packaging>pom</packaging> - <version>1.3.0-SNAPSHOT</version> - - <name>Directed Graph Builder</name> + <name>sdnc-oam :: dgbuilder</name> <description>Directed Graph Builder</description> + <organization> + <name>ONAP</name> + </organization> <properties> <application.name>dgbuilder</application.name> @@ -31,7 +33,6 @@ <dependency> <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>sli-common</artifactId> - <version>${sdnctl.sli.version}</version> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> @@ -40,26 +41,23 @@ </dependency> <dependency> <groupId>org.antlr</groupId> - <artifactId>antlr4</artifactId> - <version>${antlr.version}</version> - <type>jar</type> - <scope>compile</scope> + <artifactId>antlr4-runtime</artifactId> + <version>${antlr.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> - <version>${slf4j.version}</version> + <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> - <version>1.7.5</version> - <scope>compile</scope> + <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>${commons.lang3.version}</version> + <version>${commons.lang3.version}</version> </dependency> </dependencies> @@ -131,9 +129,4 @@ </plugin> </plugins> </build> - - <organization> - <name>AT&T</name> - </organization> </project> - |