<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>
	<parent>
		<groupId>net.sourceforge.floggy</groupId>
		<artifactId>floggy</artifactId>
		<version>1.1</version>
	</parent>
	<artifactId>floggy-persistence-framework</artifactId>
	<version>1.0.1</version>
	<name>Floggy Persistence Framework</name>
	<description>
		A JME Persistence Framework for JME applications
	</description>
	<repositories>
		<repository>
			<id>floggy</id>
			<url>http://floggy.sourceforge.net/repository</url>
		</repository>
		<repository>
			<id>pyx4j-web</id>
			<url>http://www.pyx4j.com/maven2</url>
		</repository>
	</repositories>
	<scm>
		<connection>scm:svn:https://floggy.svn.sourceforge.net/svnroot/floggy/tags/floggy-persistence-framework-1.0.1</connection>
		<developerConnection>scm:svn:https://floggy.svn.sourceforge.net/svnroot/floggy/tags/floggy-persistence-framework-1.0.1</developerConnection>
		<url>http://floggy.svn.sourceforge.net/viewvc/floggy/tags/floggy-persistence-framework-1.0.1</url>
	</scm>
	<dependencies>
		<dependency>
			<groupId>javax.microedition</groupId>
			<artifactId>midpapi</artifactId>
			<version>1.0</version>
			<scope>system</scope>
			<systemPath>${wtk.home}/lib/midpapi10.jar</systemPath>
		</dependency>
		<dependency>
			<groupId>javax.microedition</groupId>
			<artifactId>cldcapi</artifactId>
			<version>1.0</version>
			<scope>system</scope>
			<systemPath>${wtk.home}/lib/cldcapi10.jar</systemPath>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.3</source>
					<target>1.1</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>com.pyx4me</groupId>
				<artifactId>j2me-maven-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>preverify</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<wtkHome>${wtk.home}</wtkHome>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<properties>
		<j2me.midlet.profile>MIDP-1.0</j2me.midlet.profile>
		<j2me.midlet.configuration>CLDC-1.0</j2me.midlet.configuration>
	</properties>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>
					maven-project-info-reports-plugin
				</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<minmemory>128m</minmemory>
					<maxmemory>512</maxmemory>
					<stylesheet>maven</stylesheet>
					<excludePackageNames>*.internal</excludePackageNames>
					<!-- stylesheetfile>css/maven-theme.css</stylesheetfile-->
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
				<configuration>
					<linkJavadoc>true</linkJavadoc>
					<javadocDir>/apidocs/</javadocDir>
				</configuration>
			</plugin>
			<!-- plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changelog-plugin</artifactId>
			</plugin-->
		</plugins>
	</reporting>
</project>
