-
Notifications
You must be signed in to change notification settings - Fork 22
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
short description of the cause for this release e.g. mps update
- 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)
- list of pull requests that provide bugfixes contained in this release with link
- this is the title of an example pr (link to pr)
To use this release use the version: currentVersion
available on nexus
<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>
repositories {
maven { url 'https://artifacts.itemis.cloud/repository/maven-mps/' }
}
configurations {
opensource
}
dependencies {
opensource "org.iets3:opensource:currentVersion"
}