<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</version>

	<name>transform</name>
	<description>Transform is an Open Source framework 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>

	<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>
	
	<mailingLists>
        <mailingList>
            <name>Transform-SWF Updates</name>
            <subscribe>http://lists.sourceforge.net/lists/listinfo/transform-swf-updates</subscribe>
            <unsubscribe>http://lists.sourceforge.net/lists/listinfo/transform-swf-updates</unsubscribe>
            <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=transform-swf-updates</archive>
        </mailingList>
    </mailingLists>
	
	<issueManagement>
		<system>Trac</system>
		<url>http://sourceforge.net/apps/trac/transform-swf/</url>
	</issueManagement>

	<scm>
		<connection>scm:svn:http://transform-swf.svn.sourceforge.net/svnroot/transform-swf/tags/rel-3-0-0</connection>
		<developerConnection>scm:svn:https://transform-swf.svn.sourceforge.net/svnroot/transform-swf/tags/rel-3-0-0</developerConnection>
		<url>http://transform-swf.svn.sourceforge.net/viewvc/transform-swf/tags/rel-3-0-0</url>
	</scm>

	<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>verify</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>verify</phase>
                    <goals>
                      <goal>jar</goal>
                    </goals>
                  </execution>
                </executions>
		    </plugin>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.2-beta-5</version>
				<configuration>
				    <descriptors>
					    <descriptor>src/main/assembly/dist.xml</descriptor>
					</descriptors>
				</configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
                        <phase>verify</phase> <!-- append to the packaging phase. -->
                        <goals>
                            <goal>single</goal> <!-- goals == mojos -->
                        </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>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>2.1.1</version>
            </plugin>
		</plugins>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
                <version>2.2</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>dependencies</report>
							<report>project-team</report>
							<report>issue-tracking</report>
							<report>license</report>
							<report>scm</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
                <version>2.5</version>
				<configuration>
					<encoding>UTF-8</encoding>
				</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>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
				<configuration>
					<targetJdk>1.6</targetJdk>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changelog-plugin</artifactId>
                <version>2.2</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
                <version>2.5</version>
			</plugin>
		</plugins>
	</reporting>

	<distributionManagement>
		<site>
			<id>transform.sourceforge.net</id>
			<url>scp://shell.sourceforge.net/home/groups/t/tr/transform-swf/htdocs/rel-3-0</url>
		</site>
	</distributionManagement>

</project>
