Created
August 30, 2018 13:02
-
-
Save abs51295/cdc3eb5112ea1272d1923e079fc696e5 to your computer and use it in GitHub Desktop.
Effective pom generated using `mvn io.github.stackinfo:stackinfo-maven-plugin:0.2:prepare`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.github.ignition</groupId> | |
<artifactId>ignition</artifactId> | |
<version>0.3-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<description>Kick-starts Android application development.</description> | |
<licenses> | |
<license> | |
<name>The Apache Software License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<modules> | |
<module>ignition-support</module> | |
<module>ignition-core</module> | |
<module>ignition-location</module> | |
</modules> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>com.google.android</groupId> | |
<artifactId>android</artifactId> | |
<version>1.6_r2</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.10</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.pivotallabs</groupId> | |
<artifactId>robolectric</artifactId> | |
<version>1.1</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment