<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>pl.net.bluesoft</groupId>
    <artifactId>util</artifactId>
    <packaging>jar</packaging>	
    <version>1.2</version>
	<parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
    </parent>

    <name>Utility package</name>
    <description>A bunch of useful classes.</description>
	<url>https://github.com/tlipski/BlueSoft-Util</url>
	
	<licenses>
		<license>
		  <name>GNU Lesser General Public License, Version 2.1</name>
		  <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
		  <distribution>repo</distribution>
		</license>
    </licenses>

    
    <scm>
		<connection>scm:git:git@github.com:kdowbecki/BlueSoft-Util.git</connection>
        <developerConnection>scm:git:git@github.com:kdowbecki/BlueSoft-Util.git</developerConnection>
		<url>git@github.com:kdowbecki/BlueSoft-Util.git</url>
    </scm>

	<dependencies>                        
		<dependency>
			<groupId>commons-beanutils</groupId>
			<artifactId>commons-beanutils</artifactId>
			<version>1.8.2</version>
		</dependency>
	</dependencies>
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>1.6</source>
						<target>1.6</target>
						<debug>true</debug>
					</configuration>
				</plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.1</version>
					<configuration>
						<pushChanges>false</pushChanges>
					</configuration>
                </plugin>
				<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>
		</pluginManagement>
	</build>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
</project>
