1
mirror of https://github.com/rapid7/metasploit-payloads synced 2024-11-26 17:41:08 +01:00
metasploit-payloads/java/pom.xml

56 lines
1.7 KiB
XML

<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>
<groupId>com.metasploit</groupId>
<artifactId>Metasploit-JavaPayload-parent</artifactId>
<version>1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JavaPayload for Metasploit (Parent project)</name>
<url>http://www.metasploit.com/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
<debug>true</debug> <!-- http://stackoverflow.com/q/4220083/90203 -->
<debuglevel>none</debuglevel>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<buildOutputDirectory>bin</buildOutputDirectory>
<downloadSources>true</downloadSources>
<testSourcesLast>true</testSourcesLast>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>javapayload</module>
<module>meterpreter</module>
<module>version-compatibility-check</module>
<module>androidpayload/app</module>
<module>androidpayload/library</module>
</modules>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
</project>