yang-maven-plugin-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-maven-plugin-it</artifactId> <version>14.0.12</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi: set et smarttab sw=4 tabstop=4: --> <!-- Copyright (c) 2013 Cisco Systems, Inc. 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"> <parent> <groupId>org.opendaylight.odlparent</groupId> <artifactId>odlparent</artifactId> <version>14.0.9</version> <relativePath/> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-maven-plugin-it</artifactId> <version>14.0.12</version> <properties> <!-- We are doing abhorrent things here unpacking our dependencies, which confuses analysis, just skip it --> <odlparent.dependency.skip>true</odlparent.dependency.skip> <odlparent.modernizer.enforce>false</odlparent.modernizer.enforce> </properties> <dependencies> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>1.7.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yang-maven-plugin</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>${basedir}/src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>default-testResources</id> <phase>process-test-resources</phase> <goals> <goal>testResources</goal> </goals> <configuration> <useDefaultDelimiters>false</useDefaultDelimiters> <delimiters> <delimiter>@</delimiter> </delimiters> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>write-project-properties</goal> </goals> <configuration> <outputFile>${project.build.directory}/it-project.properties</outputFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-help-plugin</artifactId> <configuration> <output>${project.build.directory}/effective-settings.xml</output> </configuration> <executions> <execution> <phase>pre-integration-test</phase> <goals> <goal>effective-settings</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <!-- We want to pass argLine down to maven invocations, not to failsafe --> <argLine>-DitArgPath='@{argLine}'</argLine> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>merge-reports</id> <phase>post-integration-test</phase> <goals> <goal>merge</goal> </goals> <configuration> <fileSets> <fileSet> <directory>${project.build.directory}/test-classes/test-parent</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> </configuration> </execution> </executions> </plugin> <!-- Okay, this is rather ugly, but is needed to fool JaCoCo to generate an XML report --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>fake-classes</id> <phase>post-integration-test</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeGroupIds>org.opendaylight.yangtools</includeGroupIds> <includes>**/*.class</includes> <outputDirectory>${project.build.directory}/classes</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>