Build Versions Maven Plugin

Maven plugin for Semantic Versioning

Лицензия

Лицензия

Категории

Категории

Maven Компиляция и сборка
Группа

Группа

com.nimworks
Идентификатор

Идентификатор

buildversions-maven-plugin
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

Build Versions Maven Plugin
Maven plugin for Semantic Versioning
Ссылка на сайт

Ссылка на сайт

http://maven.apache.org
Организация-разработчик

Организация-разработчик

Neemworks Nigeria
Система контроля версий

Система контроля версий

https://github.com/Neemworks/buildversions-maven-plugin

Скачать buildversions-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>com.nimworks</groupId>
    <artifactId>buildversions-maven-plugin</artifactId>
    <version>1.0.1</version>
</plugin>

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-plugin-api jar 2.0
org.codehaus.plexus : plexus-utils jar 3.0.8
com.nimworks : nw.commons jar 2.0.0
org.apache.maven : maven-project jar 2.2.1

provided (1)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.8.2

Модули Проекта

Данный проект не имеет модулей.

Introduction

This plugin aims to automate the generation of semantic version numbers for your maven project.

Usage

  • Add the pluginto your pom.xml
<plugin>
        <groupId>com.nimworks</groupId>
        <artifactId>buildversion-maven-plugin</artifactId>
        <version>1.0.0</version>
        <executions>
          <execution>
            <id>buildversions</id>
            <phase>validate</phase>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
  • Do something with the generate version number For example
<groupId>com.nimworks.it</groupId>
  <artifactId>simple-it</artifactId>
  <version>${buildVersion}-SNAPSHOT</version>

  <description>A simple IT</description>

Builds are currently separated into 3 types

  • Major
  • Minor
  • Patch

The generated version takes the form {Major}.{Minor}.{Pathc}

Example

  • Build PATCH mvn clean package if this is the first run, it will generate app-1.0.0-SNAPSHOT.jar. Subsequent executions will only increment the patch version number (1.0.1, 1.0.2, etc). The example above is the same as running mvn clean package -Dbuild.type=PATCH

  • Build Minor Version mvn clean package -Dbuild.type=MINOR if this is the first run, it will generate app-1.1.0-SNAPSHOT.jar. Subsequent executions will only increment the patch version number (1.2.0, 1.3.0, etc). Notice that this mode will reset the patch versions to 0

com.nimworks

neemworks

Версии библиотеки

Версия
1.0.1
1.0.0