Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
saifeddineghouma
GitHub Repository: saifeddineghouma/neoclipse
Path: blob/master/org.neo4j.neoclipse/pom.xml
115 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
<modelVersion>4.0.0</modelVersion>
5
<parent>
6
<artifactId>neoclipse</artifactId>
7
<groupId>org.neo4j</groupId>
8
<version>2.1.4-SNAPSHOT</version>
9
<relativePath>..</relativePath>
10
</parent>
11
<artifactId>org.neo4j.neoclipse</artifactId>
12
<packaging>eclipse-plugin</packaging>
13
<name>Neoclipse</name>
14
15
<properties>
16
<license-text.header>ApacheLicense-2.0-header.txt</license-text.header>
17
</properties>
18
<build>
19
<plugins>
20
<plugin>
21
<groupId>org.eclipse.tycho</groupId>
22
<artifactId>tycho-maven-plugin</artifactId>
23
</plugin>
24
</plugins>
25
</build>
26
<dependencies>
27
<dependency>
28
<groupId>org.neo4j.neoclipse</groupId>
29
<artifactId>org.neo4j.neoclipse.dependencies</artifactId>
30
</dependency>
31
</dependencies>
32
</project>
33
34