Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Your Git workspace has no uncommitted changes.
  • There are no snapshot dependencies in the project to be released
  • Ensure that your main project pom inherits from OPS4J master pom, at least version 4.0.0:

    Code Block
    xml
    xml
    <parent>
      <groupId>org.ops4j</groupId>
      <artifactId>master</artifactId>
      <version>4.12.0</version>
    </parent>
    
  • Your main pom project defines an <scm/> section as below, replacing PROJECT by your actual project name.

    No Format
    <scm>
      <connection>scm:git:git@github.com:ops4j/PROJECT.git</connection>
      <developerConnection>scm:git:git@github.com:ops4j/PROJECT.git</developerConnection>
      <url>http://github.com/ops4j/PROJECT/tree/master</url>
    </scm>
    
  • Make sure your shell can push to GitHub without password prompts, see Appendix D.

...