| <?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/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.openecomp.appc.plugins</groupId> |
| <artifactId>dg-loader</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| </parent> |
| <artifactId>dg-loader-provider</artifactId> |
| <packaging>bundle</packaging> |
| <name>Directed Graph Loader - Provider</name> |
| <url>http://maven.apache.org</url> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.openecomp.sdnc.core</groupId> |
| <artifactId>sli-provider</artifactId> |
| <version>${sdnctl.sli.version}</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>${common.io.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.att.eelf</groupId> |
| <artifactId>eelf-core</artifactId> |
| <version>${eelf.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>${bundle.plugin.version}</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-SymbolicName>org.openecomp.sdnc.dg.loader</Bundle-SymbolicName> |
| <Bundle-Activator>org.openecomp.sdnc.dg.loader.DGLoaderActivator</Bundle-Activator> |
| <Export-Package>org.openecomp.sdnc.dg.loader</Export-Package> |
| <Import-Package>*</Import-Package> |
| <DynamicImport-Package>*</DynamicImport-Package> |
| </instructions> |
| <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.4.1</version> |
| <configuration> |
| <descriptorRefs> |
| <descriptorRef>jar-with-dependencies</descriptorRef> |
| </descriptorRefs> |
| <finalName>dg-loader</finalName> |
| <archive> |
| <manifest> |
| <mainClass>org.openecomp.sdnc.dg.loader.DGXMLLoadNActivate</mainClass> |
| </manifest> |
| </archive> |
| <attach>false</attach> |
| </configuration> |
| <executions> |
| <execution> |
| <id>make-assembly</id> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <!--This plugin's configuration is used to store Eclipse m2e settings |
| only. It has no influence on the Maven build itself. --> |
| <plugin> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>lifecycle-mapping</artifactId> |
| <version>1.0.0</version> |
| <configuration> |
| <lifecycleMappingMetadata> |
| <pluginExecutions> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId> |
| com.brocade.developer |
| </groupId> |
| <artifactId> |
| providermodule-plugin |
| </artifactId> |
| <versionRange> |
| [1.2.0.100-SNAPSHOT,) |
| </versionRange> |
| <goals> |
| <goal>process</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore /> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |