Hi,

sorry missed to add the pom.xml file.

Kind regards
Karl Heinz Marbaise
--
SoftwareEntwicklung Beratung Schulung    Tel.: +49 (0) 2405 / 415 893
Dipl.Ing.(FH) Karl Heinz Marbaise        ICQ#: 135949029
Hauptstrasse 177                         USt.IdNr: DE191347579
52146 Würselen                           http://www.soebes.de
<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";>
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.soebes</groupId>
	<artifactId>supose</artifactId>
	<version>0.5.3-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>Subversion Repository Search Engine</name>
	<description>SupoSE is an approache to scan a whole Subversion Repository an put all needed information 
		into an Lucene Index to do search queris on it later.</description>
	<url>http://www.supose.org</url>
	<licenses>
		<license>
			<name>The GNU General Public License Version 2</name>
			<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
			<distribution>repo</distribution>
			<!-- 			<comments>Comments</comments>  -->
		</license>
	</licenses>

	<properties>
		<maven-license-plugin.version>1.4.0</maven-license-plugin.version>
		<quartz.version>1.6.4</quartz.version>
		<ini4j.version>0.5.1</ini4j.version>
		<lucene.version>2.4.0</lucene.version>
		<tika.version>0.3</tika.version>
	</properties>

	<organization>
		<name>SoftwareEntwicklung Beratung Schulung</name>
		<url>http://www.soebes.de</url>
	</organization>

	<developers>
		<developer>
			<id>kama</id>
			<name>Karl Heinz Marbase</name>
			<email>k...@soebes.de</email>
			<timezone>+1</timezone>
			<roles>
				<role>project lead</role>
				<role>commiter</role>
			</roles>
		</developer>
	</developers>

	<contributors>
		<contributor>
			<email>msu...@redhat.com</email>
			<roles>
				<role>reporter</role>
				<role>tester</role>
			</roles>
		</contributor>
		<contributor>
			<email>bill....@sungardhe.com</email>
			<roles>
				<role>reporter</role>
				<role>tester</role>
			</roles>
		</contributor>
		<contributor>
			<name>Mark Schlieker</name>
			<roles>
				<role>reporter</role>
				<role>tester</role>
			</roles>
		</contributor>
	</contributors>

	<issueManagement>
		<system>Redmine</system>
		<url>http://www.supose.org</url>
	</issueManagement>

	<ciManagement>
		<system>Hudson</system>
		<url>${cimanagement.url}</url>
	</ciManagement>

	<scm>
		<connection>scm:svn:http://svn.serverix/supose/</connection>
		<developerConnection>scm:svn:http://svn.serverix/supose/trunk</developerConnection>
		<url>http://www.supose.org/repositories/show/supose</url>
	</scm>

	<build>
		<finalName>${project.artifactId}-${project.version}-${buildNumber}</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-antrun-plugin</artifactId>
				<version>1.2</version>
				<executions>
					<execution>
						<phase>clean</phase>
						<configuration>
							<tasks unless="maven.test.skip">
								<echo>SCM URL: ${system.scm.url}</echo>
								<echo>SCM DEV: ${system.scm.dev}</echo>
								<echo>SCM CON: ${system.scm.connection}</echo>
								<echo> DI URL: ${system.site.deployment}</echo>
							</tasks>
						</configuration>
						<goals>
							<goal>run</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<artifactId>maven-clean-plugin</artifactId>
				<configuration>
					<filesets>
						<fileset>
							<directory>test-output</directory>
						</fileset>
					</filesets>
				</configuration>
			</plugin>			

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<debug>true</debug>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.4.3</version>
				<configuration>
					<forkMode>once</forkMode>
					<printSummary>true</printSummary>
					<useFile>true</useFile>
					<testFailureIgnore>true</testFailureIgnore>
					<suiteXmlFiles>
						<suiteXmlFile>src/test/resources/test-all.xml</suiteXmlFile>
					</suiteXmlFiles>
				</configuration>
			</plugin>

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

			<!-- to be sure the created file of the coverage report will be delted -->
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.2</version>
				<executions>
					<execution>
						<id>clean</id>
						<goals>
							<goal>clean</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.2-beta-3</version>
				<configuration>
					<descriptors>
						<descriptor>src/main/assembly/bin.xml</descriptor>
						<descriptor>src/main/assembly/src.xml</descriptor>
					</descriptors>
				</configuration>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<mainClass>com.soebes.supose.CLI.SuposeCLI</mainClass>
							<packageName>com.soebes.supose</packageName>
							<!-- options
							<addClasspath>true</addClasspath>
							<addExtensions />
							<classpathPrefix />
							-->
						</manifest>
						<manifestEntries>
							<!-- This will overwrite the default Built-By entry... -->
							<Built-By>Karl Heinz Marbaise</Built-By>
							<mode>development</mode>
							<url>${pom.url}</url>
							<Implementation-Build>${buildNumber}</Implementation-Build>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>buildnumber-maven-plugin</artifactId>
				<executions>
					<execution>
						<phase>validate</phase>
						<goals>
							<goal>create</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<doCheck>false</doCheck>
					<doUpdate>false</doUpdate>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>antlr3-maven-plugin</artifactId>
				<version>1.0</version>
				<executions>
					<execution>
						<goals>
							<goal>antlr</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			
			<plugin>
				<!--
					Configuration of the plugin: http://code.google.com/p/maven-license-plugin/wiki/Configuration
				-->
				<groupId>com.google.code.maven-license-plugin</groupId>
				<artifactId>maven-license-plugin</artifactId>
				<version>${maven-license-plugin.version}</version>
				<configuration>
					<header>src/main/etc/header.txt</header>
					<quiet>false</quiet>
					<failIfMissing>false</failIfMissing>
					<includes>
						<include>src/**</include>
						<include>**/test/**</include>
					</includes>
					<excludes>
						<exclude>src/main/antlr/**</exclude>
						<exclude>src/main/java-generated/**</exclude>
						<exclude>target/**</exclude>
						<exclude>build/**</exclude>
						<exclude>src/test/resources/**</exclude>
						<exclude>src/main/resources/**</exclude>
					</excludes>
					<useDefaultExcludes>true</useDefaultExcludes>
					<mapping>
						<jwc>xml</jwc>
						<application>xml</application>
						<myFileExtension>java</myFileExtension>
					</mapping>
					<useDefaultMapping>true</useDefaultMapping>
					<properties>
						<year>2007, 2008, 2009</year>
						<email>sup...@soebes.org</email>
					</properties>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>check</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<!--
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<mainClass>com.soebes.supose.cli.SuposeCLI</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			-->
			<plugin>
				<groupId>org.dstovall</groupId>
				<artifactId>onejar-maven-plugin</artifactId>
				<version>1.2.1</version>
				<executions>
					<execution>
						<configuration>
							<!-- Optional -->
							<onejarVersion>0.96</onejarVersion>
							<mainClass>com.soebes.supose.cli.SuposeCLI</mainClass>
						</configuration>
						<goals>
							<goal>one-jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>


			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>appassembler-maven-plugin</artifactId>
				<version>1.0</version>
				<configuration>
					<binPrefix>SupoSE</binPrefix>
					<assembleDirectory>${project.build.directory}/supose-assembler</assembleDirectory>
					<extraJvmArguments>-Xms512m -Xmx1024m</extraJvmArguments>
					<generateRepository>false</generateRepository>
					<repositoryName>lib</repositoryName>
					<repositoryLayout>flat</repositoryLayout>
					<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
					<platforms>
						<platform>windows</platform>
						<platform>unix</platform>
					</platforms>
					<programs>
						<program>
							<mainClass>com.soebes.supose.cli.SuposeCLI</mainClass>
							<name>supose</name>
						</program>
					</programs>
					<executions>
						<execution>
							<phase>prepare-package</phase>
							<goals>
								<goal>assemble</goal>
							</goals>
						</execution>
					</executions>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.doxia</groupId>
				<artifactId>doxia-maven-plugin</artifactId>
				<version>1.0-alpha-10</version>
				<executions>
					<execution>
						<phase>pre-site</phase>
						<goals>
							<goal>render-books</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<books>
						<book>
							<directory>src/site/apt</directory>
							<descriptor>src/site/suposeguide.xml</descriptor>
							<formats>
								<format>
									<id>xdoc</id>
								</format>
								<format>
									<id>pdf</id>
								</format>
							</formats>
						</book>
					</books>
				</configuration>
			</plugin>
		</plugins>

	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>jdepend-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.4</version>
					<configuration>
						<doctitle>${project.name} ${project.version}-${project.buildNumber} API</doctitle>
					</configuration>
<!--				<configuration>
					<stylesheetfile>${basedir}/src/main/javadoc/javadoc.css</stylesheetfile>
					<linksource>true</linksource>
                    <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
                    <docletArtifact>
                        <groupId>gr.spinellis</groupId>
                        <artifactId>UmlGraph</artifactId>
                        <version>4.4</version>
                    </docletArtifact>
                    <additionalparam>
                        -inferrel -inferdep -quiet -hide java.* -collpackages java.util.* -qualify
                        -postfixpackage -nodefontsize 9
                        -nodefontpackagesize 7
                    </additionalparam>
                </configuration> -->
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<configuration>
					<linkXref>true</linkXref>
					<sourceEncoding>utf-8</sourceEncoding>
					<targetJdk>1.5</targetJdk>
				</configuration>

			</plugin>

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changes-plugin</artifactId>
				<version>2.1</version>
				<configuration>
					<issueLinkTemplate>http://www.supose.org/issues/show/%ISSUE%</issueLinkTemplate>
					<!-- 
						WARNING:	Currently the using of the following does not work as expected.
									The above line will produce a warning during site generation goal.

						<issueLinkTemplatePerSystem>
							<Redmine>http://www.supose.org/issues/show/%ISSUE%</Redmine>
						</issueLinkTemplatePerSystem>
					-->
					<xmlPath>${basedir}/changes.xml</xmlPath>
				</configuration>
				<reportSets>
					<reportSet>
						<reports>
							<report>changes-report</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>

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

			<!-- Mark all occurance of @todo in source code -->	
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>taglist-maven-plugin</artifactId>
				<configuration>
				<tags>
					<tag>TODO</tag>
					<tag>XXX</tag>
					<tag>FIXME</tag>
					<tag>HACK</tag>
				</tags>
				</configuration>
			</plugin>


			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
<!--
				<reportSets>
			  <reportSet>
                  <id>uml</id>
                  <configuration>
                     <doclet>gr.spinellis.umlgraph.doclet.UmlGraph</doclet>

                     <docletArtifact>
                        <groupId>gr.spinellis</groupId>
                        <artifactId>UmlGraph</artifactId>
                        <version>4.4</version>
                     </docletArtifact>

                     <additionalparam>-views</additionalparam>
                     <destDir>target/uml</destDir>
                     <show>private</show>
                  </configuration>
                  <reports>
                     <report>javadoc</report>
                  </reports>
               </reportSet>
               <reportSet>
                  <id>html</id>
                  <configuration>
                     <show>private</show>
                  </configuration>
                  <reports>
                     <report>javadoc</report>
                  </reports>
               </reportSet>
					
					<reportSet>
						<id>perf</id>
						<configuration>
							<reportsDirectory>${project.build.directory}/surefire-reports/perf</reportsDirectory>
							<outputName>surefire-report-perf</outputName>
						</configuration>
						<reports>
							<report>report</report>
						</reports>
					</reportSet>
					
					<reportSet>
						<reports>
							<report>dependencies</report>
							<report>project-team</report>
							<report>license</report>
							<report>scm</report>
							<report>jxr</report>
							<report>javadoc</report>
							<report>pmd</report>
							<report>perf</report>
							<report>cim</report>
							<report>changes</report>
							<report>issue-tracking</report>
						</reports>
					</reportSet>
				</reportSets>

-->
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<version>2.4.3</version>
				<configuration>
					<reportsDirectory>target/surefire-reports</reportsDirectory>
				</configuration>
			</plugin>
		</plugins>
	</reporting>


	<distributionManagement>
		<repository>
			<id>mvn.repository.soebes.de</id>
			<name>SoEBeS Repository</name>
			<url>scp://h5593.serverkompetenz.net:/usr/local/vhosts/mvn.repository.soebes.de</url>
		</repository>
		<site>
			<id>mvn.supose.soebes.de</id>
			<url>scp://h5593.serverkompetenz.net:/usr/local/vhosts/mvn.supose.soebes.de</url>
		</site>
	</distributionManagement>

    <dependencies>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-cli</artifactId>
			<version>2.0-DEV</version>
		</dependency>
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<version>5.8</version>
			<scope>test</scope>
			<classifier>jdk15</classifier>
		</dependency>
		<dependency>
			<groupId>com.sun.jna</groupId>
			<artifactId>jna</artifactId>
			<version>3.0.9</version>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>com.trilead</groupId>
			<artifactId>trilead-ssh2</artifactId>
			<version>build213-svnkit-1.2-patch</version>
			<optional>true</optional>
		</dependency>		
		<dependency>
			<groupId>org.tmatesoft.svnkit</groupId>
			<artifactId>svnkit</artifactId>
			<version>1.2.3.5521</version>
		</dependency>
		<dependency>
			<groupId>org.apache.lucene</groupId>
			<artifactId>lucene-core</artifactId>
			<version>${lucene.version}</version>
		</dependency>
		<dependency>
			<groupId>pdfbox</groupId>
			<artifactId>pdfbox</artifactId>
			<version>0.7.3</version>
		</dependency>
		<dependency>
			<groupId>opensymphony</groupId>
			<artifactId>quartz</artifactId>
			<version>${quartz.version}</version>
		</dependency>
		<dependency>
			<groupId>org.ini4j</groupId> 
			<artifactId>ini4j</artifactId> 
			<version>${ini4j.version}</version>
		</dependency>
		<dependency>
			<groupId>org.antlr</groupId>
			<artifactId>antlr</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tika</groupId>
			<artifactId>tika</artifactId>
			<version>${tika.version}</version>
		</dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>net.sf.retrotranslator</groupId>
			<artifactId>retrotranslator-runtime</artifactId>
			<version>1.2.4</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to