2023-02-22 08:28:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2023-04-04 21:44:09 -04:00
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2023-02-22 08:28:11 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-exclusions</artifactId>
|
|
|
|
<name>core-java-exclusions</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.dependency-exclusion</groupId>
|
|
|
|
<artifactId>dependency-exclusion</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-05-11 05:54:56 -04:00
|
|
|
|
2023-02-22 08:28:11 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2023-04-04 21:44:09 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${surefire-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<runOrder>alphabetical</runOrder>
|
|
|
|
<threadCount>1</threadCount>
|
|
|
|
<properties>
|
|
|
|
<property>
|
|
|
|
<name>junit</name>
|
|
|
|
<value>false</value>
|
|
|
|
</property>
|
|
|
|
</properties>
|
|
|
|
</configuration>
|
2023-05-11 08:47:51 -04:00
|
|
|
<!-- Activate this for understanding the article only -->
|
|
|
|
<!-- <dependencies>
|
2023-04-04 21:44:09 -04:00
|
|
|
<dependency>
|
2023-05-11 08:47:51 -04:00
|
|
|
Deactivate JUnit 4.7 engine by overriding it with an empty dummy
|
2023-04-04 21:44:09 -04:00
|
|
|
<groupId>org.apache.maven.surefire</groupId>
|
|
|
|
<artifactId>surefire-junit47</artifactId>
|
|
|
|
<version>dummy</version>
|
|
|
|
</dependency>
|
2023-05-11 08:47:51 -04:00
|
|
|
</dependencies> -->
|
2023-04-04 21:44:09 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-02-22 08:28:11 -05:00
|
|
|
</project>
|