Compare commits
30 Commits
Author | SHA1 | Date | |
---|---|---|---|
80068ef209 | |||
034b319172 | |||
65009df10b | |||
0edac4fc37 | |||
f837e5d1c0 | |||
08498d4224 | |||
1c7997d85c | |||
9874ed9543 | |||
eeb7a84698 | |||
4c1c4d412d | |||
fc5e0c6bd1 | |||
d41d73fa1c | |||
a9aa47d412 | |||
cfb13f3170 | |||
75f8175a1c | |||
58eb0ec013 | |||
dec181aa71 | |||
b6c7323203 | |||
9644bbe154 | |||
118b40f3f9 | |||
db3061a3a6 | |||
f991975923 | |||
e4f14a81da | |||
f749926f92 | |||
8c3ce9f069 | |||
cf2fdf42fa | |||
3d7d8bb769 | |||
01768754f0 | |||
e241137209 | |||
ff2a8b89e5 |
@ -129,7 +129,7 @@ Order does not matter. All include specifications are processed, followed by al
|
|||||||
|
|
||||||
## Import
|
## Import
|
||||||
|
|
||||||
The `import` file, URL, and artifact are to reference XML files that conform to the same `configuration` element as described here. In fact, the root elmenet of that XML should be `configuration`. It will only support the `includes` and `excludes` elements. so you cannot do recursive imports.
|
The `import` URL and artifact are to reference XML files that conform to the same `configuration` element as described here. In fact, the root elmenet of that XML should be `configuration`. It will only support the `includes` and `excludes` elements. so you cannot do recursive imports.
|
||||||
|
|
||||||
You can create a Maven `pom` packaging type project that deploys a configuration XML to your Maven repository. Then use an `import` to allow you to change banned dependencies without making changes to each individual project. Just like with the `version` notation in the `includes` and `excludes` elements, your `import` `artifact` element supports a version range. This way the latest banned dependencies can be side-loaded into all projects. This means previously functioning builds may eventually start failing. That is by design in this scenario.
|
You can create a Maven `pom` packaging type project that deploys a configuration XML to your Maven repository. Then use an `import` to allow you to change banned dependencies without making changes to each individual project. Just like with the `version` notation in the `includes` and `excludes` elements, your `import` `artifact` element supports a version range. This way the latest banned dependencies can be side-loaded into all projects. This means previously functioning builds may eventually start failing. That is by design in this scenario.
|
||||||
|
|
||||||
@ -139,7 +139,7 @@ The `excludes` element is a way to provide project-by-project exceptions to impo
|
|||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
The recommended use of this plugin is for its use across whole organizations. First, you will want a simple Maven project that is referenced by all other Maven projects. That simple project will declare the banned artifacts and potentially purge existing ones. See the `examples/ban-config` project for a full example.
|
The recommended us of this plugin is for its use across whole organizations. First, you will want a simple Maven project that is referenced by all other Maven projects. That simple project will declare the banned artifacts and potentially purge existing ones. See the `examples/ban-config` project for a full example.
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<configuration>
|
<configuration>
|
||||||
@ -159,7 +159,7 @@ Once you have that in place, you will want to add the following to every single
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.inteligr8</groupId>
|
<groupId>com.inteligr8</groupId>
|
||||||
<artifactId>ban-maven-plugin</artifactId>
|
<artifactId>ban-maven-plugin</artifactId>
|
||||||
<version>...</version>
|
<version>1.3.6</version>
|
||||||
<extensions>true</extensions>
|
<extensions>true</extensions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<import>
|
<import>
|
||||||
|
@ -15,20 +15,11 @@
|
|||||||
<name>Banned Artifact Configuration</name>
|
<name>Banned Artifact Configuration</name>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>.</directory>
|
|
||||||
<includes>
|
|
||||||
<include>*-config.xml</include>
|
|
||||||
</includes>
|
|
||||||
<targetPath>${project.build.directory}</targetPath>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.inteligr8</groupId>
|
<groupId>com.inteligr8</groupId>
|
||||||
<artifactId>ban-maven-plugin</artifactId>
|
<artifactId>ban-maven-plugin</artifactId>
|
||||||
<version>1.4.0</version>
|
<version>1.3.6</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>purge-maven-repo</id>
|
<id>purge-maven-repo</id>
|
||||||
@ -42,43 +33,6 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>filter</id>
|
|
||||||
<goals><goal>resources</goal></goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-install-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
<file>${project.build.directory}/ban-config.xml</file>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>install-xml</id>
|
|
||||||
<phase>install</phase>
|
|
||||||
<goals><goal>install-file</goal></goals>
|
|
||||||
<configuration>
|
|
||||||
<groupId>${project.groupId}</groupId>
|
|
||||||
<artifactId>${project.artifactId}</artifactId>
|
|
||||||
<version>${project.version}</version>
|
|
||||||
<packaging>xml</packaging>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<file>ban-config.xml</file>
|
|
||||||
<pomFile>pom.xml</pomFile>
|
|
||||||
<packaging>xml</packaging>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.inteligr8</groupId>
|
<groupId>com.inteligr8</groupId>
|
||||||
<artifactId>ban-maven-plugin</artifactId>
|
<artifactId>ban-maven-plugin</artifactId>
|
||||||
<version>1.4.0</version>
|
<version>1.3.6</version>
|
||||||
<extensions>true</extensions>
|
<extensions>true</extensions>
|
||||||
<configuration>
|
<configuration>
|
||||||
<import>
|
<import>
|
||||||
|
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<groupId>com.inteligr8</groupId>
|
<groupId>com.inteligr8</groupId>
|
||||||
<artifactId>ban-maven-plugin</artifactId>
|
<artifactId>ban-maven-plugin</artifactId>
|
||||||
<version>1.4-SNAPSHOT</version>
|
<version>1.4.0</version>
|
||||||
<packaging>maven-plugin</packaging>
|
<packaging>maven-plugin</packaging>
|
||||||
|
|
||||||
<name>Ban Dependencies Maven Plugin</name>
|
<name>Ban Dependencies Maven Plugin</name>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user