Skip to content

Commit

Permalink
Merge pull request #10 from eXist-db/deployment-cleanup
Browse files Browse the repository at this point in the history
deployment cleanup
  • Loading branch information
lcahlander authored Feb 28, 2022
2 parents adfb296 + ce4ae76 commit 35e8398
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

<groupId>org.exist-db</groupId>
<artifactId>commons-text-functions</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>

<name>Apache Commons Text Functions</name>
<description>This is a library function module for eXist-db that wraps the specifically finding the similarities and distances between strings</description>
<url>https://exist-db.org/commons-text/lib</url>
<url>http://exist-db.org/xquery/commons-text</url>

<organization>
<name>eXist-db</name>
Expand All @@ -33,14 +33,14 @@
</licenses>

<scm>
<url>https://github.com/lcahlander/exist-commons-text.git</url>
<connection>scm:git:https://github.com/lcahlander/exist-commons-text.git</connection>
<developerConnection>scm:git:https://github.com/lcahlander/exist-commons-text.git</developerConnection>
<url>https://github.com/eXist-db/exist-commons-text.git</url>
<connection>scm:git:https://github.com/eXist-db/exist-commons-text.git</connection>
<developerConnection>scm:git:https://github.com/eXist-db/exist-commons-text.git</developerConnection>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/lcahlander/exist-commons-text/issues</url>
<url>https://github.com/eXist-db/exist-commons-text/issues</url>
</issueManagement>

<properties>
Expand All @@ -52,9 +52,9 @@
<commons.text.version>1.9</commons.text.version>

<!-- used in the EXPath Package Descriptor -->
<package-name>https://exist-db.org/commons-text/lib</package-name>
<package-name>http://exist-db.org/xquery/commons-text</package-name>

<example.module.namespace>https://exist-db.org/xquery/commons-text</example.module.namespace>
<example.module.namespace>http://exist-db.org/xquery/commons-text</example.module.namespace>
<example.module.java.classname>CommonsTextModule</example.module.java.classname>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class CommonsTextModule extends AbstractInternalModule {

public static final String NAMESPACE_URI = "https://exist-db.org/xquery/commons-text";
public static final String NAMESPACE_URI = "http://exist-db.org/xquery/commons-text";
public static final String PREFIX = "commons-text";
public static final String RELEASED_IN_VERSION = "eXist-6.0.0";

Expand Down
6 changes: 3 additions & 3 deletions xar-assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<package xmlns="http://expath.org/ns/pkg" name="${package-name}" abbrev="${package-abbrev}" version="${project.version}"
spec="1.0">
<title>${package-title}</title>
<author id="my-organisation">My Organisation</author>
<website>${project.url}</website>
<license>GNU Lesser General Public License, version 2.1</license>
<author id="eXist-db">eXist-db</author>
<description>${project.description}</description>
<license>Apache License, version 2.0</license>
<copyright>true</copyright>

<!-- should be either "application" or "library" -->
Expand Down

0 comments on commit 35e8398

Please sign in to comment.