File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 21
21
<maven .build.timestamp.format>'v'yyyyMMdd-HHmm</maven .build.timestamp.format>
22
22
<moduleName >org.neo4j.driver</moduleName >
23
23
<rootDir >${project.basedir}/..</rootDir >
24
+ <maven .deploy.skip>false</maven .deploy.skip>
24
25
</properties >
25
26
26
27
<dependencies >
Original file line number Diff line number Diff line change 83
83
</execution >
84
84
</executions >
85
85
</plugin >
86
- <plugin >
87
- <groupId >org.apache.maven.plugins</groupId >
88
- <artifactId >maven-deploy-plugin</artifactId >
89
- <executions >
90
- <execution >
91
- <id >default-deploy</id >
92
- <phase >none</phase >
93
- </execution >
94
- </executions >
95
- </plugin >
96
86
</plugins >
97
87
</build >
98
-
99
88
</project >
Original file line number Diff line number Diff line change 22
22
<!-- All tests tagged are to be executed in parallel -->
23
23
<parallelizable .it.tags>parallelizableIT</parallelizable .it.tags>
24
24
<surefire .and.failsafe.version>2.22.1</surefire .and.failsafe.version>
25
+ <!-- Skip deployment by default for everything in this project. -->
26
+ <maven .deploy.skip>true</maven .deploy.skip>
25
27
26
28
<!-- Versions -->
27
29
<reactive-streams .version>1.0.3</reactive-streams .version>
424
426
</execution >
425
427
</executions >
426
428
</plugin >
429
+ <!-- Explicit deployment override for this artifact only. -->
430
+ <plugin >
431
+ <groupId >org.apache.maven.plugins</groupId >
432
+ <artifactId >maven-deploy-plugin</artifactId >
433
+ <inherited >false</inherited >
434
+ <configuration >
435
+ <skip >false</skip >
436
+ </configuration >
437
+ </plugin >
427
438
</plugins >
428
439
</build >
429
440
</project >
You can’t perform that action at this time.
0 commit comments