java-tutorials/maven-modules/maven-custom-plugin/usage-example/pom.xml

52 lines
1.6 KiB
XML
Raw Normal View History

2019-12-05 09:56:52 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2020-03-21 21:54:38 -04:00
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2019-12-05 09:56:52 -05:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
2020-07-07 07:18:10 -04:00
<artifactId>usage-example</artifactId>
2019-12-05 09:56:52 -05:00
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
2019-12-05 09:56:52 -05:00
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2020-01-15 15:23:26 -05:00
<version>${commons.lang3.version}</version>
2019-12-05 09:56:52 -05:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2020-01-15 15:23:26 -05:00
<version>${junit.version}</version>
2019-12-05 09:56:52 -05:00
<scope>test</scope>
</dependency>
</dependencies>
2019-12-05 09:56:52 -05:00
<build>
<plugins>
<plugin>
<groupId>com.baeldung</groupId>
<artifactId>counter-maven-plugin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>dependency-counter</goal>
</goals>
</execution>
</executions>
<configuration>
<scope>test</scope>
</configuration>
</plugin>
</plugins>
</build>
2020-03-21 21:54:38 -04:00
<properties>
<commons.lang3.version>3.9</commons.lang3.version>
<junit.version>4.12</junit.version>
</properties>
</project>