Skip to content

Commit 2ecd81d

Browse files
committed
revert: remove parent pom
This reverts commit 3ea836f.
1 parent 10f99bb commit 2ecd81d

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

pom.xml

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.neo4j.importer</groupId>
6+
<artifactId>import-spec-parent</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<packaging>pom</packaging>
9+
<name>import-spec-parent</name>
10+
<description>Uniform Import Specification Library for Neo4j</description>
11+
<url>https://github.com/neo4j/import-spec</url>
12+
<inceptionYear>2024</inceptionYear>
13+
<organization>
14+
<name>Neo4j, Neo4j Sweden AB</name>
15+
<url>https://neo4j.com</url>
16+
</organization>
17+
<licenses>
18+
<license>
19+
<name>Apache License, Version 2.0</name>
20+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
21+
<distribution>manual</distribution>
22+
</license>
23+
</licenses>
24+
<developers>
25+
<developer>
26+
<id>team-connectors</id>
27+
<name>Connectors Team</name>
28+
<organization>Neo4j</organization>
29+
<organizationUrl>https://neo4j.com</organizationUrl>
30+
</developer>
31+
</developers>
32+
<scm>
33+
<connection>scm:git:git://github.com/neo4j/import-spec.git</connection>
34+
<developerConnection>scm:git:[email protected]:neo4j/import-spec.git</developerConnection>
35+
<url>https://github.com/neo4j/import-spec</url>
36+
</scm>
37+
<properties>
38+
<beam.version>2.67.0</beam.version>
39+
<jreleaser-maven-plugin.version>1.18.0</jreleaser-maven-plugin.version>
40+
<license.id>neo4j_apache_v2</license.id>
41+
<maven.compiler.release>11</maven.compiler.release>
42+
<maven.compiler.testRelease>21</maven.compiler.testRelease>
43+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44+
</properties>
45+
<dependencyManagement>
46+
<dependencies>
47+
<dependency>
48+
<groupId>com.fasterxml.jackson</groupId>
49+
<artifactId>jackson-bom</artifactId>
50+
<version>2.20.0</version>
51+
<type>pom</type>
52+
<scope>import</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.apache.beam</groupId>
56+
<artifactId>beam-sdks-java-bom</artifactId>
57+
<version>${beam.version}</version>
58+
<type>pom</type>
59+
<scope>import</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.junit</groupId>
63+
<artifactId>junit-bom</artifactId>
64+
<version>5.13.4</version>
65+
<type>pom</type>
66+
<scope>import</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.testcontainers</groupId>
70+
<artifactId>testcontainers-bom</artifactId>
71+
<version>1.21.3</version>
72+
<type>pom</type>
73+
<scope>import</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.assertj</groupId>
77+
<artifactId>assertj-core</artifactId>
78+
<version>3.27.5</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.neo4j.driver</groupId>
82+
<artifactId>neo4j-java-driver</artifactId>
83+
<version>5.28.9</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>org.slf4j</groupId>
87+
<artifactId>slf4j-nop</artifactId>
88+
<version>2.0.17</version>
89+
</dependency>
90+
</dependencies>
91+
</dependencyManagement>
92+
</project>

0 commit comments

Comments
 (0)