-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(cherry-pick 4a4048) part of #147--update pom.xml in preparation to d…
…istribute on maven central Conflicts: pom.xml
- Loading branch information
1 parent
ae8b13e
commit 66d681e
Showing
1 changed file
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,39 @@ | |
<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>com.marklogic</groupId> | ||
<artifactId>client-api-java</artifactId> | ||
<artifactId>java-client-api</artifactId> | ||
<packaging>jar</packaging> | ||
<version>2.0-SNAPSHOT</version> | ||
<name>client-api-java</name> | ||
<url>http://developer.marklogic.com</url> | ||
<name>MarkLogic Java Client API</name> | ||
<description>The official MarkLogic Java client API.</description> | ||
<url>https://github.com/marklogic/java-client-api</url> | ||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<name>MarkLogic</name> | ||
<email>[email protected]</email> | ||
<organization>MarkLogic</organization> | ||
<organizationUrl>https://www.marklogic.com</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>MarkLogic Github Contributors</name> | ||
<email>[email protected]</email> | ||
<organization>Github Contributors</organization> | ||
<organizationUrl>https://github.com/marklogic/java-client-api/graphs/contributors</organizationUrl> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:[email protected]:marklogic/java-client-api.git</connection> | ||
<developerConnection>scm:git:[email protected]:marklogic/java-client-api.git</developerConnection> | ||
<url>[email protected]:marklogic/java-client-api.git</url> | ||
</scm> | ||
<properties> | ||
<javadoc-title>${project.name} 2.0 ${maven.build.timestamp}</javadoc-title> | ||
<javadoc-title>${project.name} ${project.version} ${maven.build.timestamp}</javadoc-title> | ||
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|