forked from neo4j-attic/python-embedded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
347 lines (316 loc) · 10.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2002-2011 "Neo Technology," Network Engine for Objects
in Lund AB [http://neotechnology.com] This file is part of Neo4j. Neo4j is
free software: you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version. This
program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses />. -->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.neo4j.build</groupId>
<artifactId>parent-central</artifactId>
<version>34</version>
<relativePath />
</parent>
<groupId>org.neo4j.drivers</groupId>
<artifactId>neo4j-python-embedded</artifactId>
<version>1.8-SNAPSHOT</version>
<name>Embedded Neo4j Python bindings</name>
<packaging>jar</packaging>
<description>
Python bindings for the embedded Neo4j graph database.
</description>
<scm>
<connection>scm:git:git://github.com/neo4j/python-embedded.git</connection>
<developerConnection>scm:git:[email protected]:neo4j/python-embedded.git</developerConnection>
<url>https://github.com/neo4j/python-embedded</url>
</scm>
<properties>
<license-text.header>GPL-3-header.txt</license-text.header>
<python>python</python>
<!-- Paths used while testing. These are overridden for windows platforms,
see the profiles section. -->
<pythonpath>../../main/python:$PYTHONPATH</pythonpath>
<jythonpath>../../main/python:$JYTHONPATH</jythonpath>
<build.number>0</build.number>
<neo4j.version>1.8-SNAPSHOT</neo4j.version>
<gremlin.version>1.2</gremlin.version>
<docs.url>http://docs.neo4j.org/chunked/${project.version}/python-embedded.html</docs.url>
</properties>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
<comments>The software ("Software") developed and owned by Network Engine for
Objects in Lund AB (referred to in this notice as "Neo Technology") is
licensed under the GNU GENERAL PUBLIC LICENSE Version 3 to all third
parties and that license is included below.
However, if you have executed an End User Software License and Services
Agreement or an OEM Software License and Support Services Agreement, or
another commercial license agreement with Neo Technology or one of its
affiliates (each, a "Commercial Agreement"), the terms of the license in
such Commercial Agreement will supersede the GNU GENERAL PUBLIC LICENSE
Version 3 and you may use the Software solely pursuant to the terms of
the relevant Commercial Agreement.
</comments>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>${neo4j.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher</artifactId>
<version>${neo4j.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>neo4j-dev</id>
<name>Neo4j Developer Repository</name>
<url>http://m2.neo4j.org/content/groups/everything/</url>
</repository>
</repositories>
<build>
<sourceDirectory>src/main/python</sourceDirectory>
<testSourceDirectory>src/test/python</testSourceDirectory>
<plugins>
<!-- Generate appropriate python version from current project version.
See: http://www.python.org/dev/peps/pep-0386/ -->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>pythonificate-version-number</id>
<phase>generate-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
def version = project.version
// 1.5-SNAPSHOT -> 1.5.dev1
version = version.replace("-SNAPSHOT", ".dev" +
project.properties['build.number'])
// 1.5.RC1 -> 1.5.c1
version = version.replace("RC","c")
// 1.5.M01 -> 1.5.b1
version = version.replace("M0","b")
version = version.replace("M","b")
project.properties['pythonic_version'] = version
</source>
</configuration>
</execution>
</executions>
</plugin>
<!-- Produce source jars, for our documentation -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
<includes>
<include>**/*.py</include>
</includes>
</configuration>
<executions>
<execution>
<id>attach-python-sources</id>
<goals>
<goal>jar-no-fork</goal>
<goal>test-jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Assemble python distribution -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>python-distribution</id>
<phase>package</phase>
<configuration>
<attach>false</attach>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/python-distribution.xml</descriptor>
</descriptors>
</configuration>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>cpython-test</id>
<properties>
<python>python</python>
</properties>
</profile>
<profile>
<id>jython-test</id>
<properties>
<python>jython</python>
</properties>
</profile>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<pythonpath>../../main/python</pythonpath>
<jythonpath>../../main/python</jythonpath>
</properties>
</profile>
<profile>
<id>run-tests</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<build>
<plugins>
<!-- Test execution -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<configuration>
<executable>${python}</executable>
<workingDirectory>src/test/python</workingDirectory>
<arguments>
<!-- Uncomment this to enable remote JVM debugging under jython -->
<!--argument>-J-Xdebug</argument> <argument>-J-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=1044</argument -->
<argument>unit_tests.py</argument>
<argument>--classpath</argument>
<classpath />
<argument>--junit</argument>
<argument>${basedir}/target/surefire-reports</argument>
</arguments>
<environmentVariables>
<PYTHONPATH>${pythonpath}</PYTHONPATH>
<JYTHONPATH>${jythonpath}</JYTHONPATH>
</environmentVariables>
</configuration>
<id>python-test</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>performance-test</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>python-performance-test</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>pdb</executable>
<!--executable>${python}</executable-->
<workingDirectory>src/perftest/python</workingDirectory>
<arguments>
<argument>performance_tests.py</argument>
<argument>--classpath</argument>
<classpath />
</arguments>
<environmentVariables>
<PYTHONPATH>${pythonpath}</PYTHONPATH>
<JYTHONPATH>${jythonpath}</JYTHONPATH>
</environmentVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Deploy the finished python library to pypi -->
<!-- NOTICE: This only works on windows machines, due to dependencies on
win32api for building windows installers. -->
<profile>
<id>pypi</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>pypi-deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<unzip src="${basedir}/target/${project.build.finalName}-python-dist.zip" dest="${basedir}/target/" overwrite="true" />
<!-- Windows 32bit installer -->
<exec executable="python" failonerror="true" dir="${basedir}/target/neo4j-embedded">
<arg value="setup.py" />
<arg value="build" />
<arg value="--plat-name=win-amd64" />
<arg value="bdist_wininst" />
<arg value="upload" />
</exec>
<!-- Windows 64bit installer -->
<exec executable="python" failonerror="true" dir="${basedir}/target/neo4j-embedded">
<arg value="setup.py" />
<arg value="build" />
<arg value="--plat-name=win32" />
<arg value="bdist_wininst" />
<arg value="upload" />
</exec>
<!-- Source distribution -->
<exec executable="python" failonerror="true" dir="${basedir}/target/neo4j-embedded">
<arg value="setup.py" />
<arg value="sdist" />
<arg value="--formats=gztar,zip" />
<arg value="upload" />
</exec>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<site>
<id>neo4j-site</id>
<url>scpexe://components.neo4j.org/home/neo/components/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
</project>