Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
saifeddineghouma
GitHub Repository: saifeddineghouma/neoclipse
Path: blob/master/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
<url>http://wiki.neo4j.org/content/Neoclipse</url>
5
<parent>
6
<groupId>org.neo4j.build</groupId>
7
<artifactId>parent-central</artifactId>
8
<version>40</version>
9
<relativePath/>
10
</parent>
11
<modelVersion>4.0.0</modelVersion>
12
<groupId>org.neo4j</groupId>
13
<artifactId>neoclipse</artifactId>
14
<name>Neoclipse Project</name>
15
<version>2.1.4-SNAPSHOT</version>
16
<packaging>pom</packaging>
17
<modules>
18
<module>releng</module>
19
<module>org.neo4j.neoclipse</module>
20
<module>org.neo4j.neoclipse.doc</module>
21
<module>repository</module>
22
</modules>
23
<properties>
24
<tycho.version>0.21.0</tycho.version>
25
</properties>
26
<build>
27
<pluginManagement>
28
<plugins>
29
<plugin>
30
<groupId>org.eclipse.tycho</groupId>
31
<artifactId>tycho-maven-plugin</artifactId>
32
<version>${tycho.version}</version>
33
<extensions>true</extensions>
34
</plugin>
35
<plugin>
36
<groupId>org.eclipse.tycho</groupId>
37
<artifactId>target-platform-configuration</artifactId>
38
<version>${tycho.version}</version>
39
<inherited>true</inherited>
40
<configuration>
41
<target>
42
<artifact>
43
<groupId>org.neo4j.neoclipse.targets</groupId>
44
<artifactId>default</artifactId>
45
<version>${project.version}</version>
46
</artifact>
47
</target>
48
<resolver>p2</resolver>
49
<environments>
50
<environment>
51
<os>linux</os>
52
<ws>gtk</ws>
53
<arch>x86_64</arch>
54
</environment>
55
<environment>
56
<os>linux</os>
57
<ws>gtk</ws>
58
<arch>x86</arch>
59
</environment>
60
<environment>
61
<os>macosx</os>
62
<ws>cocoa</ws>
63
<arch>x86</arch>
64
</environment>
65
<environment>
66
<os>macosx</os>
67
<ws>cocoa</ws>
68
<arch>x86_64</arch>
69
</environment>
70
<environment>
71
<os>win32</os>
72
<ws>win32</ws>
73
<arch>x86</arch>
74
</environment>
75
<environment>
76
<os>win32</os>
77
<ws>win32</ws>
78
<arch>x86_64</arch>
79
</environment>
80
</environments>
81
</configuration>
82
</plugin>
83
<plugin>
84
<groupId>org.eclipse.tycho</groupId>
85
<artifactId>tycho-versions-plugin</artifactId>
86
<version>${tycho.version}</version>
87
</plugin>
88
</plugins>
89
</pluginManagement>
90
<plugins>
91
<plugin>
92
<groupId>org.eclipse.tycho</groupId>
93
<artifactId>tycho-maven-plugin</artifactId>
94
</plugin>
95
<plugin>
96
<groupId>org.eclipse.tycho</groupId>
97
<artifactId>tycho-packaging-plugin</artifactId>
98
<version>${tycho.version}</version>
99
<configuration>
100
<executionEnvironment>JavaSE-1.7</executionEnvironment>
101
</configuration>
102
</plugin>
103
<plugin>
104
<groupId>org.eclipse.tycho</groupId>
105
<artifactId>target-platform-configuration</artifactId>
106
<configuration>
107
<pomDependencies>consider</pomDependencies>
108
</configuration>
109
</plugin>
110
<plugin>
111
<groupId>org.apache.maven.plugins</groupId>
112
<artifactId>maven-compiler-plugin</artifactId>
113
<configuration>
114
<source>1.7</source>
115
<target>1.7</target>
116
</configuration>
117
</plugin>
118
</plugins>
119
</build>
120
<dependencyManagement>
121
<dependencies>
122
<dependency>
123
<groupId>org.neo4j.neoclipse</groupId>
124
<artifactId>org.neo4j.neoclipse.dependencies</artifactId>
125
<version>2.1.4</version>
126
</dependency>
127
</dependencies>
128
</dependencyManagement>
129
</project>
130
131