aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.txt15
-rw-r--r--pom.xml2
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java2
-rw-r--r--src/site/site.xml11
4 files changed, 28 insertions, 2 deletions
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..178aea2
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,15 @@
+Jackcess
+
+Jackcess is a pure Java library for reading from and writing to MS Access
+databases (currently supporting versions 2000-2013). It is not an
+application. There is no GUI. It's a library, intended for other developers to
+use to build Java applications. Jackcess is licensed under the Apache License
+(as of version 2.1.0).
+
+
+Please note that the GitHub repository is a mirror of the main project
+repository which is hosted on SourceForge:
+
+Homepage: http://jackcess.sourceforge.net/
+
+Project: https://sourceforge.net/projects/jackcess/
diff --git a/pom.xml b/pom.xml
index 817a0fa..ccf854a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId>
- <version>1.1.1</version>
+ <version>1.1.2-SNAPSHOT</version>
</parent>
<groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId>
diff --git a/src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java b/src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java
index aa81855..c4d3e09 100644
--- a/src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java
+++ b/src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java
@@ -38,7 +38,7 @@ import com.healthmarketscience.jackcess.util.MemFileChannel;
* </pre>
* <p/>
* Advanced example usage:
- * <pre>
+ * <pre class="prettyprint linenums">
* Database db = new DatabaseBuilder(new File("test.mdb"))
* .setReadOnly(true)
* .open();
diff --git a/src/site/site.xml b/src/site/site.xml
index e2167ba..12813ab 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -1,6 +1,11 @@
<?xml version="1.0"?>
<project name="Jackcess">
+ <skin>
+ <groupId>org.apache.maven.skins</groupId>
+ <artifactId>maven-fluido-skin</artifactId>
+ <version>1.4</version>
+ </skin>
<body>
<menu name="Jackcess">
<item name="About" href="index.html"/>
@@ -15,5 +20,11 @@
<menu ref="reports"/>
</body>
+
+ <custom>
+ <fluidoSkin>
+ <sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
+ </fluidoSkin>
+ </custom>
</project>