|
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.1-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.1-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 | + <svm.version>20.3.2</svm.version> |
| 45 | + </properties> |
27 | 46 |
|
28 | 47 | <modules> |
29 | 48 | <module>driver</module> |
|
59 | 78 | <dependency> |
60 | 79 | <groupId>org.reactivestreams</groupId> |
61 | 80 | <artifactId>reactive-streams</artifactId> |
62 | | - <version>1.0.3</version> |
| 81 | + <version>${reactive-streams.version}</version> |
63 | 82 | </dependency> |
64 | 83 | <dependency> |
65 | | - <!-- Please note that when updating this dependency --> |
66 | | - <!-- (i.e. due to a security vulnerability or bug) that the --> |
67 | | - <!-- corresponding server dependency also needs updating.--> |
68 | 84 | <groupId>io.netty</groupId> |
69 | 85 | <artifactId>netty-handler</artifactId> |
70 | | - <version>4.1.65.Final</version> |
| 86 | + <version>${netty-handler.version}</version> |
71 | 87 | </dependency> |
72 | 88 | <dependency> |
73 | | - <!-- Please note that when updating this dependency --> |
74 | | - <!-- (i.e. due to a security vulnerability or bug) that the --> |
75 | | - <!-- corresponding server dependency also needs updating.--> |
76 | 89 | <groupId>io.projectreactor</groupId> |
77 | 90 | <artifactId>reactor-bom</artifactId> |
78 | | - <version>Dysprosium-SR20</version> |
| 91 | + <version>${reactor-bom.version}</version> |
79 | 92 | <type>pom</type> |
80 | 93 | <scope>import</scope> |
81 | 94 | </dependency> |
|
84 | 97 | <dependency> |
85 | 98 | <groupId>io.reactivex.rxjava2</groupId> |
86 | 99 | <artifactId>rxjava</artifactId> |
87 | | - <version>2.2.21</version> |
| 100 | + <version>${rxjava.version}</version> |
88 | 101 | </dependency> |
89 | 102 |
|
90 | 103 | <!-- Optional dependencies --> |
91 | 104 | <dependency> |
92 | 105 | <groupId>org.slf4j</groupId> |
93 | 106 | <artifactId>slf4j-api</artifactId> |
94 | | - <version>1.7.31</version> |
| 107 | + <version>${slf4j-api.version}</version> |
95 | 108 | </dependency> |
96 | 109 |
|
97 | 110 | <!-- Test dependencies --> |
98 | 111 | <dependency> |
99 | 112 | <groupId>org.hamcrest</groupId> |
100 | 113 | <artifactId>hamcrest-junit</artifactId> |
101 | | - <version>2.0.0.0</version> |
| 114 | + <version>${hamcrest-junit.version}</version> |
102 | 115 | <scope>test</scope> |
103 | 116 | </dependency> |
104 | 117 | <dependency> |
105 | 118 | <groupId>org.mockito</groupId> |
106 | 119 | <artifactId>mockito-core</artifactId> |
107 | | - <version>2.28.2</version> |
| 120 | + <version>${mockito-core.version}</version> |
108 | 121 | <scope>test</scope> |
109 | 122 | </dependency> |
110 | 123 | <dependency> |
|
116 | 129 | <dependency> |
117 | 130 | <groupId>org.rauschig</groupId> |
118 | 131 | <artifactId>jarchivelib</artifactId> |
119 | | - <version>1.1.0</version> |
| 132 | + <version>${jarchivelib.version}</version> |
120 | 133 | <scope>test</scope> |
121 | 134 | </dependency> |
122 | 135 | <dependency> |
123 | 136 | <groupId>org.bouncycastle</groupId> |
124 | 137 | <artifactId>bcprov-jdk15on</artifactId> |
125 | | - <version>1.69</version> |
| 138 | + <version>${bouncycastle-jdk15on.version}</version> |
126 | 139 | <scope>test</scope> |
127 | 140 | </dependency> |
128 | 141 | <dependency> |
129 | 142 | <groupId>org.bouncycastle</groupId> |
130 | 143 | <artifactId>bcpkix-jdk15on</artifactId> |
131 | | - <version>1.69</version> |
| 144 | + <version>${bouncycastle-jdk15on.version}</version> |
132 | 145 | <scope>test</scope> |
133 | 146 | </dependency> |
134 | 147 | <dependency> |
135 | 148 | <groupId>ch.qos.logback</groupId> |
136 | 149 | <artifactId>logback-classic</artifactId> |
137 | | - <version>1.2.3</version> |
| 150 | + <version>${logback-classic.version}</version> |
138 | 151 | <scope>test</scope> |
139 | 152 | </dependency> |
| 153 | + |
| 154 | + <!-- Graal VM --> |
140 | 155 | <dependency> |
141 | 156 | <groupId>org.graalvm.nativeimage</groupId> |
142 | 157 | <artifactId>svm</artifactId> |
143 | | - <version>20.3.2</version> |
| 158 | + <version>${svm.version}</version> |
144 | 159 | <!-- Provided scope as it is only needed for compiling the SVM substitution classes --> |
145 | 160 | <scope>provided</scope> |
146 | 161 | </dependency> |
|
0 commit comments