Skip to content

Releases Template

Alexander Pann edited this page Mar 21, 2024 · 2 revisions

Template for release notes: please add a custom description, the feature and bugfix pull requests and exchange current Version with the actual version of the release

Title

short description of the cause for this release e.g. mps update

Release Notes

What's New

  • list of pull requests that provide new features contained in this release with link
  • this is the title of an example pr (link to pr)

Bugfixes

  • list of pull requests that provide bugfixes contained in this release with link
  • this is the title of an example pr (link to pr)

Artifacts on Maven

To use this release use the version: currentVersion available on nexus

Maven

<project ...>
    <repositories>
        <repository>
          <id>itemis.mps</id>
          <url>https://artifacts.itemis.cloud/repository/maven-mps/</url>
        </repository>
     </repositories>

     <dependencies ...>
        <dependency>
          <groupId>org.iets3</groupId>
          <artifactId>opensource</artifactId>
          <version>currentVersion</version>
          <type>zip</type>
        </dependency>  
</project>

Gradle

repositories {
    maven { url 'https://artifacts.itemis.cloud/repository/maven-mps/' }
}

configurations {
    opensource
}

dependencies {
    opensource "org.iets3:opensource:currentVersion"
}
Clone this wiki locally