Skip to content

Commit

Permalink
Release version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
carlomorelli committed Jan 12, 2019
1 parent 1ed0c08 commit d0a6194
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Plugin configuration example in a project:
<plugin>
<groupId>com.github.carlomorelli</groupId>
<artifactId>licensescan-maven-plugin</artifactId>
<version>1.1</version>
<version>2.1</version>
<configuration>
<printLicenses>true</printLicenses>
<blacklistedLicenses>
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>com.github.carlomorelli</groupId>
<artifactId>licensescan-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>2.0</version>
<version>2.1</version>
<name>licensescan-maven-plugin</name>
<url>http://maven.apache.org</url>

Expand Down
4 changes: 2 additions & 2 deletions src/test/projects/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>com.github.carlomorelli</groupId>
<artifactId>licensescan-maven-plugin</artifactId>
<version>2.0</version>
<version>2.1</version>
<configuration>
<printLicenses>true</printLicenses>
<blacklistedLicenses>
Expand All @@ -46,7 +46,7 @@
</configuration>
<executions>
<execution>
<phase>compile</phase> <!-- use your preferred goal, for me it makes sense to do the check at compile time -->
<phase>compile</phase>
<goals>
<goal>audit</goal>
</goals>
Expand Down
4 changes: 2 additions & 2 deletions src/test/projects/integration_fail/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<plugin>
<groupId>com.github.carlomorelli</groupId>
<artifactId>licensescan-maven-plugin</artifactId>
<version>2.0</version>
<version>2.1</version>
<configuration>
<printLicenses>true</printLicenses>
<blacklistedLicenses>
Expand All @@ -46,7 +46,7 @@
</configuration>
<executions>
<execution>
<phase>compile</phase> <!-- use your preferred goal, for me it makes sense to do the check at compile time -->
<phase>compile</phase>
<goals>
<goal>audit</goal>
</goals>
Expand Down
4 changes: 2 additions & 2 deletions src/test/projects/integration_pass/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<plugin>
<groupId>com.github.carlomorelli</groupId>
<artifactId>licensescan-maven-plugin</artifactId>
<version>2.0</version>
<version>2.1</version>
<configuration>
<printLicenses>true</printLicenses>
<blacklistedLicenses>
Expand All @@ -46,7 +46,7 @@
</configuration>
<executions>
<execution>
<phase>compile</phase> <!-- use your preferred goal, for me it makes sense to do the check at compile time -->
<phase>compile</phase>
<goals>
<goal>audit</goal>
</goals>
Expand Down

0 comments on commit d0a6194

Please sign in to comment.