Skip to content

Commit 52e55c7

Browse files
authored
Merge pull request #5 from RedisLabs/gkorland-build
Arrange pom.xml
2 parents 55accb2 + 3fcb6b4 commit 52e55c7

File tree

1 file changed

+57
-25
lines changed

1 file changed

+57
-25
lines changed

pom.xml

Lines changed: 57 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,60 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
7-
<groupId>com.redislabs</groupId>
8-
<artifactId>JRedisGraph</artifactId>
9-
<version>1.0.0</version>
10-
<dependencies>
11-
<dependency>
12-
<groupId>junit</groupId>
13-
<artifactId>junit</artifactId>
14-
<version>4.12</version>
15-
<scope>test</scope>
16-
</dependency>
17-
<dependency>
18-
<groupId>org.apache.commons</groupId>
19-
<artifactId>commons-pool2</artifactId>
20-
<version>2.0</version>
21-
</dependency>
22-
<dependency>
23-
<groupId>com.redislabs</groupId>
24-
<artifactId>jredisearch-jedis</artifactId>
25-
<version>3.0.0-20180508</version>
26-
</dependency>
27-
</dependencies>
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.redislabs</groupId>
7+
<artifactId>JRedisGraph</artifactId>
8+
<version>1.0.0</version>
9+
<name>JRedisGraph</name>
10+
<description>Official client for Redis-Graph</description>
11+
<url>http://redisearch.io</url>
12+
<scm>
13+
<url>https://github.com/RedisLabs/JRedisGraph</url>
14+
<connection>scm:git:git://github.com/RedisLabs/JRedisGraph.git</connection>
15+
<developerConnection>scm:git:[email protected]:RedisLabs/JRedisGraph.git</developerConnection>
16+
</scm>
17+
<licenses>
18+
<license>
19+
<name>BSD 3 Clause</name>
20+
<url>https://opensource.org/licenses/BSD-3-Clause</url>
21+
<distribution>repo</distribution>
22+
</license>
23+
</licenses>
24+
<dependencies>
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<version>4.12</version>
29+
<scope>test</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.apache.commons</groupId>
33+
<artifactId>commons-pool2</artifactId>
34+
<version>2.0</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.redislabs</groupId>
38+
<artifactId>jredisearch-jedis</artifactId>
39+
<version>3.0.0-20180508</version>
40+
</dependency>
41+
</dependencies>
42+
<properties>
43+
<maven.compiler.source>8</maven.compiler.source>
44+
<maven.compiler.target>8</maven.compiler.target>
45+
<maven.test.source>8</maven.test.source>
46+
<maven.test.target>8</maven.test.target>
47+
</properties>
48+
<organization>
49+
<name>RedisLabs</name>
50+
<url>www.redislabs.com</url>
51+
</organization>
52+
<ciManagement>
53+
<system>CircleCI</system>
54+
<url>https://circleci.com/gh/RedisLabs/JRedisGraph</url>
55+
</ciManagement>
56+
<issueManagement>
57+
<url>https://github.com/RedisLabs/JRediSearch/issues</url>
58+
<system>Github</system>
59+
</issueManagement>
2860
</project>

0 commit comments

Comments
 (0)