herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk features |
| 5 | ~ ================================================================================ |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 6 | ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 7 | ~ All rights reserved. |
| 8 | ~ ================================================================================ |
| 9 | ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
| 10 | ~ ================================================================================ |
| 11 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 12 | ~ you may not use this file except in compliance with the License. |
| 13 | ~ You may obtain a copy of the License at |
| 14 | ~ |
| 15 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 16 | ~ |
| 17 | ~ Unless required by applicable law or agreed to in writing, software |
| 18 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 19 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 20 | ~ See the License for the specific language governing permissions and |
| 21 | ~ limitations under the License. |
| 22 | ~ ============LICENSE_END======================================================= |
| 23 | ~ |
| 24 | --> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 25 | |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 26 | <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"> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | 04e519c | 2020-03-04 09:43:47 -0500 | [diff] [blame] | 28 | |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.onap.ccsdk.parent</groupId> |
| 31 | <artifactId>binding-parent</artifactId> |
Dan Timoney | fc05c3c | 2020-03-05 15:52:09 -0500 | [diff] [blame] | 32 | <version>2.0.0-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 33 | <relativePath/> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 34 | </parent> |
| 35 | |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 36 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 37 | <artifactId>sdnr-wt-data-provider-setup</artifactId> |
Dan Timoney | fc05c3c | 2020-03-05 15:52:09 -0500 | [diff] [blame] | 38 | <version>1.0.0-SNAPSHOT</version> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 39 | <packaging>bundle</packaging> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 40 | |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 41 | <name>ccsdk-features :: ${project.artifactId}</name> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 42 | <licenses> |
| 43 | <license> |
| 44 | <name>Apache License, Version 2.0</name> |
| 45 | <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 46 | </license> |
| 47 | </licenses> |
Dan Timoney | 04e519c | 2020-03-04 09:43:47 -0500 | [diff] [blame] | 48 | |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 49 | <properties> |
| 50 | <maven.javadoc.skip>true</maven.javadoc.skip> |
| 51 | <databaseport>49404</databaseport> |
| 52 | </properties> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 53 | |
| 54 | <dependencies> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 55 | <dependency> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 56 | <groupId>org.mockito</groupId> |
| 57 | <artifactId>mockito-core</artifactId> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 61 | <groupId>commons-cli</groupId> |
| 62 | <artifactId>commons-cli</artifactId> |
| 63 | <version>1.4</version> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
Singal, Kapil (ks220y) | 23cd303 | 2020-03-09 11:16:49 -0400 | [diff] [blame] | 66 | <groupId>org.slf4j</groupId> |
| 67 | <artifactId>slf4j-log4j12</artifactId> |
| 68 | </dependency> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>${project.groupId}</groupId> |
| 71 | <artifactId>sdnr-wt-common</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>${project.groupId}</groupId> |
| 76 | <artifactId>sdnr-wt-data-provider-model</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
| 79 | </dependencies> |
Dan Timoney | 04e519c | 2020-03-04 09:43:47 -0500 | [diff] [blame] | 80 | |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 84 | <groupId>com.github.alexcojocaru</groupId> |
| 85 | <artifactId>elasticsearch-maven-plugin</artifactId> |
| 86 | <version>6.16</version> |
| 87 | <configuration> |
| 88 | <skip>${skipTests}</skip> |
| 89 | <clusterName>testCluster</clusterName> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 90 | <transportPort>49504</transportPort> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 91 | <httpPort>${databaseport}</httpPort> |
| 92 | <version>6.5.0</version> |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 93 | </configuration> |
| 94 | <executions> |
| 95 | <execution> |
| 96 | <id>start-elasticsearch</id> |
| 97 | <phase>process-test-classes</phase> |
| 98 | <goals> |
| 99 | <goal>runforked</goal> |
| 100 | </goals> |
| 101 | </execution> |
| 102 | <execution> |
| 103 | <id>stop-elasticsearch</id> |
| 104 | <phase>prepare-package</phase> |
| 105 | <goals> |
| 106 | <goal>stop</goal> |
| 107 | </goals> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | </plugin> |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-surefire-plugin</artifactId> |
| 114 | <configuration> |
| 115 | <systemProperties> |
| 116 | <property> |
| 117 | <name>databaseport</name> |
| 118 | <value>${databaseport}</value> |
| 119 | </property> |
| 120 | </systemProperties> |
| 121 | </configuration> |
| 122 | </plugin> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 123 | <plugin> |
| 124 | <artifactId>maven-assembly-plugin</artifactId> |
| 125 | <executions> |
| 126 | <execution> |
| 127 | <id>make-assembly</id> <!-- this is used for inheritance merges --> |
| 128 | <phase>package</phase> |
| 129 | <goals> |
| 130 | <goal>single</goal> |
| 131 | </goals> |
| 132 | </execution> |
| 133 | </executions> |
| 134 | <configuration> |
| 135 | <finalName>sdnr-dmt</finalName> |
Singal, Kapil (ks220y) | 23cd303 | 2020-03-09 11:16:49 -0400 | [diff] [blame] | 136 | <appendAssemblyId>false</appendAssemblyId> |
Michael Dürre | ee75b19 | 2020-02-26 06:41:50 +0100 | [diff] [blame] | 137 | <archive> |
| 138 | <manifest> |
| 139 | <mainClass>org.onap.ccsdk.features.sdnr.wt.dataprovider.setup.Program</mainClass> |
| 140 | </manifest> |
| 141 | </archive> |
| 142 | <descriptorRefs> |
| 143 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 144 | </descriptorRefs> |
| 145 | </configuration> |
| 146 | </plugin> |
Dan Timoney | 04e519c | 2020-03-04 09:43:47 -0500 | [diff] [blame] | 147 | |
herbert | d77d01b | 2020-01-30 10:15:11 +0100 | [diff] [blame] | 148 | </plugins> |
| 149 | </build> |
| 150 | </project> |