|
6 | 6 |
|
7 | 7 | <groupId>com.neo4jh3</groupId> |
8 | 8 | <artifactId>neo4jh3</artifactId> |
9 | | - <version>5.13.0</version> |
| 9 | + <version>5.14.0</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | | - <neo4j.version>5.13.0</neo4j.version> |
| 12 | + <neo4j.version>5.14.0</neo4j.version> |
13 | 13 | <csv.version>1.2</csv.version> |
14 | 14 | <lang3.version>3.13.0</lang3.version> |
15 | 15 | <uber.version>4.1.1</uber.version> |
|
20 | 20 | <maven-shade-plugin.version>3.4.1</maven-shade-plugin.version> |
21 | 21 | <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> |
22 | 22 | <assertj.version>3.22.0</assertj.version> |
23 | | - <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> |
| 23 | + <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version> |
| 24 | + <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> |
24 | 25 | </properties> |
25 | 26 |
|
26 | 27 | <dependencies> |
|
36 | 37 | <version>${neo4j.version}</version> |
37 | 38 | <scope>provided</scope> |
38 | 39 | </dependency> |
39 | | - |
| 40 | +<!-- |
40 | 41 | <dependency> |
41 | 42 | <groupId>org.apache.commons</groupId> |
42 | 43 | <artifactId>commons-lang3</artifactId> |
43 | 44 | <version>${lang3.version}</version> |
44 | 45 | </dependency> |
45 | | - |
| 46 | +--> |
46 | 47 | <dependency> |
47 | 48 | <groupId>org.apache.commons</groupId> |
48 | 49 | <artifactId>commons-math3</artifactId> |
|
122 | 123 | <snapshots><enabled>false</enabled></snapshots> |
123 | 124 | <releases><enabled>true</enabled></releases> |
124 | 125 | </repository> |
125 | | - <!-- |
126 | | - <repository> |
127 | | - <id>maven-repository</id> |
128 | | - <url>file:////Users/davidfauth/.m2/repository/com/uber/h3/4.1.2-SNAPSHOT</url> |
129 | | - </repository> |
130 | | ---> |
131 | 126 | </repositories> |
132 | 127 |
|
133 | 128 | <build> |
|
160 | 155 | <artifactId>maven-surefire-plugin</artifactId> |
161 | 156 | <version>${maven-surefire-plugin.version}</version> |
162 | 157 | </plugin> |
| 158 | + <plugin> |
| 159 | + <groupId>org.apache.maven.plugins</groupId> |
| 160 | + <artifactId>maven-jar-plugin</artifactId> |
| 161 | + <version>${maven-jar-plugin.version}</version> |
| 162 | + <configuration> |
| 163 | + <archive> |
| 164 | + <manifestEntries> |
| 165 | + <Multi-Release>true</Multi-Release> |
| 166 | + </manifestEntries> |
| 167 | + </archive> |
| 168 | + </configuration> |
| 169 | + </plugin> |
163 | 170 | <plugin> |
164 | 171 | <!-- This generates a jar-file with our procedure code, |
165 | 172 | plus any dependencies marked as `compile` scope. |
|
0 commit comments