diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2018-07-29 02:23:02 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2018-07-29 02:23:02 +0000 |
commit | 821c939d1cb7520e2f6d699ed187a1e4a44153fb (patch) | |
tree | ff0fc4a8c4d3c50686d9c46a3d547bf3e27a3e7b | |
parent | 3739de6df80d0b20310c3c9d0fcab133fc734b0e (diff) | |
download | jackcess-821c939d1cb7520e2f6d699ed187a1e4a44153fb.tar.gz jackcess-821c939d1cb7520e2f6d699ed187a1e4a44153fb.zip |
update parent pom; update urls for https
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1188 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | README.txt | 2 | ||||
-rw-r--r-- | pom.xml | 24 | ||||
-rw-r--r-- | src/changes/changes.xml | 4 | ||||
-rw-r--r-- | src/site/fml/faq.fml | 4 | ||||
-rw-r--r-- | src/site/site.xml | 8 | ||||
-rw-r--r-- | src/site/xdoc/index.xml | 4 | ||||
-rw-r--r-- | src/site/xdoc/jackcess-2.xml | 2 |
7 files changed, 24 insertions, 24 deletions
@@ -10,6 +10,6 @@ use to build Java applications. Jackcess is licensed under the Apache License Please note that the GitHub repository is a mirror of the main project repository which is hosted on SourceForge: -Homepage: http://jackcess.sourceforge.net/ +Homepage: https://jackcess.sourceforge.io/ Project: https://sourceforge.net/projects/jackcess/ @@ -1,16 +1,16 @@ <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> + <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.healthmarketscience</groupId> <artifactId>openhms-parent</artifactId> - <version>1.1.8</version> + <version>1.1.10</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>2.2.0-SNAPSHOT</version> - <url>http://jackcess.sf.net</url> + <url>https://jackcess.sourceforge.io</url> <inceptionYear>2005</inceptionYear> <developers> <developer> @@ -103,7 +103,7 @@ </contributors> <issueManagement> <system>SourceForge2</system> - <url>http://sourceforge.net/p/jackcess/bugs/</url> + <url>https://sourceforge.net/p/jackcess/bugs/</url> </issueManagement> <scm> <connection>scm:svn:svn://svn.code.sf.net/p/jackcess/code/jackcess/trunk/</connection> @@ -135,7 +135,7 @@ </configuration> </plugin> </plugins> - </pluginManagement> + </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> @@ -149,9 +149,9 @@ <execution> <id>bundle-manifest</id> <phase>process-classes</phase> - <goals> + <goals> <goal>manifest</goal> - </goals> + </goals> </execution> </executions> </plugin> @@ -224,7 +224,7 @@ <version>3.9</version> <optional>true</optional> </dependency> - + </dependencies> <reporting> <plugins> @@ -241,8 +241,8 @@ <artifactId>maven-changes-plugin</artifactId> <configuration> <issueLinkTemplatePerSystem> - <SourceForge2Features>http://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features> - <SourceForge2Patches>http://sourceforge.net/p/jackcess/patches/%ISSUE%</SourceForge2Patches> + <SourceForge2Features>https://sourceforge.net/p/jackcess/feature-requests/%ISSUE%</SourceForge2Features> + <SourceForge2Patches>https://sourceforge.net/p/jackcess/patches/%ISSUE%</SourceForge2Patches> <GitHubPullRequests>https://github.com/jahlborn/jackcess/pull/%ISSUE%</GitHubPullRequests> </issueLinkTemplatePerSystem> </configuration> @@ -286,7 +286,7 @@ <configuration> <excludeFilterFile>${basedir}/src/site/findbugs/exclude.xml</excludeFilterFile> </configuration> - </plugin> + </plugin> </plugins> </reporting> <repositories> @@ -307,6 +307,6 @@ <site> <id>jackcess-build-site</id> <url>scp://shell.sourceforge.net/home/project-web/jackcess/htdocs</url> - </site> + </site> </distributionManagement> </project> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index a398260..f33182d 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -282,7 +282,7 @@ description="Major API Revision"> <action dev="jahlborn" type="update"> Brand new API! This release is not backwards compatible with 1.x - releases. See Migration Guide at http://jackcess.sourceforge.net/jackcess-2.html + releases. See Migration Guide at https://jackcess.sourceforge.io/jackcess-2.html for more details. </action> </release> @@ -487,7 +487,7 @@ </action> <action dev="jahlborn" type="update" system="SourceForge" issue="3065010"> Add support for plugging in implementations of various page - encoding/decoding algorithms. See the <a href="http://jackcessencrypt.sourceforge.net/">Jackcess Encrypt</a> + encoding/decoding algorithms. See the <a href="https://jackcessencrypt.sourceforge.io/">Jackcess Encrypt</a> project for a CodecProvider implementation which supports a few of the Access encodings. (thanks to Vladimir Berezniker). </action> diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index 18bd093..29df4da 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -291,8 +291,8 @@ project does not directly support decrypting Access databases, but does, however, support plugging in encryption support using a custom <a href="apidocs/com/healthmarketscience/jackcess/CodecProvider.html">CodecProvider</a>. - The separate <a href="http://jackcessencrypt.sourceforge.net/">Jackcess Encrypt - project</a> contains the <a href="http://jackcessencrypt.sourceforge.net/apidocs/com/healthmarketscience/jackcess/CryptCodecProvider.html">CryptCodecProvider</a>, + The separate <a href="https://jackcessencrypt.sourceforge.io/">Jackcess Encrypt + project</a> contains the <a href="https://jackcessencrypt.sourceforge.io/apidocs/com/healthmarketscience/jackcess/CryptCodecProvider.html">CryptCodecProvider</a>, which implements the Jackess CodecProvider interface and supports some forms of Access database encryption. </answer> diff --git a/src/site/site.xml b/src/site/site.xml index 6d7fbc5..ba3a5a0 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -12,13 +12,13 @@ <body> <menu name="Jackcess"> <item name="About" href="index.html"/> - <item name="Downloads" href="http://sourceforge.net/project/showfiles.php?group_id=134943"/> - <item name="SourceForge Project" href="http://sourceforge.net/projects/jackcess/"/> + <item name="Downloads" href="https://sourceforge.net/project/showfiles.php?group_id=134943"/> + <item name="SourceForge Project" href="https://sourceforge.net/projects/jackcess/"/> <item name="Cookbook" href="cookbook.html"/> <item name="Upgrading to Jackcess 2.x" href="jackcess-2.html"/> <item name="FAQ" href="faq.html"/> - <item name="Support" href="http://sourceforge.net/projects/jackcess/support"/> - <item name="Jackcess Encrypt" href="http://jackcessencrypt.sourceforge.net/"/> + <item name="Support" href="https://sourceforge.net/projects/jackcess/support"/> + <item name="Jackcess Encrypt" href="https://jackcessencrypt.sourceforge.io/"/> <item name="GitHub Mirror" href="https://github.com/jahlborn/jackcess"/> </menu> diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml index 7f23a71..4da6248 100644 --- a/src/site/xdoc/index.xml +++ b/src/site/xdoc/index.xml @@ -10,7 +10,7 @@ <section name="Jackcess"> <p> Jackcess is a pure Java library for reading from and writing to MS - Access databases (currently supporting versions 2000-2016). It is part of the <a href="http://openhms.sourceforge.net/">OpenHMS</a> project from <a href="http://www.healthmarketscience.com/">Health Market Science, Inc.</a>. It is not an application. There is no GUI. It's a + Access databases (currently supporting versions 2000-2016). It is part of the <a href="https://openhms.sourceforge.io/">OpenHMS</a> project from <a href="http://www.healthmarketscience.com/">Health Market Science, Inc.</a>. 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 <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License</a> (as of version 2.1.0). @@ -103,7 +103,7 @@ db.close();</source> for reading Access files, written in C. </li> <li> - <a href="http://jackcessencrypt.sourceforge.net/">Jackcess + <a href="https://jackcessencrypt.sourceforge.io/">Jackcess Encrypt</a> - Extension library for Jackcess which implements support for some forms of Microsoft Access and Microsoft Money encryption. diff --git a/src/site/xdoc/jackcess-2.xml b/src/site/xdoc/jackcess-2.xml index 6017e73..351c6f7 100644 --- a/src/site/xdoc/jackcess-2.xml +++ b/src/site/xdoc/jackcess-2.xml @@ -142,7 +142,7 @@ <h4>Working with Jackcess Encrypt</h4> <p> - If you are using the <a href="http://jackcessencrypt.sourceforge.net/">Jackcess Encrypt</a> project, then you will need to + If you are using the <a href="https://jackcessencrypt.sourceforge.io/">Jackcess Encrypt</a> project, then you will need to use a version compatible with the relevant Jackess API. Fortunately, the major versions match, so it's pretty simple: </p> |