assertions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.knowhowlab.osgi.testing</groupId>
<artifactId>assertions</artifactId>
<version>1.0.0.M2</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.knowhowlab.osgi</groupId>
<artifactId>testing</artifactId>
<version>1.0.0.M2</version>
</parent>
<groupId>org.knowhowlab.osgi.testing</groupId>
<artifactId>assertions</artifactId>
<packaging>bundle</packaging>
<name>KnowHowLab OSGi Testing - Assertions</name>
<description>KnowHowLab OSGi Testing - Assertions</description>
<url>http://knowhowlab.org</url>
<developers>
<developer>
<name>Dmytro Pishchukhin</name>
<timezone>GMT+1</timezone>
</developer>
</developers>
<organization>
<name>Know-How Lab</name>
<url>http://knowhowlab.org</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.knowhowlab.osgi.testing</groupId>
<artifactId>utils</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.0.1</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
org.knowhowlab.osgi.testing.assertions*
</Export-Package>
<Import-Package>
org.osgi*,
junit.framework*,
org.knowhowlab.osgi.testing.utils*
</Import-Package>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
<_removeheaders>
Bnd-LastModified, Built-By, Private-Package,
Tool, Build-Jdk, Include-Resource, Ignore-Package
</_removeheaders>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>