Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.openecomp.appc</groupId> |
| 6 | <artifactId>appc-dg-shared</artifactId> |
Patrick Brady | 8843969 | 2017-02-24 00:04:10 -0800 | [diff] [blame] | 7 | <version>1.0.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>appc-dg-netconf</artifactId> |
| 10 | <packaging>bundle</packaging> |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>org.openecomp.appc</groupId> |
| 15 | <artifactId>appc-common</artifactId> |
| 16 | <version>${project.version}</version> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>org.openecomp.appc</groupId> |
| 20 | <artifactId>appc-netconf-adapter-bundle</artifactId> |
| 21 | <version>${project.version}</version> |
| 22 | <scope>compile</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.openecomp.appc</groupId> |
| 26 | <artifactId>appc-dg-common</artifactId> |
| 27 | <version>${project.version}</version> |
| 28 | <scope>compile</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.openecomp.sdnc.core</groupId> |
| 32 | <artifactId>sli-common</artifactId> |
| 33 | <scope>compile</scope> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.openecomp.sdnc.core</groupId> |
| 37 | <artifactId>sli-provider</artifactId> |
| 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.mockito</groupId> |
| 48 | <artifactId>mockito-core</artifactId> |
| 49 | <scope>test</scope> |
| 50 | |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.powermock</groupId> |
| 54 | <artifactId>powermock-api-mockito</artifactId> |
| 55 | <version>1.6.2</version> |
| 56 | <scope>test</scope> |
| 57 | |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.powermock</groupId> |
| 61 | <artifactId>powermock-module-junit4</artifactId> |
| 62 | <version>1.6.2</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | |
| 67 | |
| 68 | </dependencies> |
| 69 | |
| 70 | <build> |
| 71 | <plugins> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.felix</groupId> |
| 74 | <artifactId>maven-bundle-plugin</artifactId> |
| 75 | <extensions>true</extensions> |
| 76 | <configuration> |
| 77 | <instructions> |
| 78 | <Bundle-SymbolicName>appc-dg-netconf</Bundle-SymbolicName> |
| 79 | <Export-Package>org.openecomp.appc.dg.netconf</Export-Package> |
| 80 | <Private-Package>org.openecomp.appc.dg.netconf.impl.*</Private-Package> |
Patrick Brady | c0b9942 | 2017-03-02 21:45:25 -0800 | [diff] [blame^] | 81 | <Import-Package>!org.apache.log,!org.apache.commons.logging,!groovy.lang,!javax.jms,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!com.ibm.icu.*,!com.sun.faces.*,!org.jasypt.*,*</Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 82 | <Embed-Dependency>appc-common,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 83 | <Embed-Transitive>true</Embed-Transitive> |
| 84 | </instructions> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | </project> |