Maven Repository - POM file for Swing JavaFX jxl 2.6.3 2.6.3

Summary

jxl.

JExcelApi is a java library which provides the ability to read, write, and modify Microsoft Excel spreadsheets..

Declaration

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

<dependency>
   <groupId>net.sourceforge.jexcelapi</groupId>
   <artifactId>jxl</artifactId>
   <version>2.6.3</version>
</dependency>

If you think this Maven repository POM file listing for jxl 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
URL: http://www.opensource.org/licenses/lgpl-license.php.





Depends on

The jxl-2.6.3 has 2 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 3.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.
1966

Depended by

The following table lists the most popular artifacts which are depending on jxl-2.6.3. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Springspring-webmvc 3.2.6.RELEASE
Spring Web MVC
5
Springspring-webmvc 4.0.0.RELEASE
Spring Web MVC
15
Springspring-webmvc 3.2.4.RELEASE
Spring Web MVC
11
Springspring-webmvc 3.2.1.RELEASE
Spring Web MVC
7
Springspring-webmvc 3.2.3.RELEASE
Spring Web MVC
15

Plugin

The following plugins are used in the jxl-2.6.3.jar

  1. maven-jlex-plugin




Packages

The following packages are defined in the jxl-2.6.3.jar

common
common.log
jxl
jxl.biff
jxl.biff.drawing
jxl.biff.formula
jxl.demo
jxl.format
jxl.read.biff
jxl.write
jxl.write.biff




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>net.sourceforge.jexcelapi</groupId>
  <artifactId>jxl</artifactId>
  <packaging>jar</packaging>
  <version>2.6.3</version>
  <name>jxl</name>
  <url>http://www.jexcelapi.org</url>
  <description>JExcelApi is a java library which provides the ability to read, write, and modify Microsoft Excel spreadsheets.</description>
  <licenses>
    <license>
      <name>GNU Lesser General Public License</name>
      <url>http://www.opensource.org/licenses/lgpl-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <build>
    <plugins>
      <plugin>
        <groupId>net.sourceforge.maven-jlex</groupId>
  <artifactId>maven-jlex-plugin</artifactId>
  <version>1.0</version>
        <configuration>
          <files>
            <filePair>
              <inputFile>xlformula.lex</inputFile>
              <outputFile>${project.build.sourceDirectory}/jxl/biff/formula/Yylex.java</outputFile>
            </filePair>
          </files>
        </configuration>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
    </dependency>
  </dependencies>
</project>