<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>

	<artifactId>config</artifactId>
	<version>1.1.1</version>
	<packaging>bundle</packaging>

	<name>Configuration Framework</name>
	<description>Provides annotation based mappings for values in property files to typesafe java classes</description>
	<url>https://github.com/objekt-kontor-is/masterpom</url>

	<licenses>
		<license>
			<name>The Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>

	<organization>
		<name>Objekt-Kontor IS GmbH &amp; Co KG</name>
		<url>http://www.objekt-kontor.de</url>
	</organization>

	<developers>
		<developer>
			<name>Eugen Borth</name>
			<email>eugen.borth@objekt-kontor.de</email>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git@github.com:objekt-kontor-is/config.git</connection>
		<developerConnection>scm:git:git@github.com:objekt-kontor-is/config.git</developerConnection>
		<url>git@github.com:objekt-kontor-is/config.git</url>
	</scm>

	<parent>
		<groupId>de.objekt-kontor</groupId>
		<artifactId>master-pom</artifactId>
		<version>2</version>
	</parent>

	<dependencies>
		<!-- Logging -->
		<dependency>
			<groupId>ch.qos.logback</groupId>
			<artifactId>logback-classic</artifactId>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<configuration>
					<instructions>
						<Export-Package>
							de.objektkontor.config,
							de.objektkontor.config.*
						</Export-Package>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
