<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <groupId>com.sun.phobos</groupId>
        <artifactId>phobos-libraries</artifactId>
        <version>0.6.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.sun.phobos</groupId>
    <artifactId>freemarker</artifactId>
    <packaging>jar</packaging>
    <version>2.3.12</version>
    <name>freemarker</name>
    <url>https://phobos.dev.java.net</url>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifestEntries>
                            <Bundle-Name>com.sun.phobos:freemarker</Bundle-Name>
                            <Bundle-Version>${project.version}</Bundle-Version>
                            <Export-Package>freemarker.cache, freemarker.template, freemarker.ext.rhino</Export-Package>
                            <Import-Package>org.mozilla.javascript, javax.swing.tree</Import-Package>
                            <DynamicImport-Package>*</DynamicImport-Package>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
                <artifactId>maven-antrun-extended-plugin</artifactId>
                <version>1.30</version>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                  </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>com.sun.phobos</groupId>
            <artifactId>phobos-rhino</artifactId>
            <version>0.6.0</version>
        </dependency>
    </dependencies>
</project>
