152 lines
4.2 KiB
XML
152 lines
4.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>pmd-apex</artifactId>
|
|
<name>PMD Apex</name>
|
|
|
|
<parent>
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
<artifactId>pmd</artifactId>
|
|
<version>5.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<config.basedir>${basedir}/../pmd-core</config.basedir>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<configuration>
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
<delimiters>
|
|
<delimiter>${*}</delimiter>
|
|
</delimiters>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
<artifactId>pmd-build</artifactId>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>pmd-clean</id>
|
|
<phase>clean</phase>
|
|
<configuration>
|
|
<target>
|
|
<echo>PMD specific tasks: cleaning generated markdown</echo>
|
|
<delete quiet="true">
|
|
<fileset dir="${basedir}/src/site/markdown/rules/"
|
|
includes="**/*.md" />
|
|
<fileset dir="${basedir}/src/site/markdown/" includes="mergedruleset.xml" />
|
|
<fileset dir="${basedir}/src/site/" includes="site.xml" />
|
|
</delete>
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
<artifactId>pmd-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
<artifactId>pmd-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>apex</groupId>
|
|
<artifactId>apex-jorje-ide</artifactId>
|
|
<version>1.0-sfdc-187-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>apex</groupId>
|
|
<artifactId>apex-jorje-semantic</artifactId>
|
|
<version>1.0-sfdc-187-SNAPSHOT</version>
|
|
<classifier>tests</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr-complete</artifactId>
|
|
<version>3.5.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>axis</groupId>
|
|
<artifactId>axis</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.main.javaee-api</groupId>
|
|
<artifactId>javax.xml.rpc</artifactId>
|
|
<version>3.1.2.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>local-apex-repo</id>
|
|
<url>file://${basedir}/repo</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>designer</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.4.0</version>
|
|
<configuration>
|
|
<mainClass>net.sourceforge.pmd.util.designer.Designer</mainClass>
|
|
<includePluginDependencies>true</includePluginDependencies>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.sourceforge.pmd</groupId>
|
|
<artifactId>pmd-java</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|