|
3 | 3 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
| 6 | + <groupId>org.neo4j.driver</groupId> |
| 7 | + <artifactId>neo4j-java-driver-parent</artifactId> |
| 8 | + <version>4.2-SNAPSHOT</version> |
| 9 | + |
| 10 | + <packaging>pom</packaging> |
| 11 | + <name>Neo4j Java Driver Project</name> |
| 12 | + <description>A project for building a Java driver for the Neo4j Bolt protocol.</description> |
| 13 | + <url>https://github.com/neo4j/neo4j-java-driver</url> |
| 14 | + |
6 | 15 | <properties> |
7 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
8 | 17 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
9 | 18 | <maven.compiler.source>1.8</maven.compiler.source> |
10 | 19 | <maven.compiler.target>1.8</maven.compiler.target> |
11 | 20 | <rootDir>${project.basedir}</rootDir> |
12 | | - <surefire.and.failsafe.version>2.22.1</surefire.and.failsafe.version> |
13 | | - <junit.version>5.7.2</junit.version> |
14 | 21 | <parallelizable.it.forkCount>1C</parallelizable.it.forkCount> |
15 | 22 | <!-- All tests tagged are to be executed in parallel --> |
16 | 23 | <parallelizable.it.tags>parallelizableIT</parallelizable.it.tags> |
17 | | - </properties> |
18 | | - |
19 | | - <groupId>org.neo4j.driver</groupId> |
20 | | - <artifactId>neo4j-java-driver-parent</artifactId> |
21 | | - <version>4.2-SNAPSHOT</version> |
| 24 | + <surefire.and.failsafe.version>2.22.1</surefire.and.failsafe.version> |
22 | 25 |
|
23 | | - <packaging>pom</packaging> |
24 | | - <name>Neo4j Java Driver Project</name> |
25 | | - <description>A project for building a Java driver for the Neo4j Bolt protocol.</description> |
26 | | - <url>https://github.com/neo4j/neo4j-java-driver</url> |
| 26 | + <!-- Versions --> |
| 27 | + <reactive-streams.version>1.0.3</reactive-streams.version> |
| 28 | + <!-- Please note that when updating this dependency --> |
| 29 | + <!-- (i.e. due to a security vulnerability or bug) that the --> |
| 30 | + <!-- corresponding server dependency also needs updating.--> |
| 31 | + <netty-handler.version>4.1.65.Final</netty-handler.version> |
| 32 | + <!-- Please note that when updating this dependency --> |
| 33 | + <!-- (i.e. due to a security vulnerability or bug) that the --> |
| 34 | + <!-- corresponding server dependency also needs updating.--> |
| 35 | + <reactor-bom.version>Dysprosium-SR20</reactor-bom.version> |
| 36 | + <rxjava.version>2.2.21</rxjava.version> |
| 37 | + <slf4j-api.version>1.7.31</slf4j-api.version> |
| 38 | + <hamcrest-junit.version>2.0.0.0</hamcrest-junit.version> |
| 39 | + <mockito-core.version>2.28.2</mockito-core.version> |
| 40 | + <junit.version>5.7.2</junit.version> |
| 41 | + <jarchivelib.version>1.1.0</jarchivelib.version> |
| 42 | + <bouncycastle-jdk15on.version>1.69</bouncycastle-jdk15on.version> |
| 43 | + <logback-classic.version>1.2.3</logback-classic.version> |
| 44 | + <jackson.version>2.12.3</jackson.version> |
| 45 | + <lombok.version>1.18.20</lombok.version> |
| 46 | + <svm.version>20.3.2</svm.version> |
| 47 | + </properties> |
27 | 48 |
|
28 | 49 | <modules> |
29 | 50 | <module>driver</module> |
|
60 | 81 | <dependency> |
61 | 82 | <groupId>org.reactivestreams</groupId> |
62 | 83 | <artifactId>reactive-streams</artifactId> |
63 | | - <version>1.0.3</version> |
| 84 | + <version>${reactive-streams.version}</version> |
64 | 85 | </dependency> |
65 | 86 | <dependency> |
66 | | - <!-- Please note that when updating this dependency --> |
67 | | - <!-- (i.e. due to a security vulnerability or bug) that the --> |
68 | | - <!-- corresponding server dependency also needs updating.--> |
69 | 87 | <groupId>io.netty</groupId> |
70 | 88 | <artifactId>netty-handler</artifactId> |
71 | | - <version>4.1.65.Final</version> |
| 89 | + <version>${netty-handler.version}</version> |
72 | 90 | </dependency> |
73 | 91 | <dependency> |
74 | | - <!-- Please note that when updating this dependency --> |
75 | | - <!-- (i.e. due to a security vulnerability or bug) that the --> |
76 | | - <!-- corresponding server dependency also needs updating.--> |
77 | 92 | <groupId>io.projectreactor</groupId> |
78 | 93 | <artifactId>reactor-bom</artifactId> |
79 | | - <version>Dysprosium-SR20</version> |
| 94 | + <version>${reactor-bom.version}</version> |
80 | 95 | <type>pom</type> |
81 | 96 | <scope>import</scope> |
82 | 97 | </dependency> |
|
85 | 100 | <dependency> |
86 | 101 | <groupId>io.reactivex.rxjava2</groupId> |
87 | 102 | <artifactId>rxjava</artifactId> |
88 | | - <version>2.2.21</version> |
| 103 | + <version>${rxjava.version}</version> |
89 | 104 | </dependency> |
90 | 105 |
|
91 | 106 | <!-- Optional dependencies --> |
92 | 107 | <dependency> |
93 | 108 | <groupId>org.slf4j</groupId> |
94 | 109 | <artifactId>slf4j-api</artifactId> |
95 | | - <version>1.7.31</version> |
| 110 | + <version>${slf4j-api.version}</version> |
96 | 111 | </dependency> |
97 | 112 |
|
98 | 113 | <!-- Test dependencies --> |
99 | 114 | <dependency> |
100 | 115 | <groupId>org.hamcrest</groupId> |
101 | 116 | <artifactId>hamcrest-junit</artifactId> |
102 | | - <version>2.0.0.0</version> |
| 117 | + <version>${hamcrest-junit.version}</version> |
103 | 118 | <scope>test</scope> |
104 | 119 | </dependency> |
105 | 120 | <dependency> |
106 | 121 | <groupId>org.mockito</groupId> |
107 | 122 | <artifactId>mockito-core</artifactId> |
108 | | - <version>2.28.2</version> |
| 123 | + <version>${mockito-core.version}</version> |
109 | 124 | <scope>test</scope> |
110 | 125 | </dependency> |
111 | 126 | <dependency> |
|
117 | 132 | <dependency> |
118 | 133 | <groupId>org.rauschig</groupId> |
119 | 134 | <artifactId>jarchivelib</artifactId> |
120 | | - <version>1.1.0</version> |
| 135 | + <version>${jarchivelib.version}</version> |
121 | 136 | <scope>test</scope> |
122 | 137 | </dependency> |
123 | 138 | <dependency> |
124 | 139 | <groupId>org.bouncycastle</groupId> |
125 | 140 | <artifactId>bcprov-jdk15on</artifactId> |
126 | | - <version>1.69</version> |
| 141 | + <version>${bouncycastle-jdk15on.version}</version> |
127 | 142 | <scope>test</scope> |
128 | 143 | </dependency> |
129 | 144 | <dependency> |
130 | 145 | <groupId>org.bouncycastle</groupId> |
131 | 146 | <artifactId>bcpkix-jdk15on</artifactId> |
132 | | - <version>1.69</version> |
| 147 | + <version>${bouncycastle-jdk15on.version}</version> |
133 | 148 | <scope>test</scope> |
134 | 149 | </dependency> |
135 | 150 | <dependency> |
136 | 151 | <groupId>ch.qos.logback</groupId> |
137 | 152 | <artifactId>logback-classic</artifactId> |
138 | | - <version>1.2.3</version> |
| 153 | + <version>${logback-classic.version}</version> |
139 | 154 | <scope>test</scope> |
140 | 155 | </dependency> |
141 | 156 |
|
142 | | - <!-- Testkit Dependencies --> |
| 157 | + <!-- Testkit Backend Dependencies --> |
143 | 158 | <dependency> |
144 | 159 | <groupId>com.fasterxml.jackson.core</groupId> |
145 | 160 | <artifactId>jackson-core</artifactId> |
146 | | - <version>2.12.3</version> |
| 161 | + <version>${jackson.version}</version> |
147 | 162 | </dependency> |
148 | 163 | <dependency> |
149 | 164 | <groupId>com.fasterxml.jackson.core</groupId> |
150 | 165 | <artifactId>jackson-databind</artifactId> |
151 | | - <version>2.12.3</version> |
| 166 | + <version>${jackson.version}</version> |
| 167 | + </dependency> |
| 168 | + <dependency> |
| 169 | + <groupId>org.projectlombok</groupId> |
| 170 | + <artifactId>lombok</artifactId> |
| 171 | + <version>${lombok.version}</version> |
| 172 | + <scope>provided</scope> |
152 | 173 | </dependency> |
153 | 174 |
|
154 | 175 | <!-- Graal VM --> |
155 | 176 | <dependency> |
156 | 177 | <groupId>org.graalvm.nativeimage</groupId> |
157 | 178 | <artifactId>svm</artifactId> |
158 | | - <version>20.3.2</version> |
| 179 | + <version>${svm.version}</version> |
159 | 180 | <!-- Provided scope as it is only needed for compiling the SVM substitution classes --> |
160 | 181 | <scope>provided</scope> |
161 | 182 | </dependency> |
|
0 commit comments