Maven Repository - POM file for Library chunk-templates 2.1.1 2.1.1

Summary

Chunk Templates.

Chunk Template Engine for Java.

Declaration

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

<dependency>
   <groupId>com.x5dev</groupId>
   <artifactId>chunk-templates</artifactId>
   <version>2.1.1</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The chunk-templates-2.1.1 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1256
JSONjson-smart 1.1.1
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te...
9




Plugin

The following plugins are used in the chunk-templates-2.1.1.jar

  1. maven-compiler-plugin
  2. maven-javadoc-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the chunk-templates-2.1.1.jar

com.csvreader
com.x5.template
com.x5.template.filters
com.x5.util

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>
  <groupId>com.x5dev</groupId>
  <artifactId>chunk-templates</artifactId>
  <packaging>jar</packaging>
  <version>2.1.1</version>
  <name>Chunk Templates</name>
  <description>Chunk Template Engine for Java</description>
  <url>http://www.x5software.com/chunk/</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <url>http://code.google.com/p/chunk-templates/source/browse/tags/release-2.1.1</url>
    <connection>scm:svn:http://chunk-templates.googlecode.com/svn/tags/release-2.1.1</connection>
    <developerConnection>scm:svn:https://chunk-templates.googlecode.com/svn/tags/release-2.1.1</developerConnection>
  </scm>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.minidev</groupId>
      <artifactId>json-smart</artifactId>
      <version>1.1.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.cheffo</groupId>
      <artifactId>jeplite</artifactId>
      <version>0.8.7a</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>

  

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-source-plugin</artifactId>
          <version>2.0.4</version>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.3</version>
        </plugin>
      </plugins>
    </pluginManagement>

    <plugins>
      <plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.0.2</version>
  <configuration>
    <source>1.5</source>
    <target>1.5</target>
  </configuration>
      </plugin>

      <plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-source-plugin</artifactId>
  <executions>
    <execution>
      <id>attach-sources</id>
      <goals>
        <goal>jar</goal>
      </goals>
    </execution>
  </executions>
      </plugin>

      <plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-javadoc-plugin</artifactId>
  <executions>
    <execution>
      <id>attach-javadocs</id>
      <goals>
        <goal>jar</goal>
      </goals>
    </execution>
  </executions>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
  <property>
    <name>performRelease</name>
    <value>true</value>
  </property>
      </activation>
      <build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-gpg-plugin</artifactId>
      <version>1.1</version>
      <executions>
        <execution>
    <id>sign-artifacts</id>
    <phase>verify</phase>
    <goals>
      <goal>sign</goal>
    </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
      </build>
    </profile>
  </profiles>     

</project>