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
Release are uploaded to a staging repository of [Maven Central](https://search.maven.org):
6
+
7
+
```bash
8
+
# perform release (use `git reset --hard origin/master` and delete tags to retry)
9
+
mvn release:clean
10
+
mvn release:prepare
11
+
mvn release:perform
12
+
```
13
+
14
+
Then visit [oss.sonatype.org](https://oss.sonatype.org) in order to deploy the release.
15
+
16
+
It takes up to 2 hours until the release appears at [Maven Central](https://search.maven.org/#search%7Cga%7C1%7Cvavr-beanvalidation2). The public repository can be found [here](https://repo.maven.apache.org/maven2/io/vavr/vavr-beanvalidation2).
17
+
18
+
## Best practice: Remove an existing release from Git
19
+
20
+
Sometime something goes wrong during a release. Here are some steps to restore the previous state.
21
+
22
+
Given a **<version>** (e.g. 0.9.2), a _non-published_ release can be removed like this:
0 commit comments