-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync with last qwazr utils. Fixes #43
- Loading branch information
1 parent
7bbd897
commit 85f00b9
Showing
15 changed files
with
667 additions
and
909 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 |
---|---|---|
|
@@ -7,3 +7,5 @@ release.properties | |
.settings | ||
.project | ||
.classpath | ||
/oss-java-client.iml | ||
/.idea/ |
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 |
---|---|---|
@@ -1,150 +1,146 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.opensearchserver</groupId> | ||
<artifactId>oss-java-client</artifactId> | ||
<name>OpenSearchServer Java Client</name> | ||
<packaging>jar</packaging> | ||
<prerequisites> | ||
<maven>3.2.1</maven> | ||
</prerequisites> | ||
<url>https://github.com/opensearchserver/oss-java-client</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<version>1.0.1-SNAPSHOT</version> | ||
<organization> | ||
<name>OpenSearchServer Inc.</name> | ||
<url>http://www.opensearchserver.com</url> | ||
</organization> | ||
<scm> | ||
<connection>scm:git:[email protected]:opensearchserver/oss-java-client.git</connection> | ||
<developerConnection>scm:git:[email protected]:opensearchserver/oss-java-client.git</developerConnection> | ||
<url>[email protected]:opensearchserver/oss-java-client.git</url> | ||
</scm> | ||
<issueManagement> | ||
<url>https://github.com/opensearchserver/oss-java-client/issues</url> | ||
<system>GIT</system> | ||
</issueManagement> | ||
<ciManagement> | ||
<url>http://www.open-search-server.com/jenkins</url> | ||
<system>Jenkins</system> | ||
</ciManagement> | ||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<skipTests>true</skipTests> | ||
</properties> | ||
<repositories> | ||
<repository> | ||
<id>oss-sonatype</id> | ||
<name>oss-sonatype</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>fluent-hc</artifactId> | ||
<version>4.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.qwazr</groupId> | ||
<artifactId>qwazr-utils</artifactId> | ||
<version>1.0.1-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.cybozu.labs</groupId> | ||
<artifactId>langdetect</artifactId> | ||
<version>1.1-20120112</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<finalName>${project.artifactId}-${project.version}</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.2</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.1</version> | ||
<configuration> | ||
<aggregate>true</aggregate> | ||
<show>protected</show> | ||
<nohelp>true</nohelp> | ||
<links> | ||
<link>http://github.com:opensearchserver/oss-java-client</link> | ||
<link>http://www.opensearchserver.com/</link> | ||
</links> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.18.1</version> | ||
<configuration> | ||
<skipTests>${skipTests}</skipTests> | ||
</configuration> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.surefire</groupId> | ||
<artifactId>surefire-junit47</artifactId> | ||
<version>2.18.1</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-scm-publish-plugin</artifactId> | ||
<version>1.1</version> | ||
<configuration> | ||
<checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> | ||
<checkinComment>Publishing javadoc for | ||
${project.artifactId}:${project.version}</checkinComment> | ||
<content>${project.reporting.outputDirectory}/apidocs</content> | ||
<skipDeletedFiles>true</skipDeletedFiles> | ||
<pubScmUrl>scm:git:[email protected]:opensearchserver/oss-java-client.git</pubScmUrl> | ||
<scmBranch>gh-pages</scmBranch> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.opensearchserver</groupId> | ||
<artifactId>oss-java-client</artifactId> | ||
<name>OpenSearchServer Java Client</name> | ||
<packaging>jar</packaging> | ||
<prerequisites> | ||
<maven>3.2.1</maven> | ||
</prerequisites> | ||
<url>https://github.com/jaeksoft/oss-java-client</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<version>1.0.1-SNAPSHOT</version> | ||
<organization> | ||
<name>OpenSearchServer Inc.</name> | ||
<url>http://www.opensearchserver.com</url> | ||
</organization> | ||
<scm> | ||
<connection>scm:git:[email protected]:jaeksoft/oss-java-client.git</connection> | ||
<developerConnection>scm:git:[email protected]:jaeksoft/oss-java-client.git</developerConnection> | ||
<url>[email protected]:jaeksoft/oss-java-client.git</url> | ||
</scm> | ||
<issueManagement> | ||
<url>https://github.com/jaeksoft/oss-java-client/issues</url> | ||
<system>GIT</system> | ||
</issueManagement> | ||
<ciManagement> | ||
<url>http://www.open-search-server.com/jenkins</url> | ||
<system>Jenkins</system> | ||
</ciManagement> | ||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<skipTests>true</skipTests> | ||
</properties> | ||
<repositories> | ||
<repository> | ||
<id>oss-sonatype</id> | ||
<name>oss-sonatype</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.qwazr</groupId> | ||
<artifactId>qwazr-utils</artifactId> | ||
<version>1.0.1-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.cybozu.labs</groupId> | ||
<artifactId>langdetect</artifactId> | ||
<version>1.1-20120112</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<finalName>${project.artifactId}-${project.version}</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.2</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.1</version> | ||
<configuration> | ||
<aggregate>true</aggregate> | ||
<show>protected</show> | ||
<nohelp>true</nohelp> | ||
<links> | ||
<link>http://github.com:jaeksoft/oss-java-client</link> | ||
<link>http://www.opensearchserver.com/</link> | ||
</links> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.18.1</version> | ||
<configuration> | ||
<skipTests>${skipTests}</skipTests> | ||
</configuration> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.surefire</groupId> | ||
<artifactId>surefire-junit47</artifactId> | ||
<version>2.18.1</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-scm-publish-plugin</artifactId> | ||
<version>1.1</version> | ||
<configuration> | ||
<checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory> | ||
<checkinComment>Publishing javadoc for | ||
${project.artifactId}:${project.version} | ||
</checkinComment> | ||
<content>${project.reporting.outputDirectory}/apidocs</content> | ||
<skipDeletedFiles>true</skipDeletedFiles> | ||
<pubScmUrl>scm:git:[email protected]:jaeksoft/oss-java-client.git</pubScmUrl> | ||
<scmBranch>gh-pages</scmBranch> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.