<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/maven-v4_0_0.xsd">
	<parent>
		<artifactId>oss-parent</artifactId>
		<groupId>org.sonatype.oss</groupId>
		<version>2</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.flagstone</groupId>
	<artifactId>transform</artifactId>
	<packaging>jar</packaging>
	<version>3.0.2</version>

	<name>transform</name>
	<description>Transform is an Open Source library for reading and writing Flash (.swf) files. The API gives you complete control over how files are created with access to all the features supported by the Flash Player but yet is still intuitive and easy to use.</description>
	<url>http://www.flagstonesoftware.com/transform/</url>
	<inceptionYear>2002</inceptionYear>

	<licenses>
		<license>
			<name>BSD</name>
			<url>http://www.flagstonesoftware.com/transform/LICENSE.txt</url>
			<distribution>repo</distribution>
			<comments>Open Source, Berkeley Software Distribution Licence</comments>
		</license>
	</licenses>

	<organization>
		<name>Flagstone Software Ltd.</name>
		<url>http://www.flagstonesoftware.com</url>
	</organization>
	
	<issueManagement>
		<system>GitHb</system>
		<url>https://github.com/StuartMacKay/transform-swf/issues</url>
	</issueManagement>

    <scm>
        <connection>scm:git:git@github.com:StuartMacKay/transform-swf.git</connection>
        <url>scm:git:git@github.com:StuartMacKay/transform-swf.git</url>
        <developerConnection>scm:git:git@github.com:StuartMacKay/transform-swf.git</developerConnection>  
    </scm>

	<developers>
		<developer>
			<id>smackay</id>
			<name>Stuart MacKay</name>
			<email>smackay@flagstonesoftware.com</email>
			<url>http://www.flagstonesoftware.com</url>
			<organization>Flagstone Software Ltd.</organization>
			<organizationUrl>http://www.flagstonesoftware.com</organizationUrl>
			<roles>
				<role>developer</role>
			</roles>
			<timezone>0</timezone>
		</developer>
	</developers>
	
	<contributors>
        <contributor>
            <name>Glenn Marintes</name>
            <email>gmarintes@gmail.com</email>
            <url />
            <organization>Glenn Marintes</organization>
            <organizationUrl />
            <roles>
                <role>developer</role>
            </roles>
            <timezone />
        </contributor>
    </contributors>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.6</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.1</version>
				<configuration>
					<encoding>UTF-8</encoding>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.5</version>
				<configuration>
					<testFailureIgnore>true</testFailureIgnore>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.4.2</version>
		        <executions>
		          <execution>
		            <id>copy-resources</id>
		            <phase>integration-test</phase>
		            <goals>
		              <goal>copy-resources</goal>
		            </goals>
		            <configuration>
		              <outputDirectory>${basedir}/target</outputDirectory>
		              <resources>          
		                <resource>
		                  <directory>${basedir}/src/test/reports</directory>
	                      <includes>
	                          <include>**/*.html</include>
	                      </includes>
		                  <filtering>false</filtering>
		                </resource>
		              </resources>              
		            </configuration>            
		          </execution>
		        </executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-failsafe-plugin</artifactId>
				<version>2.5</version>
		        <executions>
		          <execution>
		            <id>integration-test</id>
		            <goals>
		              <goal>integration-test</goal>
		            </goals>
		          </execution>
		          <execution>
		            <id>verify</id>
		            <goals>
		              <goal>verify</goal>
		            </goals>
		          </execution>
		        </executions>
			</plugin>
	        <plugin>
	          <groupId>org.apache.maven.plugins</groupId>
	          <artifactId>maven-source-plugin</artifactId>
	          <version>2.1.2</version>
	          <executions>
	            <execution>
	              <id>attach-sources</id>
	              <phase>package</phase>
	              <goals>
	                <goal>jar-no-fork</goal>
	              </goals>
	            </execution>
	          </executions>
	        </plugin>
		    <plugin>
		        <groupId>org.apache.maven.plugins</groupId>
		        <artifactId>maven-javadoc-plugin</artifactId>
		        <version>2.7</version>
		        <configuration>
                  <show>public</show>
		        </configuration>
                <executions>
                  <execution>
                    <id>generate-datasheets</id>
                    <phase>package</phase>
                    <goals>
                      <goal>jar</goal>
                    </goals>
                  </execution>
                </executions>
		    </plugin>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.2</version>
				<configuration>
				    <descriptors>
					    <descriptor>src/main/assembly/dist.xml</descriptor>
					</descriptors>
				</configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
                <version>1.1</version>
				<executions>
				  <execution>
					<id>sign-artifacts</id>
					<phase>verify</phase>
					<goals>
					  <goal>sign</goal>
					</goals>
				  </execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
                <version>2.5</version>
				<configuration>
					<encoding>UTF-8</encoding>
					<configLocation>checkstyle.xml</configLocation>					
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
                <version>2.5</version>
				<configuration>
					<targetJdk>1.6</targetJdk>
					<sourceEncoding>UTF-8</sourceEncoding>
					<ruleset>ruleset.xml</ruleset>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
                <version>2.5</version>
			</plugin>
		</plugins>
	</reporting>

</project>
