<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>com.github.danielpacak.osgi.swingconsole</groupId>
		<artifactId>osgi.swingconsole.parent</artifactId>
		<version>1.0.0-rc2</version>
	</parent>

	<artifactId>osgi.swingconsole</artifactId>
	<name>Swing Console</name>
	<description>Swing Console</description>
	<packaging>bundle</packaging>

	<properties>
		<dependency.fest.swing.version>1.2.1</dependency.fest.swing.version>
	</properties>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<configuration>
					<instructions>
						<Bundle-SymbolicName>com.github.danielpacak.osgi.swingconsole</Bundle-SymbolicName>
						<Bundle-Version>1.0.0</Bundle-Version>
						<Bundle-Activator>com.github.danielpacak.osgi.swingconsole.internals.Activator</Bundle-Activator>
						<Export-Package>
							com.github.danielpacak.osgi.swingconsole
						</Export-Package>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<!-- OSGi API -->
		<dependency>
			<groupId>org.osgi</groupId>
			<artifactId>org.osgi.core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.osgi</groupId>
			<artifactId>org.osgi.compendium</artifactId>
		</dependency>
		<!-- Testing -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
		</dependency>
		<dependency>
			<groupId>org.easytesting</groupId>
			<artifactId>fest-swing</artifactId>
			<version>${dependency.fest.swing.version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>