Skip to content

Commit ef56f66

Browse files
committed
Remove superflous whitespaces and tabs
Complements 25ec46a.
1 parent 25ec46a commit ef56f66

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

MAINTAINING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ Merge pull-request #PULLREQUEST-ID from cboehme/fix-xy
2727
We shall make releases quarterly. Approximate timetable is every Januar, April, July, October.
2828
We may publish `master-SNAPSHOT` builds more frequently.
2929

30-
Releasing involves to first make and test the release candidate before actually making the release. Note that we provide a *GitHub release for manual download* as well as a *release on Maven central* to be consumed as a library.
30+
Releasing involves to first make and test the release candidate before actually making the release. Note that we provide a *GitHub release for manual download* as well as a *release on Maven central* to be consumed as a library.
3131

3232
It's good habit to use semantic versioning in release numbers `A`.`B`.`C`, i.e. increase `A` when it's a major release breaking backward compatibility; increase `B` when it got new features; increase `C` indicating bug-fixes. A suffix like `rcN` (where `N` is a number) indicates a release candidate (`rc`).
3333

3434
To upload to Sonatype you need (as well for the release candidate as for the release) a `gradle.properties` in the root directory that looks like this:
3535

3636
```
37-
signing.gnupg.executable=gpg
38-
signing.gnupg.useLegacyGpg=true
39-
signing.gnupg.homeDir=$e.g."~/.gnupg"
40-
signing.gnupg.keyName=$yourKeyName
37+
signing.gnupg.executable=gpg
38+
signing.gnupg.useLegacyGpg=true
39+
signing.gnupg.homeDir=$e.g."~/.gnupg"
40+
signing.gnupg.keyName=$yourKeyName
4141
signing.password=$keysPassphrase
4242
# depending on gradle plugin versions etc. you may need to use:
4343
# signing.keyId=$yourKeyName
@@ -114,7 +114,7 @@ Note that `Packages` is not the same as [`Releases`](https://github.com/metafact
114114
### Consume the SNAPSHOT
115115
116116
1. See e.g. [Example for 5.5.1-rc1-SNAPSHOT](https://oss.sonatype.org/index.html#nexus-search;gav~org.metafacture~~5.5.1*~~) how to configure the dependency.
117-
1. Configure your build system to use Sonatype's Snapshot Repository to be able to load the dependencies of the release candidate (or master-SNAPSHOT).
117+
1. Configure your build system to use Sonatype's Snapshot Repository to be able to load the dependencies of the release candidate (or master-SNAPSHOT).
118118
For Maven update your `pom.xml` (after `</dependencies>`):
119119
```xml
120120
<repositories>
@@ -156,7 +156,7 @@ a) It's going from your local Git repository to Sonatype to Maven Central. Each
156156
157157
1. Make sure you have a signed tag locally:
158158
```
159-
git show metafacture-core-A.B.C
159+
git show metafacture-core-A.B.C
160160
```
161161
If it doesn't exist yet, create it:
162162
```
@@ -183,13 +183,13 @@ a) It's going from your local Git repository to Sonatype to Maven Central. Each
183183
```
184184
git status
185185
```
186-
1. Let the release be built and uploaded (the SCM tag will be detected and the release be built):
186+
1. Let the release be built and uploaded (the SCM tag will be detected and the release be built):
187187
```
188188
./gradlew clean; ./gradlew publishToMavenLocal; ./gradlew publishToSonatype
189189
```
190190
1. Finally, go to [oss.sonatype.org](https://oss.sonatype.org), log in, check the [Staging Repositories](https://oss.sonatype.org/#stagingRepositories) and when it's finished, click on `Close`. If everything is good publish with clicking on `Release` - attention, because once published it can't be removed. The artifacts are uploaded to Maven Central (which may take some time. Have a look e.g. [metafacture-biblio](https://repo1.maven.org/maven2/org/metafacture/metafacture-biblio/) ). You can check that it's actually in the publishing pipeline by clicking on `Views/Repositories->Releases`, then type in the `Path lookup` field `org/metafacture/` and click on version.
191191
192192
## Release Metafacture-Fix
193193
194-
As long as we have two repos we should immediately also release metafacture-fix:
194+
As long as we have two repos we should immediately also release metafacture-fix:
195195
Go update [Metafacture-Fix](https://github.com/metafacture/metafacture-fix/) and follow https://github.com/metafacture/metafacture-fix/wiki/Maintainer-Guidelines.

0 commit comments

Comments
 (0)