<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>org.opencms</groupId>
	<artifactId>langdetect-opencms</artifactId>
	<packaging>jar</packaging>
	<version>1.0</version>
	<name>langdetect-opencms</name>
	<url>http://opencms.org</url>

	<description>
		langdetect-opencms is an extention of langdetect for OpenCms.
	
		OpenCms is a Content Management System that is based on Open
		Source Software. Complex Intranet and Internet websites can be
		quickly and cost-effectively created, maintained and managed.
	</description>
	
	<inceptionYear>2012</inceptionYear>

	<mailingLists>
		<mailingList>
			<name>The OpenCms mailing list</name>
			<subscribe>
				http://www.opencms.org/en/development/mailinglist.html
			</subscribe>
			<unsubscribe>
				http://www.opencms.org/en/development/mailinglist.html
			</unsubscribe>
			<post />
			<archive>
				http://www.opencms.org/en/development/mailinglist-archive.html
			</archive>
		</mailingList>
	</mailingLists>

	<developers>
		<developer>
			<name>Alexander Kandzior</name>
			<id>a.kandzior</id>
			<email>a.kandzior(at)alkacon.com</email>
			<organization>Alkacon Software GmbH</organization>
			<organizationUrl>http://www.alkacon.com</organizationUrl>
			<roles>
				<role>Geschäftsführer</role>
				<role>Core Developer</role>
			</roles>
			<timezone>+1</timezone>
		</developer>
	</developers>
	
	<licenses>
		<license>
			<name>GNU LESSER GENERAL PUBLIC LICENSE 2.1</name>
			<url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<url>git@github.com:alkacon/opencms-core.git</url>
		<connection>scm:git:git@github.com:alkacon/opencms-core.git</connection>
		<developerConnection>scm:git:git@github.com:alkacon/opencms-core.git</developerConnection>
	</scm>
	
	<build>
		<defaultGoal>install</defaultGoal>
		<sourceDirectory>${project.basedir}/src-components</sourceDirectory>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.5.1</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
                    <includes>
                        <include>com/cybozu/labs/langdetect/*.java</include>
                    </includes>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>package</phase>
						<goals>
							<!-- jar-no-fork: This goal functions the same as the jar goal but does not fork -->
							<!-- the build and is suitable for attaching to the build lifecycle. -->
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
                    <includes>
                        <include>com/cybozu/labs/langdetect/*.java</include>
                    </includes>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.8.1</version>
				<configuration>
					<source>${maven.compile.source}</source>
					<encoding>${project.build.sourceEncoding}</encoding>
					<docEncoding>${project.reporting.outputEncoding}</docEncoding>
					<detectLinks>false</detectLinks>
					<detectOfflineLinks>true</detectOfflineLinks>
					<failOnError>false</failOnError>
					<quiet>true</quiet>
					<links>
						<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
					</links>
					<maxmemory>512m</maxmemory>
                    <sourcepath>${basedir}/src-components/com/cybozu/labs/langdetect/</sourcepath>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
		    <groupId>com.cybozu.labs</groupId>
		    <artifactId>langdetect</artifactId>
		    <version>1.1-20120112</version>
		</dependency>
		<dependency>
			<groupId>org.opencms</groupId>
			<artifactId>opencms-core</artifactId>
			<version>8.5.0</version>
		</dependency>
	</dependencies>
	<distributionManagement>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Nexus Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		</snapshotRepository>

		<repository>
			<id>sonatype-nexus-staging</id>
			<name>Nexus Release Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

</project>
