<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>BuckoVidLib</groupId>
	<artifactId>BuckoVidLib</artifactId>
	<version>0.18.0</version>
	<packaging>war</packaging>
	<name>BuckoVidLib</name>
	<description>BuckoSoft Video Library App</description>
	<url>http://www.buckosoft.com/BuckoVidLib</url>
	<inceptionYear>2014</inceptionYear>

	<organization>
		<name>BuckoSoft</name>
		<url>http://www.buckosoft.com</url>
	</organization>
	<developers>
		<developer>
			<id>dick</id>
			<name>Dick Balaska</name>
			<timezone>America/New_York</timezone>
			<email>dick@buckosoft.com</email>
			<url>http://www.buckosoft.com/~dick</url>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git://git.buckosoft.com/git/public/BuckoVidLib</connection>
		<developerConnection>scm:git:ssh://git.buckosoft.com/git/public/BuckoVidLib</developerConnection>
		<!-- <url>http://git.buckosoft.com/gitweb/?p=BuckoVidLib.git;a=tree;hb=HEAD;f=</url> -->
	</scm>
	<issueManagement>
		<system>Bugzilla</system>
		<url>http://www.buckosoft.com/java/projects/buckovidlib/bugzilla/</url>
	</issueManagement>

	<properties>
		<!-- Generic properties -->
		<java.version>1.7</java.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

		<tomcat.version>7.0.52</tomcat.version>
		<spring-framework.version>4.1.0.RELEASE</spring-framework.version>
		<cxf.version>2.7.12</cxf.version>
		<bsaccount.version>2.2-SNAPSHOT</bsaccount.version>

		<!-- Web dependencies -->
