| <?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> |
| <artifactId>hosttracker.aggregator</artifactId> |
| <groupId>org.opendaylight.l2switch.hosttracker</groupId> |
| <version>0.4.0-SNAPSHOT</version> |
| </parent> |
| <artifactId>hosttracker-model</artifactId> |
| <packaging>bundle</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.opendaylight.l2switch.addresstracker</groupId> |
| <artifactId>addresstracker-model</artifactId> |
| <version>0.4.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.opendaylight.controller.model</groupId> |
| <artifactId>model-topology</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name> |
| <Import-Package>org.opendaylight.yangtools.yang.binding.annotations, *</Import-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.opendaylight.yangtools</groupId> |
| <artifactId>yang-maven-plugin</artifactId> |
| <version>${yangtools.version}</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>generate-sources</goal> |
| </goals> |
| <configuration> |
| <yangFilesRootDir>src/main/yang</yangFilesRootDir> |
| <codeGenerators> |
| <generator> |
| <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass> |
| <outputBaseDir>${codeGeneratorPath}</outputBaseDir> |
| </generator> |
| </codeGenerators> |
| <inspectDependencies>true</inspectDependencies> |
| </configuration> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.opendaylight.mdsal</groupId> |
| <artifactId>maven-sal-api-gen-plugin</artifactId> |
| <version>${mdsal.model.version}</version> |
| <type>jar</type> |
| </dependency> |
| </dependencies> |
| </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>org.opendaylight.yangtools</groupId> |
| <artifactId>yang-maven-plugin</artifactId> |
| <versionRange>[${yangtools.version},)</versionRange> |
| <goals> |
| <goal>generate-sources</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore></ignore> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| <name>hosttracker-model</name> |
| </project> |