2019-08-07 13:24:42 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- vi: set et smarttab sw=4 tabstop=4: -->
|
|
|
|
<!--
|
|
|
|
Copyright © 2019 CMCC Corporation and others. All rights reserved.
|
|
|
|
|
|
|
|
This program and the accompanying materials are made available under the
|
|
|
|
terms of the Eclipse Public License v1.0 which accompanies this distribution,
|
|
|
|
and is available at http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
-->
|
|
|
|
<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.opendaylight.mdsal</groupId>
|
|
|
|
<artifactId>binding-parent</artifactId>
|
2019-09-04 09:52:26 +00:00
|
|
|
<version>0.12.4</version>
|
2019-08-07 13:24:42 +00:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.cmcc.cmhi</groupId>
|
|
|
|
<artifactId>driver-layer-parent</artifactId>
|
2019-09-04 09:52:26 +00:00
|
|
|
<version>0.1.0</version>
|
2019-08-07 13:24:42 +00:00
|
|
|
<!-- <name> formatting is used by autorelease to parse and notify projects on
|
|
|
|
build failure. Please do not modify this unless you have a good reason. -->
|
|
|
|
<name>ODL :: com.cmcc.cmhi :: ${project.artifactId}</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:ssh://git.opendaylight.org:29418/driver-layer.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git.opendaylight.org:29418/driver-layer.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
<url>https://wiki.opendaylight.org/view/driver-layer:Main</url>
|
|
|
|
</scm>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opendaylight.controller</groupId>
|
|
|
|
<artifactId>mdsal-artifacts</artifactId>
|
2019-09-04 09:52:26 +00:00
|
|
|
<version>1.7.4</version>
|
2019-08-07 13:24:42 +00:00
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven.compile.plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version.source}</source>
|
|
|
|
<target>${java.version.target}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Ignore/Execute plugin execution -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
|
|
<versionRange>[0.0,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>set-system-properties</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<versionRange>[0.0,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
<goal>pre-test</goal>
|
|
|
|
<goal>post-test</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>maven-paxexam-plugin</artifactId>
|
|
|
|
<versionRange>[1.2.4,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-depends-file</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<execute>
|
|
|
|
<runOnIncremental>false</runOnIncremental>
|
|
|
|
</execute>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.opendaylight.yangtools</groupId>
|
|
|
|
<artifactId>yang-maven-plugin</artifactId>
|
|
|
|
<versionRange>[0.5,)</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>generate-sources</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<execute/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.codehaus.groovy.maven</groupId>
|
|
|
|
<artifactId>gmaven-plugin</artifactId>
|
|
|
|
<versionRange>1.0</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>execute</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<versionRange>${enforcer.version}</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore/>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<failOnError>true</failOnError>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|