<!--
	 	<webjars-bootstrap.version>2.3.0</webjars-bootstrap.version>
		<webjars-jquery-ui.version>1.10.3</webjars-jquery-ui.version>
		<webjars-jquery.version>2.0.3-1</webjars-jquery.version>
		<dandelion.version>0.10.1</dandelion.version>
 -->		
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.buckosoft</groupId>
			<artifactId>BSAccount</artifactId>
			<version>${bsaccount.version}</version>
		</dependency>
		<dependency>
			<groupId>com.buckosoft</groupId>
			<artifactId>BSWebLinks</artifactId>
			<version>0.2-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.17</version>
		</dependency>
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<version>4.2.7.Final</version>
		</dependency>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.1.3</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.6</version>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>jstl</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>taglibs</groupId>
			<artifactId>standard</artifactId>
			<version>1.0.6</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-api</artifactId>
			<version>${tomcat.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-core</artifactId>
			<version>${spring-framework.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<version>${spring-framework.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${spring-framework.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>${spring-framework.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjrt</artifactId>
			<version>1.8.2</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-bundle-jaxrs</artifactId>
			<version>${cxf.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
			<version>${cxf.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-rt-transports-http</artifactId>
			<version>${cxf.version}</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
		</dependency>
	</dependencies>

	<build>
		<!-- we dont want the version to be part of the generated war file name -->
		<finalName>${project.artifactId}</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.9</version>
				<configuration>
					<downloadSources>true</downloadSources>
					<downloadJavadocs>true</downloadJavadocs>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.5.1</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<webResources>
						<resource>
							<directory>src/main/webapp</directory>
							<filtering>false</filtering>
							<excludes>
								<exclude>**/*.jsp</exclude>
							</excludes>
						</resource>
						<resource>
							<directory>src/main/webapp</directory>
							<filtering>true</filtering>
							<includes>
								<include>**/*.jsp</include>
							</includes>
						</resource>
					</webResources>
					<archive>
						<manifest>
							<addClasspath>false</addClasspath>
						</manifest>
						<manifestEntries>
							<Build-Time>${maven.build.timestamp}</Build-Time>
							<Build-Host>${agent.name}</Build-Host>
							<Build-User>${user.name}</Build-User>
							<Build-Maven>Maven ${maven.version}</Build-Maven>
							<Build-Java>${java.version}</Build-Java>
							<Build-OS>${os.name}</Build-OS>
							<Build-Label>${project.version}</Build-Label>
							<Build-Path>${basedir}</Build-Path>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>
 		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<!-- for alternative layout use "maven" or "java" -->
					<stylesheet>maven</stylesheet>
					<show>protected</show>
					<overview>${basedir}/src/main/javadoc/overview.html</overview>
					<quiet>true</quiet>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<configuration>
					<linkXref>true</linkXref>
					<sourceEncoding>UTF-8</sourceEncoding>
					<minimumTokens>30</minimumTokens>
					<targetJdk>1.6</targetJdk>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
				<configuration>
				</configuration>
			</plugin>


			<!--
				TODO:
				http://maven.apache.org/plugins/maven-changes-plugin/changes-report-mojo.html

				<plugin> <groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changes-plugin</artifactId>
				<inherited>false</inherited> <reportSets> <reportSet> <reports>
				<report>changes-report</report> </reports> </reportSet>
				</reportSets> <configuration>
				<issueLinkTemplate>http://sourceforge.net/support/tracker.php?aid=%ISSUE%</issueLinkTemplate>
				<issueLinkTemplatePerSystem>
				<qc>http://sourceforge.net/support/tracker.php?aid=%ISSUE%</qc>
				</issueLinkTemplatePerSystem> <addActionDate>true</addActionDate>
				</configuration> </plugin>
			-->
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.6</version>
			</plugin>

			<!--
				<plugin> <groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changes-plugin</artifactId> <reportSets>
				<reportSet> <reports> <report>changes-report</report> </reports>
				</reportSet> </reportSets> </plugin>
			-->
			<!--  http://mojo.codehaus.org/scmchangelog-maven-plugin/usage.html -->
			<!--
				<plugin> <groupId>org.codehaus.mojo</groupId>
				<artifactId>scmchangelog-maven-plugin</artifactId> <configuration>
				<trackerUrlPattern>http://sourceforge.net/tracker/?atid=637380&amp;group_id=104240&amp;func=browse</trackerUrlPattern>
				<trackerType>sourceforge</trackerType> <grammar>REMY</grammar>
				<connectionUrl>scm:svn:https://retroweaver.svn.sourceforge.net/svnroot/retroweaver/trunk</connectionUrl>
				<tagBase>https://retroweaver.svn.sourceforge.net/svnroot/retroweaver/tags/</tagBase>
				<filter>.*</filter> </configuration> </plugin>
			-->
			<!--
				<plugin> <groupId>org.codehaus.mojo</groupId>
				<artifactId>changelog-maven-plugin</artifactId> </plugin>
			-->
			<!--  
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<configuration>
				</configuration>
			</plugin>
			 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changelog-plugin</artifactId>
				<version>2.3</version>
				<reportSets>
					<reportSet>
						<id>dual-report</id>


						<reports>
							<report>changelog</report>
							<report>file-activity</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
			<plugin>
				<!--  http://mojo.codehaus.org/taglist-maven-plugin/  -->
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>taglist-maven-plugin</artifactId>
				<configuration>
					<encoding>UTF-8</encoding>
					<sourceFileLocale>en</sourceFileLocale>
					<emptyComments>false</emptyComments>
					<tagListOptions>
						<tagClasses>
							<tagClass>
								<displayName>Documentation Work</displayName>
								<tags>
									<tag>
										<matchString>DOCUMENT_ME</matchString>
										<matchType>exact</matchType>
									</tag>
									<tag>
										<matchString>NOT_YET_DOCUMENTED</matchString>
										<matchType>exact</matchType>
									</tag>
								</tags>
							</tagClass>
							<tagClass>
								<displayName>Code Work</displayName>
								<tags>
									<tag>
										<matchString>FIXME</matchString>
										<matchType>ignoreCase</matchType>
									</tag>
									<tag>
										<matchString>TODO</matchString>
										<matchType>ignoreCase</matchType>
									</tag>
									<tag>
										<matchString>XXX</matchString>
										<matchType>ignoreCase</matchType>
									</tag>
								</tags>
							</tagClass>
						</tagClasses>
					</tagListOptions>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.9</version>
				<configuration>
				</configuration>
				<reportSets>
					<reportSet>
						<reports>
							<!--
								See
								http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/index.apt
								for token names
							-->
							<report>dependencies</report> <!--  Dependencies -->
							<report>project-team</report><!--  Project Team -->
							<!--
								Mailing Lists <report>mailing-list</report> Continuous
								Integration <report>cim</report>
							-->
							<report>issue-tracking</report><!--  Issue Tracking -->
							<report>license</report> <!--  Project License -->
							<report>scm</report> <!--  Source Repository -->
							<report></report> <!-- About -->
							<report>plugin-management</report> <!--  Plugin Management -->
							<report>plugins</report> <!--  Project Plugins -->
							<report>summary</report> <!--  Project Summary -->
							<report>index</report>  <!--  Project index page -->
							<report>dependency-management</report> <!--  Project DependencyManagement report  -->
							<report>dependency-convergence</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>
</project>
