summaryrefslogtreecommitdiff
path: root/doc/note/maven-pom/howto-ban-unwanted-sh__.txt
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2024-05-12 12:55:07 +0200
committerAndreas Fankhauser hiddenalpha.ch2024-05-12 12:55:07 +0200
commit5cc4c2b95df9bf6998d92496ca0e0064314fba39 (patch)
treeac7d979f81a86703508ff23e2694a6b4d6bfe4d5 /doc/note/maven-pom/howto-ban-unwanted-sh__.txt
parent1dc9f8c9db499a326ceee6cb3b48878ee17ff9fa (diff)
parent95d934e8e3918832c03f05b2fc32cb5d5272cb83 (diff)
downloadUnspecifiedGarbage-5cc4c2b95df9bf6998d92496ca0e0064314fba39.zip
UnspecifiedGarbage-5cc4c2b95df9bf6998d92496ca0e0064314fba39.tar.gz
Merge remote-tracking branch 'ha-public/master' into wip-LatitudeReSetup-20230620wip-LatitudeReSetup-20230620
Diffstat (limited to 'doc/note/maven-pom/howto-ban-unwanted-sh__.txt')
-rw-r--r--doc/note/maven-pom/howto-ban-unwanted-sh__.txt41
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/note/maven-pom/howto-ban-unwanted-sh__.txt b/doc/note/maven-pom/howto-ban-unwanted-sh__.txt
new file mode 100644
index 0000000..1edad9b
--- /dev/null
+++ b/doc/note/maven-pom/howto-ban-unwanted-sh__.txt
@@ -0,0 +1,41 @@
+
+
+ <project>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-slf4j-impl</artifactId>
+ <version>[0.0.0,)</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <!--<version>1.4.1</version>-->
+ <version>3.4.1</version>
+ <executions>
+ <execution>
+ <goals><goal>enforce</goal></goals>
+ <configuration>
+ <rules>
+ <bannedDependencies>
+ <excludes>
+ <exclude>org.apache.logging.log4j:log4j-slf4j-impl</exclude>
+ </excludes>
+ </bannedDependencies>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ <project>
+
+
+## Sources
+
+- [How to globally exclude mvn dependency](https://stackoverflow.com/a/39979760/4415884)
+- [How to yell about bannded dependencies](https://stackoverflow.com/a/46104531/4415884)
+