Skip to content

Commit

Permalink
Merge pull request #50 from remisbaima/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.1.0
  • Loading branch information
remisbaima committed May 1, 2022
2 parents 49d1389 + 934561a commit 6a45295
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.1.0](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/compare/v0.0.5...v0.1.0) (2022-05-01)


### Features

* allowed licenses can also contain URL and name (besides ID) ([f5e4326](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/commit/f5e4326553feb99ff53e3cedba9e4763b45f7aed))
* log more details of invalid licenses ([c49bcbf](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/commit/c49bcbf92184a97cea6025ef5bead4b1e062576e))


### Documentation

* add "-DskipTests" to doc so user can build faster ([6608be7](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/commit/6608be7cf0d80882009b89d42e7975697245cbdf))
* doc usage of license ID, URL or name ([5415002](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/commit/54150023d322854d2f054930a971fbf5bd0e7bd9))

### [0.0.5](https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/compare/v0.0.4...v0.0.5) (2022-04-27)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Maven plugin to check if dependencies in CycloneDX BOM files use only allowed li
<plugin>
<groupId>io.github.remisbaima</groupId>
<artifactId>license-checker-cyclonedx-maven-plugin</artifactId>
<version>0.0.6-SNAPSHOT</version> <!-- x-release-please-version -->
<version>0.1.0</version> <!-- x-release-please-version -->
<executions>
<execution>
<phase>package</phase>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.remisbaima</groupId>
<artifactId>license-checker-cyclonedx-maven-plugin</artifactId>
<version>0.0.6-SNAPSHOT</version>
<version>0.1.0</version>
<packaging>maven-plugin</packaging>

<name>License Checker for CycloneDX Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/basic-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.example</groupId>
<artifactId>test-project</artifactId>
<version>0.0.6-SNAPSHOT</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/complex-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.example</groupId>
<artifactId>test-project</artifactId>
<version>0.0.6-SNAPSHOT</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/empty-config-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.example</groupId>
<artifactId>test-project</artifactId>
<version>0.0.6-SNAPSHOT</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/error-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.example</groupId>
<artifactId>test-project</artifactId>
<version>0.0.5</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<licenses>
Expand Down Expand Up @@ -64,7 +64,7 @@
<allowedLicenses>Apache-2.0,https://opensource.org/licenses/MIT</allowedLicenses>
<allowedLicensesJson/>
<allowedLicensesJsonPath/>
<ignoredDependencies></ignoredDependencies>
<ignoredDependencies/>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 6a45295

Please sign in to comment.