Maven Repository - POM file for Web Framework zkbind 6.5.4 6.5.4

Summary

ZK Bind.

Declaration

Here is the list of declaration for zkbind. 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>zkbind</artifactId>
   <version>6.5.4</version>
</dependency>

If you think this Maven repository POM file listing for zkbind 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 zkbind-6.5.4 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
Java Libraryvalidation-api 1.0.0.GA
Bean Validation (JSR-303) API.
355




Plugin

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

  1. maven-compiler-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>zkbind</artifactId>
  <packaging>jar</packaging>
  <version>6.5.4</version>
  <name>ZK Bind</name>
  <url>http://www.zkoss.org/zkbind</url>
  <description>ZK Bind</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}/zkbind</url>
  </scm>
  <repositories>
    <repository>
      <id>zk repository</id>
      <url>http://mavensync.zkoss.org/maven2</url>
    </repository>
    <repository>
      <id>maven seasar org</id>
      <url>http://maven.seasar.org/maven2</url>
    </repository>
    <repository>
      <id>jboss-repo</id>
      <url>http://repository.jboss.com/maven2</url>
    </repository>
    <repository>
      <id>nuxeo</id>
      <url>https://maven.nuxeo.org/nexus/content/groups/public</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>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.portlet</groupId>
      <artifactId>portlet-api</artifactId>
      <version>1.0</version>
      <scope>provided</scope>
    </dependency>
    <!-- jsr 303 -->
    <dependency>
      <groupId>javax.validation</groupId>
      <artifactId>validation-api</artifactId>
      <version>1.0.0.GA</version>
      <scope>provided</scope>
    </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>
    </plugins>
  </build>
</project>