|
@@ -1,96 +0,0 @@
|
|
|
-<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/maven-v4_0_0.xsd">
|
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
- <groupId>${groupId}</groupId>
|
|
|
|
|
- <artifactId>${artifactId}</artifactId>
|
|
|
|
|
- <version>${version}</version>
|
|
|
|
|
- <packaging>jar</packaging>
|
|
|
|
|
-
|
|
|
|
|
- <properties>
|
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
- <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
- <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
- <netbeans.hint.license>WTFPL</netbeans.hint.license>
|
|
|
|
|
- </properties>
|
|
|
|
|
-
|
|
|
|
|
- <distributionManagement>
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>maven.ranides.net</id>
|
|
|
|
|
- <name>maven.ranides.net</name>
|
|
|
|
|
- <url>ftp://maven.ranides.net/</url>
|
|
|
|
|
- </repository>
|
|
|
|
|
- </distributionManagement>
|
|
|
|
|
-
|
|
|
|
|
- <repositories>
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>ranides.net</id>
|
|
|
|
|
- <name>ranides.net</name>
|
|
|
|
|
- <url>http://maven.ranides.net</url>
|
|
|
|
|
- </repository>
|
|
|
|
|
- </repositories>
|
|
|
|
|
-
|
|
|
|
|
- <build>
|
|
|
|
|
- <extensions>
|
|
|
|
|
- <extension>
|
|
|
|
|
- <groupId>org.apache.maven.wagon</groupId>
|
|
|
|
|
- <artifactId>wagon-ftp</artifactId>
|
|
|
|
|
- <version>1.0</version>
|
|
|
|
|
- </extension>
|
|
|
|
|
- </extensions>
|
|
|
|
|
- <plugins>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
- <version>2.3.2</version>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <source>${maven.compiler.source}</source>
|
|
|
|
|
- <target>${maven.compiler.target}</target>
|
|
|
|
|
- <compilerArgument>-Xlint:unchecked</compilerArgument>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
- <version>2.2.1</version>
|
|
|
|
|
- <executions>
|
|
|
|
|
- <execution>
|
|
|
|
|
- <id>attach-sources</id>
|
|
|
|
|
- <goals>
|
|
|
|
|
- <goal>jar-no-fork</goal>
|
|
|
|
|
- </goals>
|
|
|
|
|
- </execution>
|
|
|
|
|
- </executions>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-pmd-plugin</artifactId>
|
|
|
|
|
- <version>3.5</version>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <rulesets>
|
|
|
|
|
- <ruleset>http://ranides.net/projects/pmd/3/assira.custom.xml</ruleset>
|
|
|
|
|
- <ruleset>http://ranides.net/projects/pmd/3/assira.standard.xml</ruleset>
|
|
|
|
|
- </rulesets>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
- <version>2.18.1</version>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- </plugins>
|
|
|
|
|
- </build>
|
|
|
|
|
-
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>net.ranides</groupId>
|
|
|
|
|
- <artifactId>assira.core</artifactId>
|
|
|
|
|
- <version>2.7.0</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>net.ranides</groupId>
|
|
|
|
|
- <artifactId>assira.junit</artifactId>
|
|
|
|
|
- <version>2.7.0</version>
|
|
|
|
|
- <scope>test</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-</project>
|
|
|