Maven Repository - POM file for Web Framework zhtml 6.5.4 6.5.4

Summary

ZK XHTML components.

Declaration

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

<dependency>
   <groupId>org.zkoss.zk</groupId>
   <artifactId>zhtml</artifactId>
   <version>6.5.4</version>
</dependency>

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

License

Name:GNU LESSER GENERAL PUBLIC LICENSE, Version 3
URL: http://www.gnu.org/licenses/lgpl.html.

Depends on

The zhtml-6.5.4 has 1 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
Servletcommons-fileupload 1.2.2
The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications.
113




Plugin

The following plugins are used in the zhtml-6.5.4.jar

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

POM File Source

Here is the content of the POM file.

<?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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.zkoss.zk</groupId>
  <artifactId>zhtml</artifactId>
  <packaging>jar</packaging>
  <version>6.5.4</version>
  <name>ZK XHTML Components</name>
  <url>http://www.zkoss.org/zhtml</url>
  <description>ZK XHTML components</description>
  <licenses>
    <license>
      <name>GNU LESSER GENERAL PUBLIC LICENSE, Version 3</name>
      <url>http://www.gnu.org/licenses/lgpl.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <scm>
    <url>http://svn.sourceforge.net/viewvc/zk1/releases/${project.version}/zhtml</url>
  </scm>
  <repositories>
    <repository>
      <id>zk repository</id>
      <url>http://mavensync.zkoss.org/maven2</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>zkmaven</id>
      <name>ZK Maven Plugin Repository</name>
      <url>http://mavensync.zkoss.org/maven2</url>
    </pluginRepository>
    <pluginRepository>
      <releases>
        <enabled>false</enabled>
      </releases>
      <id>snapshots</id>
      <name>Maven Central Plugins Development Repository</name>
      <url>http://snapshots.maven.codehaus.org/maven2</url>
    </pluginRepository>
    <pluginRepository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>Maven Plugin Repository</name>
      <url>http://repo1.maven.org/maven2</url>
    </pluginRepository>
  </pluginRepositories>
  <dependencies>
    <dependency>
      <groupId>org.zkoss.zk</groupId>
      <artifactId>zul</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.2.2</version>
      <optional>true</optional>
    </dependency>
  </dependencies>
  <build>
    <directory>${project.basedir}/debug</directory>
    <outputDirectory>${project.basedir}/debug/classes</outputDirectory>
    <finalName>${project.artifactId}-${project.version}</finalName>
    <testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
    <sourceDirectory>${project.basedir}/src/</sourceDirectory>
    <resources>
      <resource>
        <directory>${project.basedir}/src/archive</directory>
      </resource>
    </resources>
    <plugins>
      <!--<plugin>
        <groupId>org.zkoss.maven</groupId>
        <artifactId>yuicompressor-maven-plugin-zk</artifactId>
        <version>1.1.4</version>
        <executions>
          <execution>
            <goals>
              <goal>compress</goal>
            </goals>
          </execution>
        </executions>
      </plugin>-->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.8</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>