Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
| 21 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 22 | --> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 27 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 28 | <artifactId>appc-config-generator</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | <artifactId>appc-config-generator-provider</artifactId> |
| 32 | <packaging>bundle</packaging> |
| 33 | <name>Config Generator - Provider</name> |
| 34 | <url>http://maven.apache.org</url> |
| 35 | |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>equinoxSDK381</groupId> |
| 40 | <artifactId>org.eclipse.osgi</artifactId> |
| 41 | <version>${equinox.osgi.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 44 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 45 | <artifactId>sli-provider</artifactId> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>com.fasterxml.jackson.core</groupId> |
| 50 | <artifactId>jackson-databind</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>com.fasterxml.jackson.core</groupId> |
| 54 | <artifactId>jackson-annotations</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>com.fasterxml.jackson.core</groupId> |
| 58 | <artifactId>jackson-core</artifactId> |
| 59 | </dependency> |
| 60 | <!-- >dependency> |
| 61 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 62 | <artifactId>jackson-dataformat-properties</artifactId> |
| 63 | </dependency--> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.codehaus.jettison</groupId> |
| 67 | <artifactId>jettison</artifactId> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>commons-io</groupId> |
| 71 | <artifactId>commons-io</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.velocity</groupId> |
| 75 | <artifactId>velocity</artifactId> |
Taka Cho | ff286ea | 2018-02-23 21:30:06 -0500 | [diff] [blame] | 76 | <exclusions> |
| 77 | <exclusion> |
| 78 | <artifactId>commons-collections</artifactId> |
| 79 | <groupId>commons-collections</groupId> |
| 80 | </exclusion> |
| 81 | </exclusions> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>commons-collections</groupId> |
| 85 | <artifactId>commons-collections</artifactId> |
| 86 | <version>3.2.2</version> |
| 87 | </dependency> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 88 | |
| 89 | <dependency> |
| 90 | <groupId>com.att.eelf</groupId> |
| 91 | <artifactId>eelf-core</artifactId> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>junit</groupId> |
| 96 | <artifactId>junit</artifactId> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
Chaturvedi, Anand (ac204h) | 48f77d6 | 2017-08-31 19:07:53 -0400 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.powermock</groupId> |
| 101 | <artifactId>powermock-api-mockito</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 102 | <version>1.6.4</version> |
Chaturvedi, Anand (ac204h) | 48f77d6 | 2017-08-31 19:07:53 -0400 | [diff] [blame] | 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.mockito</groupId> |
| 107 | <artifactId>mockito-core</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 110 | |
| 111 | </dependencies> |
| 112 | |
| 113 | <build> |
| 114 | <plugins> |
| 115 | <plugin> |
| 116 | <groupId>org.apache.felix</groupId> |
| 117 | <artifactId>maven-bundle-plugin</artifactId> |
| 118 | <version>${bundle.plugin.version}</version> |
| 119 | <extensions>true</extensions> |
| 120 | <configuration> |
| 121 | <instructions> |
Takamune Cho | 8491cc3 | 2017-12-19 10:48:02 -0600 | [diff] [blame] | 122 | <Bundle-SymbolicName>org.onap.sdnc.config.generator</Bundle-SymbolicName> |
| 123 | <Bundle-Activator>org.onap.sdnc.config.generator.ConfigGeneratorActivator</Bundle-Activator> |
| 124 | <Export-Package>org.onap.sdnc.config.generator,org.onap.sdnc.config.generator.compare,org.onap.sdnc.config.generator.convert, |
| 125 | org.onap.sdnc.config.generator.merge,org.onap.sdnc.config.generator.pattern,org.onap.sdnc.config.generator.tool, |
| 126 | org.onap.sdnc.config.generator.transform</Export-Package> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 127 | <Import-Package>*</Import-Package> |
| 128 | <DynamicImport-Package>*</DynamicImport-Package> |
| 129 | </instructions> |
| 130 | <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| 131 | </configuration> |
| 132 | </plugin> |
| 133 | |
| 134 | </plugins> |
Skip Wonnell | dbf27a4 | 2017-08-15 18:07:13 -0500 | [diff] [blame] | 135 | </build> |
| 136 | </project> |