Versions Compared

Key

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

...

Code Block
languagebash
titleModify pom.xml
# in incubator-streampipes-extensions/pom.xml

# Change the parent to the StreamPipes core release version:

<parent>
        <groupId>org.apache.streampipes</groupId>
        <artifactId>streampipes-parent</artifactId>
        <version>0.66.0</version>
    </parent>

# Change the streampipes.version property to the core release version:

<streampipes.version>0.66.0</streampipes.version>

...


The next step is to prepare the release with the following command (make sure to do this in a fresh local copy)

Code Block
languagebash
titleInitiate release


Afterwards, finish the release. The deployment to a Maven repository is skipped, as the binary artifacts are all fat jars that are not intended for distribution via Maven.

Code Block
languagebash
titleFinish release
mvn release:perform -DreleaseProfiles=apache-release


Great!

Now you can go to target/checkout/target and copy the dependencies to the Apache SVN. The Apache SVN directory is "extensions", the steps are equal to the steps described for the core module.

...

incubator-streampipes-installer

...