You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -474,6 +474,30 @@ To execute only one of them, execute `mvn integration-test -Dinvoker.test=test_a
474
474
Also, there are many [example projects](https://github.com/scoverage/scoverage-maven-samples/tree/scoverage-maven-samples-1.4.11/) for older versions of the plugin in a separate repo.
475
475
Go to one of them and run `mvn site`.
476
476
477
+
## Development
478
+
479
+
### Manual deployment
480
+
481
+
Set sonatype credentials in `~/.m2/settings.xml`:
482
+
483
+
```xml
484
+
<settings>
485
+
<servers>
486
+
<server>
487
+
<id>central</id>
488
+
<username>sonatype-username-goes-here</username>
489
+
<password>sonatype-password-goes-here</password>
490
+
</server>
491
+
</servers>
492
+
</settings>
493
+
```
494
+
495
+
#### Snapshot deployment
496
+
To deploy snapshot to sonatype snapshot repo run `mvn clean deploy -P release`.
497
+
498
+
#### Release deployment
499
+
To deploy release to sonatype release repo run `mvn release:clean release:prepare release:perform -P release`.
500
+
477
501
## License
478
502
```
479
503
This software is licensed under the Apache 2 license, quoted below.
0 commit comments