<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.gvsig.mobile</groupId>
	<artifactId>org.gvsig.mobile.symbology</artifactId>
	<name>org.gvsig.mobile.symbology</name>
	<version>0.0.1.SNAPSHOT</version>
	<packaging>bundle</packaging>
	<parent>
		<groupId>org.gvsig.mobile</groupId>
		<artifactId>gvsig-base-library-pom</artifactId>
		<version>1.0-SNAPSHOT</version>
	</parent>

	<build>
		<sourceDirectory>./src</sourceDirectory>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Import-Package>
							com.vividsolutions.jts.algorithm,
 							com.vividsolutions.jts.geom,
 							org.cresques.cts,
 							org.gvsig.compat.print,
 							org.gvsig.fmap.dal,
 							org.gvsig.fmap.dal.exception,
 							org.gvsig.fmap.dal.feature,
 							org.gvsig.fmap.dal.feature.impl,
 							org.gvsig.fmap.geom,
 							org.gvsig.fmap.geom.aggregate,
 							org.gvsig.fmap.geom.exception,
 							org.gvsig.fmap.geom.primitive,
 							org.gvsig.fmap.mapcontext,
 							org.gvsig.fmap.mapcontext.layers,
 							org.gvsig.fmap.mapcontext.layers.vectorial,
 							org.gvsig.fmap.mapcontext.rendering.legend,
 							org.gvsig.fmap.mapcontext.rendering.legend.events,
 							org.gvsig.fmap.mapcontext.rendering.legend.styling,
 							org.gvsig.fmap.mapcontext.rendering.symbols,
 							org.gvsig.mobile.core.libraries,
 							org.gvsig.mobile.graphicLayer,
 							org.gvsig.mobile.symbology,
 							org.gvsig.mobile.symbology.basic,
 							org.gvsig.mobile.symbology.labeling,
 							org.gvsig.mobile.symbology.labeling.constraints,
 							org.gvsig.mobile.symbology.labeling.fonts,
 							org.gvsig.mobile.symbology.legend,
 							org.gvsig.mobile.symbology.md5,
 							org.gvsig.mobile.symbology.symbol,
 							org.gvsig.mobile.symbology.util,
 							org.gvsig.tools,
							org.gvsig.tools.dispose,
 							org.gvsig.tools.dynobject,
 							org.gvsig.tools.evaluator,
 							org.gvsig.tools.library,
 							org.gvsig.tools.observer,
 							org.gvsig.tools.observer.impl,
 							org.gvsig.tools.persistence,
 							org.gvsig.tools.persistence.exception,
 							org.gvsig.tools.task,
 							org.osgi.framework;version="1.3.0",
 							org.slf4j;version="1.5",
							!*
             			 </Import-Package>
						<Export-Package>
							org.gvsig.mobile.symbology,
							org.gvsig.mobile.symbology.basic,
							org.gvsig.mobile.symbology.labeling,
							org.gvsig.mobile.symbology.labeling.constraints,
							org.gvsig.mobile.symbology.labeling.fonts,
							org.gvsig.mobile.symbology.labeling.fonts.houseblend,
							org.gvsig.mobile.symbology.legend,
							org.gvsig.mobile.symbology.md5,
							org.gvsig.mobile.symbology.symbol,
							org.gvsig.mobile.symbology.util
						</Export-Package>

						<Bundle-SymbolicName>org.gvsig.mobile.symbology
						</Bundle-SymbolicName>
						<Bundle-Activator>org.gvsig.mobile.symbology.Activator
						</Bundle-Activator>
						<Bundle-ActivationPolicy>
							lazy
						</Bundle-ActivationPolicy>
						<Bundle-RequiredExecutionEnvironment>
							J2SE-1.4
						</Bundle-RequiredExecutionEnvironment>
					</instructions>
					<manifestLocation>${basedir}/META-INF
					</manifestLocation>
				</configuration>
			</plugin>
			
			
			
			
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>

				<configuration>
					<classesDirectory>
						data/fonts
					</classesDirectory>
					<includes>
						<include>*.jhf</include>
					</includes>
				</configuration>
				<executions>
					<execution>
						<id>herseyfonts</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>herseyfonts</classifier>
							<outputDirectory>${project.basedir}/target</outputDirectory>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>org.gvsig.mobile</groupId>
			<artifactId>org.gvsig.mobile.core.libraries
			</artifactId>
			<version>1.0.0.SNAPSHOT</version>
		</dependency>
		
		<dependency>
			<groupId>org.apache.felix</groupId>
			<artifactId>org.osgi.core</artifactId>
			<version>1.2.0</version>
		</dependency>

		<dependency>
			<groupId>org.apache.felix</groupId>
			<artifactId>org.osgi.compendium</artifactId>
			<version>1.2.0</version>
		</dependency>
	</dependencies>
</project>