af0691d205
Include the animal-scents for Android API in this commit, so that users who do not have Android SDK can still check meterpreter API compatibility with Android API. Some classes, like screenshot have been excluded since they need AWT (but they are excluded in Android Meterpreter anyway). To regenerate the scents file, run mvn -Dandroid.sdk.path=... -P regenerate package
61 lines
1.7 KiB
XML
61 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-Compatibility-parent</artifactId>
|
|
<parent>
|
|
<groupId>com.metasploit</groupId>
|
|
<artifactId>Metasploit-JavaPayload-parent</artifactId>
|
|
<version>1-SNAPSHOT</version>
|
|
</parent>
|
|
<packaging>pom</packaging>
|
|
<name>JavaPayload Compatibility Checks (Parent project)</name>
|
|
<url>http://www.metasploit.com/</url>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
<version>2.9</version>
|
|
<configuration>
|
|
<!-- no Eclipse projects needed since no source files inside -->
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>${project.basedir}/target/generated-sources/copy</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<modules>
|
|
<module>java16</module>
|
|
<module>java15</module>
|
|
<module>java14</module>
|
|
<module>java13</module>
|
|
<module>java12</module>
|
|
<module>android-api3-scents</module>
|
|
<module>android-api3</module>
|
|
</modules>
|
|
</project>
|