Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1.56 KB

File metadata and controls

43 lines (38 loc) · 1.56 KB

Release-Checklist:

- Be sure to be in the right folder/IntelliJ window
- pull in changes from isnow-repo 
- adapt version information in pom.xml
- edit RELEASE.md
- create release tag in IntelliJ
- mvn release:prepare
- mvn release:perform
- git push --tags
- git push origin master

Release-documentation:

.m2/settings.xml has to look like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

        <servers>
            <server>
                <id>ossrh</id>
                <username>Xcelite</username>
                <password> ### sonatype-jira-password ### </password>
            </server>
        </servers>

        <profiles>
            <profile>
            <id>ossrh</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                    <gpg.passphrase> ### pgp-password ###</gpg.passphrase>
            </properties>
            </profile>
        </profiles>
    </settings>