Files
java-tutorials/custom-pmd/pom.xml
T

47 lines
1.7 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-04-26 18:07:47 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung.pmd</groupId>
<artifactId>custom-pmd</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>custom-pmd</name>
<url>http://maven.apache.org</url>
2018-04-26 18:07:47 +05:30
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${pmdVersion}</version>
</dependency>
2018-04-26 18:07:47 +05:30
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${pmdVersion}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
2018-04-26 12:20:35 +05:30
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
2018-04-26 18:07:47 +05:30
</configuration>
</plugin>
</plugins>
</build>
2018-04-26 18:07:47 +05:30
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<pmdVersion>6.0.1</pmdVersion>
<maven.compiler.source>1.8</maven.compiler.source>
2018-04-26 12:20:35 +05:30
<maven.compiler.target>1.8</maven.compiler.target>
2018-04-26 18:07:47 +05:30
</properties>
2018-04-13 07:08:55 +02:00
</project>