Maven Repository - POM file for Database jackcess 1.2.4 1.2.4

Summary

Jackcess.

A pure Java library for reading from and writing to MS Access databases..

Declaration

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

<dependency>
   <groupId>com.healthmarketscience.jackcess</groupId>
   <artifactId>jackcess</artifactId>
   <version>1.2.4</version>
</dependency>

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

Depends on

The jackcess-1.2.4 has 4 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
Data Structurecommons-lang 2.0
Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
26
Logcommons-logging 1.0.3
Commons Logging
69




Plugin

The following plugins are used in the jackcess-1.2.4.jar

  1. cobertura-maven-plugin
  2. maven-changes-plugin
  3. maven-changes-plugin
  4. maven-jar-plugin
  5. maven-javadoc-plugin

Packages

The following packages are defined in the jackcess-1.2.4.jar

com.healthmarketscience.jackcess
com.healthmarketscience.jackcess.query
com.healthmarketscience.jackcess.scsu




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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion> 
  <parent>
    <groupId>com.healthmarketscience</groupId>
    <artifactId>openhms-parent</artifactId>
    <version>1.0.7</version>
  </parent>
  <groupId>com.healthmarketscience.jackcess</groupId>
  <artifactId>jackcess</artifactId>
  <name>Jackcess</name>
  <description>A pure Java library for reading from and writing to MS Access databases.</description>
  <version>1.2.4</version>
  <url>http://jackcess.sf.net</url>
  <inceptionYear>2005</inceptionYear>
  
  <issueManagement>
    <system>SourceForge</system>
    <url>http://sourceforge.net/tracker/?group_id=134943&amp;atid=731445</url>
  </issueManagement>
  <scm>
    <connection>scm:svn:http://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/tags/jackcess-1.2.4</connection>
    <!-- read/write svn connection -->
    <developerConnection>scm:svn:https://jackcess.svn.sourceforge.net/svnroot/jackcess/jackcess/tags/jackcess-1.2.4</developerConnection>
    <url>http://jackcess.svn.sourceforge.net/viewvc/jackcess/jackcess/tags/jackcess-1.2.4</url>
  </scm>
  <build>
    <defaultGoal>install</defaultGoal>
    <sourceDirectory>src/java</sourceDirectory>
    <testSourceDirectory>test/src/java</testSourceDirectory>
    <resources>
      <resource>
        <directory>src/resources</directory>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>test/src/resources</directory>
      </testResource>
    </testResources>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <configuration>
            <forkMode>once</forkMode>
            <argLine>-Xmx256M -server</argLine>
            <systemProperties>
              <property>
                <name>log4j.configuration</name>
                <value>log4j_test.properties</value>
              </property>
              <property>
                <name>com.healthmarketscience.jackcess.bigIndex</name>
                <value>${jackcess.bigIndex}</value>
              </property>
              <property>
                <name>com.healthmarketscience.jackcess.testFormats</name>
                <value>${jackcess.testFormats}</value>
              </property>
            </systemProperties>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>    
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <configuration>
          <instrumentation>
            <excludes>
              <exclude>com/healthmarketscience/jackcess/scsu/**</exclude>
            </excludes>
          </instrumentation>
        </configuration>
        <executions>
          <execution>
            <id>clean</id>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-changes-plugin</artifactId>
        <configuration>
          <smtpHost>localhost</smtpHost>
          <toAddresses>
            <toAddress>jackcess-users@lists.sourceforge.net</toAddress>
          </toAddresses>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0.3</version>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.7</version>
      <scope>runtime</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.0</version>
      <scope>test</scope>
    </dependency>    
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-changes-plugin</artifactId>
        <configuration> 
          <issueLinkTemplate>%URL%/index.php?func=detail&amp;aid=%ISSUE%&amp;group_id=134943&amp;atid=731445</issueLinkTemplate>
        </configuration>        
        <reportSets>
          <reportSet>
            <reports>
              <report>changes-report</report>
            </reports>
          </reportSet>
        </reportSets>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <minmemory>128m</minmemory>
          <maxmemory>512</maxmemory>
          <links>
            <list>http://java.sun.com/j2se/1.5.0/docs/api</list>
            <list>http://java.sun.com/javaee/5/docs/api/</list>
          </links>
          <source>1.5</source>
          <excludePackageNames>com.healthmarketscience.jackcess.scsu</excludePackageNames>
          <show>public</show>
          <quiet>true</quiet>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
  <distributionManagement>
    <site>
      <id>jackcess-build-site</id>
      <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url>
    </site>    
  </distributionManagement>
  <properties>
    <jackcess.bigIndex>true</jackcess.bigIndex>
    <jackcess.testFormats>V1997,V2000,V2003,V2007,V2010</jackcess.testFormats>
  </properties>
</project>