Skip to content

Commit

Permalink
fix: add missing dependecy vor maven version 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Bengt Brodersen committed Feb 9, 2020
1 parent 2e8be22 commit 6a80a78
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 32 deletions.
66 changes: 34 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,39 +252,41 @@ fi
# Changelog

## 5.0.0
*

### Breaking Changes
#### Features
* simplify <property> replacement configuration

new config
```xml
<gitVersioning>
<branch>
<pattern>master</pattern>
<versionFormat>${version}</versionFormat>
<property>
<pattern>revision</pattern>
<valueFormat>${branch-SNAPSHOT}</valueFormat>
</property>
</branch>
</gitVersioning>
```
old config
```xml
<gitVersioning>
<branch>
<pattern>master</pattern>
<versionFormat>${version}</versionFormat>
<property>
<pattern>revision</pattern>
<value>
<format>${branch-SNAPSHOT}</format>
</value>
</property>
</branch>
</gitVersioning>
```
#### Fixes
* add missing dependecy vor maven version 3.3
#### Breaking Changes
* simplify <property> replacement configuration

new config
```xml
<gitVersioning>
<branch>
<pattern>master</pattern>
<versionFormat>${version}</versionFormat>
<property>
<pattern>revision</pattern>
<valueFormat>${branch-SNAPSHOT}</valueFormat>
</property>
</branch>
</gitVersioning>
```
old config
```xml
<gitVersioning>
<branch>
<pattern>master</pattern>
<versionFormat>${version}</versionFormat>
<property>
<pattern>revision</pattern>
<value>
<format>${branch-SNAPSHOT}</format>
</value>
</property>
</branch>
</gitVersioning>
```

## 4.10.2
* fix verbose logging when disabling extension by flag
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.2.1</version>
</dependency>

<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
Expand Down

0 comments on commit 6a80a78

Please sign in to comment.