ZKDLComponents
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cz.datalite.zk-dl</groupId> <artifactId>ZKDLComponents</artifactId> <version>1.4.5.39</version> </dependency>
<?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> <parent> <groupId>cz.datalite.zk-dl</groupId> <artifactId>zk-dl</artifactId> <version>1.4.5.1</version> </parent> <artifactId>ZKDLComponents</artifactId> <version>1.4.5.39</version> <name>ZKDLComponents</name> <description>Data driven components with UI controlls - listbox, lovbox, combobox.</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> <dependencies> <dependency> <groupId>org.zkoss.zk</groupId> <artifactId>zk</artifactId> <version>${org.zkframework.version}</version> </dependency> <dependency> <groupId>org.zkoss.zk</groupId> <artifactId>zul</artifactId> <version>${org.zkframework.version}</version> </dependency> <dependency> <groupId>org.zkoss.zk</groupId> <artifactId>zhtml</artifactId> <version>${org.zkframework.version}</version> </dependency> <dependency> <groupId>cz.datalite.zk-dl</groupId> <artifactId>DLBind</artifactId> <version>${cz.datalite.zk-dl.version}</version> </dependency> <dependency> <groupId>cz.datalite.zk-dl</groupId> <artifactId>DLHelpers</artifactId> <version>${cz.datalite.zk-dl.version}.2</version> </dependency> <dependency> <groupId>cz.datalite.zk-dl</groupId> <artifactId>ZKComponents</artifactId> <version>${cz.datalite.zk-dl.version}.1</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.3</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <!-- deprecated since 1.4.5.3, replaced by Apache POI --> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.10</version> <exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.10-FINAL</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.10-FINAL</version> </dependency> <!-- Test libraries / JUnit, Spring Test for unit test and Selenium/WebDriver for integration tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>metainfo/zk/lang-addon.xml</exclude> </excludes> </resource> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>metainfo/zk/lang-addon.xml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>