|
8 | 8 | <artifactId>neo4j-db-copy</artifactId>
|
9 | 9 | <version>1.0-SNAPSHOT</version>
|
10 | 10 |
|
| 11 | + <description>Neo4j data copy tool, through the bolt protocol</description> |
| 12 | + <url>https://github.com/nmervaillie/neo4j-db-copy</url> |
| 13 | + <inceptionYear>2023</inceptionYear> |
| 14 | + |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>The Apache Software License, Version 2.0</name> |
| 18 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + <distribution>repo</distribution> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>nmervaillie</id> |
| 26 | + <name>Nicolas Mervaillie</name> |
| 27 | + <roles> |
| 28 | + <role>Graphista</role> |
| 29 | + </roles> |
| 30 | + <timezone>+1</timezone> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
11 | 34 | <properties>
|
12 | 35 | <java.version>17</java.version>
|
13 | 36 | <maven.compiler.source>17</maven.compiler.source>
|
|
23 | 46 | <testcontainers-bom.version>1.20.1</testcontainers-bom.version>
|
24 | 47 | <surefire.version>3.0.0-M7</surefire.version>
|
25 | 48 | <failsafe.version>3.0.0-M7</failsafe.version>
|
| 49 | + <jreleaser.version>1.13.1</jreleaser.version> |
26 | 50 | </properties>
|
27 | 51 |
|
28 | 52 | <dependencies>
|
|
179 | 203 | </execution>
|
180 | 204 | </executions>
|
181 | 205 | </plugin>
|
| 206 | + <plugin> |
| 207 | + <groupId>org.jreleaser</groupId> |
| 208 | + <artifactId>jreleaser-maven-plugin</artifactId> |
| 209 | + <version>${jreleaser.version}</version> |
| 210 | + <inherited>false</inherited> |
| 211 | + <configuration> |
| 212 | + <jreleaser> |
| 213 | + <release> |
| 214 | + <github> |
| 215 | + <owner>nmervaillie</owner> |
| 216 | + <overwrite>true</overwrite> |
| 217 | + <tagName>{{projectVersion}}</tagName> |
| 218 | + <releaseName>Release {{projectVersion}}</releaseName> |
| 219 | + </github> |
| 220 | + </release> |
| 221 | + <distributions> |
| 222 | + <app> |
| 223 | + <artifacts> |
| 224 | + <artifact> |
| 225 | + <path> |
| 226 | + ${project.build.directory}/${project.artifactId} |
| 227 | + </path> |
| 228 | + </artifact> |
| 229 | + <artifact> |
| 230 | + <path> |
| 231 | + ${project.build.directory}/${project.artifactId}-${project.version}.jar |
| 232 | + </path> |
| 233 | + </artifact> |
| 234 | + </artifacts> |
| 235 | + </app> |
| 236 | + </distributions> |
| 237 | + </jreleaser> |
| 238 | + </configuration> |
| 239 | + <executions> |
| 240 | + <execution> |
| 241 | + <goals> |
| 242 | + <goal>full-release</goal> |
| 243 | + </goals> |
| 244 | + </execution> |
| 245 | + </executions> |
| 246 | + </plugin> |
182 | 247 | <plugin>
|
183 | 248 | <groupId>org.apache.maven.plugins</groupId>
|
184 | 249 | <artifactId>maven-surefire-plugin</artifactId>
|
|
0 commit comments