<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>
	<groupId>at.unbounded</groupId>
	<artifactId>serialization</artifactId>
	<version>0.1.0</version>
	<name>Unbounded Serialization</name>
	<packaging>bundle</packaging>
	<description>Serialization</description>
	<url>https://unbounded.at</url>
	<licenses>
		<license>
			<name>Creative Commons Attribution-NoDerivatives 4.0 International Public License</name>
			<url>http://creativecommons.org/licenses/by-nd/4.0/legalcode</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>kludwig</id>
			<name>Kevin Ludwig</name>
			<email>icronace@outlook.com</email>
			<organization>Icronace</organization>
			<organizationUrl>https://icronace.com</organizationUrl>
			<timezone>Europe/Berlin</timezone>
		</developer>
	</developers>
	<scm>
		<connection>scm:git:https://github.com/Icronace/unbounded-serialization.git</connection>
		<developerConnection>scm:git:git@github.com:Icronace/unbounded-serialization.git</developerConnection>
		<url>https://github.com/Icronace/unbounded-serialization</url>
	</scm>
	<build>
		<sourceDirectory>src</sourceDirectory>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<executions>
					<execution>
						<id>bundle-manifest</id>
						<phase>process-classes</phase>
						<goals>
							<goal>manifest</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<instructions>
						<Export-Package>at.unbounded.*</Export-Package>
						<Import-Package></Import-Package>
					</instructions>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<skipTests>true</skipTests>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>at.unbounded</groupId>
			<artifactId>common</artifactId>
			<version>0.2.0</version>
		</dependency>
		<dependency>
			<groupId>javassist</groupId>
			<artifactId>javassist</artifactId>
			<version>3.12.1.GA</version>
			<optional>true</optional>
		</dependency>
	</dependencies>
	<profiles>
		<profile>
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
            </build>
		</profile>
	</profiles>
</project>