sfc-ovs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.sfc</groupId> <artifactId>sfc-ovs</artifactId> <version>0.10.4</version> </dependency>
<?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.opendaylight.sfc</groupId> <artifactId>sfc-parent</artifactId> <version>0.10.4</version> <relativePath>../</relativePath> </parent> <artifactId>sfc-ovs</artifactId> <packaging>bundle</packaging> <!-- <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 :: sfc :: ${project.artifactId}</name> <properties> <jmxGeneratorPath>${project.build.directory}/generated-sources/config</jmxGeneratorPath> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>sfc-provider</artifactId> </dependency> <dependency> <groupId>org.opendaylight.ovsdb</groupId> <artifactId>southbound-impl</artifactId> <version>${ovsdb.southbound.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-reflect</artifactId> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-binding-broker-impl</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-binding-broker-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.aries.blueprint</groupId> <artifactId>blueprint-maven-plugin</artifactId> <configuration> <scanPaths> <scanPath>org.opendaylight.sfc.ovs</scanPath> </scanPaths> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>