-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
58 lines (52 loc) · 1.79 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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>net.iot-solutions.graphdb</groupId>
<artifactId>jcypher_samples</artifactId>
<version>2.5.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Samples for JCypher </description>
<url>https://github.com/Wolfgang-Schuetzelhofer/jcypher_samples/wiki</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>Wolfgang Schuetzelhofer</name>
<email>wschuetzelhofer@gmail.com</email>
<organization>IoT-Solutions e.U.</organization>
<organizationUrl>https://github.com/Wolfgang-Schuetzelhofer</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Wolfgang-Schuetzelhofer/jcypher_samples.git</connection>
<developerConnection>scm:git:git@github.com:Wolfgang-Schuetzelhofer/jcypher_samples.git</developerConnection>
<url>git@github.com:Wolfgang-Schuetzelhofer/jcypher_samples.git</url>
</scm>
<build>
<resources>
<!-- include .java files in .jar -->
<!-- resource> <directory>src/main/java</directory> </resource -->
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.iot-solutions.graphdb</groupId>
<artifactId>jcypher</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
</project>