Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@terrestris/maven-semantic-release

Package Overview
Dependencies
Maintainers
17
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@terrestris/maven-semantic-release

a very simple maven plugin for semantic release

latest
Source
npmnpm
Version
3.1.0
Version published
Maintainers
17
Created
Source

maven-semantic-release

This is a simple plugin that allows users to increase versions in pom.xml and publish via maven, either with the deploy or the jib:build target.

It has an option to increase the version after release to the next snapshot version

It only assures that the mvn command exists.

Was inspired by https://github.com/conveyal/maven-semantic-release. It differs in some ways. It …

  • … allows different maven targets.
  • … has an option to allow multimodule projects
  • … can increase a snapshot version after a successful release
  • … has fewer checks to verify th integrity of the setup (does not check pom.xml)

Getting started

  • npm i -D semantic-release @terrestris/maven-semantic-release
  • Add @terrestris/maven-semantic-release as a plugin (https://semantic-release.gitbook.io/semantic-release/usage/plugins)
  • Configure settingsPath or ensure that a maven settings file exists at the expected location
  • Make sure that the @semantic-release/git plugin runs after this plugin and includes the pom.xml if you want to use it.

Options

Typedefs

MavenTarget : 'deploy' | 'package jib:build' | 'deploy jib:build'
PluginConfig : Object

MavenTarget : 'deploy' | 'package jib:build' | 'deploy jib:build'

Kind: global typedef

PluginConfig : Object

Kind: global typedef
Properties

NameTypeDefaultDescription
[settingsPath]stringPath to a maven settings file.
processAllModulesbooleanfalseThis sets the processAllModules option for the versions:set target. It is useful for multimodule projects.
mavenTargetMavenTarget'deploy'This determines which mvn targets are used to publish.
cleanbooleantrueWhether the clean target will be applied before publishing.
updateSnapshotVersionbooleanfalseWhether a new snapshot version should be set after releasing.
snapshotCommitMessagestring"'chore:"setting next snapshot version [skip ci]' The commit message used if a new snapshot version should be created.
debugbooleanfalseSets the -X option for all maven calls.
mvnwbooleanfalseUse the mvnw script instead of mvn

FAQs

Package last updated on 27 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts