Maven Repository - POM file for Template apt-jelly-freemarker 2.15 2.15

Summary

APT-Jelly - Freemarker Module.

Freemarker support for APT-Jelly.

Declaration

Here is the list of declaration for apt-jelly-freemarker. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>net.sf.apt-jelly</groupId>
   <artifactId>apt-jelly-freemarker</artifactId>
   <version>2.15</version>
</dependency>

If you think this Maven repository POM file listing for apt-jelly-freemarker is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the apt-jelly-freemarker-2.15.jar

  1. maven-surefire-plugin




Packages

The following packages are defined in the apt-jelly-freemarker-2.15.jar

net.sf.jelly.apt.freemarker
net.sf.jelly.apt.freemarker.transforms

POM File Source

Here is the content of the POM file.

<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.sf.apt-jelly</groupId>
    <artifactId>apt-jelly-parent</artifactId>
    <version>2.15</version>
  </parent>

  <artifactId>apt-jelly-freemarker</artifactId>
  <name>APT-Jelly - Freemarker Module</name>
  <description>Freemarker support for APT-Jelly</description>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemProperties>
            <property>
              <name>apt.test.src.dir</name>
              <value>${basedir}/src/test/sample</value>
            </property>
          </systemProperties>
          <excludes>
            <exclude>**/*TestCase.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>apt-jelly-core</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>org.freemarker</groupId>
      <artifactId>freemarker</artifactId>
    </dependency>

    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <optional>true</optional>
    </dependency>
  </dependencies>

</project>