Guest User

Untitled

a guest
Dec 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.commonjava.maven.plugins</groupId>
  3. <artifactId>directory-maven-plugin</artifactId>
  4. <version>0.3.1</version>
  5. <executions>
  6. <execution>
  7. <id>license-directory</id>
  8. <phase>initialize</phase>
  9. <goals>
  10. <goal>directory-of</goal>
  11. </goals>
  12. <configuration>
  13. <property>license.directory</property>
  14. <project>
  15. <groupId>com.scheidtbachmann.shared.audit</groupId>
  16. <artifactId>audit</artifactId>
  17. </project>
  18. </configuration>
  19. </execution>
  20. </executions>
  21. </plugin>
  22. <plugin>
  23. <groupId>se.ayoy.maven-plugins</groupId>
  24. <artifactId>ayoy-license-verifier-maven-plugin</artifactId>
  25. <executions>
  26. <execution>
  27. <id>license-check</id>
  28. <phase>initialize</phase>
  29. <goals>
  30. <goal>verify</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. <configuration>
  35. <verbose>true</verbose>
  36. <requireAllValid>true</requireAllValid>
  37. <failOnMissing>false</failOnMissing>
  38. <failOnWarning>true</failOnWarning>
  39. <excludedScopes>
  40. <excludedScope>provided</excludedScope>
  41. <excludedScope>test</excludedScope>
  42. </excludedScopes>
  43. <licenseFile>${license.directory}/config/licenses.xml</licenseFile>
  44. <excludedMissingLicensesFile>${license.directory}/config/allowedMissingLicense.xml</excludedMissingLicensesFile>
  45. </configuration>
  46. </plugin>
Add Comment
Please, Sign In to add comment