Skip to content

Commit

Permalink
Sync license-maven-plugin version (apache#8367)
Browse files Browse the repository at this point in the history
### Motivation

license-maven-plugin version is 3.0 in the root pom.xml file. sync the version otherwise in my local environment it failed with

```
Cannot resolve plugin com.mycila:license-maven-plugin:3.0.rc1
```

### Modifications

sync version of license-maven-plugin in `buildtools/pom.xml` and `pulsar-sql/presto-distribution/pom.xml`
  • Loading branch information
tisonkun authored Oct 26, 2020
1 parent 26f2b6d commit a1f6c37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildtools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0.rc1</version>
<version>3.0</version>
<configuration>
<header>../src/license-header.txt</header>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion pulsar-sql/presto-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0.rc1</version>
<version>3.0</version>
<configuration>
<header>../../src/license-header.txt</header>
</configuration>
Expand Down

0 comments on commit a1f6c37

Please sign in to comment.