|
19 | 19 | <version>5.26.1-SNAPSHOT</version>
|
20 | 20 | <name>Neo4j - Spatial Components</name>
|
21 | 21 | <description>Spatial utilities and components for Neo4j</description>
|
22 |
| - <url>https://components.neo4j.org/${project.artifactId}/${project.version}</url> |
| 22 | + <url>https://neo4j.com/labs/neo4j-spatial/5/</url> |
23 | 23 | <inceptionYear>2010</inceptionYear>
|
24 |
| - <packaging>jar</packaging> |
| 24 | + <packaging>pom</packaging> |
| 25 | + |
| 26 | + <modules> |
| 27 | + <module>server-plugin</module> |
| 28 | + </modules> |
| 29 | + |
25 | 30 | <scm>
|
26 | 31 | <url>https://github.com/neo4j/spatial/</url>
|
27 | 32 | <connection>scm:git:git://github.com/neo4j/spatial.git</connection>
|
|
30 | 35 | </scm>
|
31 | 36 | <build>
|
32 | 37 | <plugins>
|
33 |
| - <plugin> |
34 |
| - <artifactId>maven-dependency-plugin</artifactId> |
35 |
| - <executions> |
36 |
| - <execution> |
37 |
| - <id>copy-dependencies</id> |
38 |
| - <phase>process-resources</phase> |
39 |
| - <goals> |
40 |
| - <goal>copy-dependencies</goal> |
41 |
| - </goals> |
42 |
| - <configuration> |
43 |
| - <excludeScope>provided</excludeScope> |
44 |
| - </configuration> |
45 |
| - </execution> |
46 |
| - <execution> |
47 |
| - <id>get-test-data</id> |
48 |
| - <goals> |
49 |
| - <goal>unpack-dependencies</goal> |
50 |
| - </goals> |
51 |
| - <configuration> |
52 |
| - <outputDirectory>${project.build.directory}</outputDirectory> |
53 |
| - <includeGroupIds>org.neo4j.spatial</includeGroupIds> |
54 |
| - </configuration> |
55 |
| - </execution> |
56 |
| - </executions> |
57 |
| - </plugin> |
58 |
| - <plugin> |
59 |
| - <artifactId>maven-assembly-plugin</artifactId> |
60 |
| - <version>3.7.1</version> |
61 |
| - <configuration> |
62 |
| - <descriptors> |
63 |
| - <descriptor>src/main/assembly/server-plugin.xml</descriptor> |
64 |
| - </descriptors> |
65 |
| - </configuration> |
66 |
| - <executions> |
67 |
| - <execution> |
68 |
| - <id>make-assembly</id> |
69 |
| - <!-- this is used for inheritance merges --> |
70 |
| - <phase>package</phase> |
71 |
| - <!-- bind to the packaging phase --> |
72 |
| - <goals> |
73 |
| - <goal>single</goal> |
74 |
| - </goals> |
75 |
| - </execution> |
76 |
| - </executions> |
77 |
| - </plugin> |
78 | 38 | <plugin>
|
79 | 39 | <artifactId>maven-surefire-plugin</artifactId>
|
80 | 40 | <version>${maven-surefire-plugin.version}</version>
|
|
144 | 104 | </comments>
|
145 | 105 | </license>
|
146 | 106 | </licenses>
|
147 |
| - <dependencies> |
148 |
| - <dependency> |
149 |
| - <groupId>org.neo4j</groupId> |
150 |
| - <artifactId>neo4j</artifactId> |
151 |
| - <version>${neo4j.version}</version> |
152 |
| - <scope>provided</scope> |
153 |
| - </dependency> |
154 |
| - <dependency> |
155 |
| - <groupId>com.google.code.gson</groupId> |
156 |
| - <artifactId>gson</artifactId> |
157 |
| - <version>2.13.1</version> |
158 |
| - <scope>test</scope> |
159 |
| - </dependency> |
160 |
| - <dependency> |
161 |
| - <groupId>org.neo4j</groupId> |
162 |
| - <artifactId>neo4j-graphviz</artifactId> |
163 |
| - <version>3.1.1</version> |
164 |
| - <scope>test</scope> |
165 |
| - <exclusions> |
166 |
| - <exclusion> |
167 |
| - <groupId>org.neo4j</groupId> |
168 |
| - <artifactId>neo4j-kernel</artifactId> |
169 |
| - </exclusion> |
170 |
| - </exclusions> |
171 |
| - </dependency> |
172 |
| - |
173 |
| - <!-- The JUnit-Hamcrest-Mockito combo --> |
174 |
| - <dependency> |
175 |
| - <groupId>org.junit.jupiter</groupId> |
176 |
| - <artifactId>junit-jupiter-engine</artifactId> |
177 |
| - <version>5.11.3</version> |
178 |
| - <scope>test</scope> |
179 |
| - </dependency> |
180 |
| - <dependency> |
181 |
| - <groupId>org.neo4j.spatial</groupId> |
182 |
| - <artifactId>osm-test-data</artifactId> |
183 |
| - <version>${spatial.test.osm.version}</version> |
184 |
| - <scope>test</scope> |
185 |
| - </dependency> |
186 |
| - <dependency> |
187 |
| - <groupId>org.neo4j.spatial</groupId> |
188 |
| - <artifactId>shp-test-data</artifactId> |
189 |
| - <version>${spatial.test.shp.version}</version> |
190 |
| - <scope>test</scope> |
191 |
| - </dependency> |
192 |
| - <dependency> |
193 |
| - <groupId>org.geotools</groupId> |
194 |
| - <artifactId>gt-main</artifactId> |
195 |
| - <version>${geotools.version}</version> |
196 |
| - </dependency> |
197 |
| - <dependency> |
198 |
| - <groupId>org.geotools</groupId> |
199 |
| - <artifactId>gt-shapefile</artifactId> |
200 |
| - <version>${geotools.version}</version> |
201 |
| - </dependency> |
202 |
| - <dependency> |
203 |
| - <groupId>org.geotools</groupId> |
204 |
| - <artifactId>gt-process</artifactId> |
205 |
| - <version>${geotools.version}</version> |
206 |
| - </dependency> |
207 |
| - <dependency> |
208 |
| - <groupId>org.geotools</groupId> |
209 |
| - <artifactId>gt-geojson</artifactId> |
210 |
| - <version>${geotools.version}</version> |
211 |
| - </dependency> |
212 |
| - <dependency> |
213 |
| - <groupId>org.geotools.xsd</groupId> |
214 |
| - <artifactId>gt-xsd-kml</artifactId> |
215 |
| - <version>${geotools.version}</version> |
216 |
| - <scope>provided</scope> |
217 |
| - <exclusions> |
218 |
| - <exclusion> |
219 |
| - <groupId>picocontainer</groupId> |
220 |
| - <artifactId>picocontainer</artifactId> |
221 |
| - </exclusion> |
222 |
| - </exclusions> |
223 |
| - </dependency> |
224 |
| - <dependency> |
225 |
| - <groupId>org.geotools</groupId> |
226 |
| - <artifactId>gt-render</artifactId> |
227 |
| - <version>${geotools.version}</version> |
228 |
| - <exclusions> |
229 |
| - <exclusion> |
230 |
| - <groupId>it.geosolutions.imageio-ext</groupId> |
231 |
| - <artifactId>imageio-ext-tiff</artifactId> |
232 |
| - </exclusion> |
233 |
| - </exclusions> |
234 |
| - </dependency> |
235 |
| - <dependency> |
236 |
| - <groupId>org.neo4j.community</groupId> |
237 |
| - <artifactId>it-test-support</artifactId> |
238 |
| - <version>${neo4j.version}</version> |
239 |
| - <scope>test</scope> |
240 |
| - </dependency> |
241 |
| - <dependency> |
242 |
| - <groupId>org.neo4j</groupId> |
243 |
| - <artifactId>neo4j-kernel-test-utils</artifactId> |
244 |
| - <version>${neo4j.version}</version> |
245 |
| - <scope>test</scope> |
246 |
| - </dependency> |
247 |
| - </dependencies> |
248 | 107 |
|
249 | 108 | <dependencyManagement>
|
250 | 109 | <dependencies>
|
|
276 | 135 | <dependency>
|
277 | 136 | <groupId>com.google.errorprone</groupId>
|
278 | 137 | <artifactId>error_prone_annotations</artifactId>
|
279 |
| - <version>2.28.0</version> |
| 138 | + <version>2.27.0</version> |
280 | 139 | </dependency>
|
281 | 140 | </dependencies>
|
282 | 141 | </dependencyManagement>
|
| 142 | + |
283 | 143 | <repositories>
|
284 | 144 | <repository>
|
285 | 145 | <id>osgeo</id>
|
|
0 commit comments