jxls-core.
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates.
Here is the list of declaration for jxls-core. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.jxls</groupId> <artifactId>jxls-core</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for jxls-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The jxls-core-1.0 has 10 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Source Control | opencsv 2.0 A simple library for CVS reading and writing in Java | 33 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
Data Structure | commons-beanutils 1.8.2 BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection. | 14 |
Data Structure | commons-collections 3.2.1 Types that extend and augment the Java Collections Framework. | 419 |
XML | commons-digester 2.0 The Digester package lets you configure an XML to Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 12 |
JSP | commons-jexl 2.0.1 Jexl is an implementation of the JSTL Expression Language with extensions. | 13 |
XML Graphics | poi 3.7 Apache POI - Java API To Access Microsoft Format Files | 24 |
XML Graphics | poi-ooxml 3.7 Apache POI - Java API To Access Microsoft Format Files | 19 |
JUnit | junit 3.8.2 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. | 555 |
Database | hsqldb 1.8.0.10 Lightweight 100% Java SQL Database Engine | 164 |
The following plugins are used in the jxls-core-1.0.jar
The following packages are defined in the jxls-core-1.0.jar
net.sf.jxls.controller net.sf.jxls.exception net.sf.jxls.formula net.sf.jxls.parser net.sf.jxls.processor net.sf.jxls.report net.sf.jxls.tag net.sf.jxls.transformation net.sf.jxls.transformer net.sf.jxls.util
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"> <parent> <groupId>net.sf.jxls</groupId> <artifactId>jxls</artifactId> <version>1.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.sf.jxls</groupId> <artifactId>jxls-core</artifactId> <packaging>jar</packaging> <name>jxls-core</name> <url>http://jxls.sf.net</url> <description> jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates </description> <dependencies> <dependency> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.2</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jexl</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.7</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.7</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.10</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>saveResults</name> <value>true</value> </property> </systemProperties> <!--<excludes>--> <!--<exclude>**/*StressTest.java</exclude>--> <!--</excludes>--> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <!--<configuration>--> <!--<templateFile>../src/site/site.vm</templateFile>--> <!--</configuration>--> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.3.2</version> </plugin> </plugins> </reporting> </project>