roboguice
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.roboguice</groupId> <artifactId>roboguice</artifactId> <version>4.0.0</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>roboguice-aggregator</artifactId> <groupId>org.roboguice</groupId> <version>4.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>roboguice</artifactId> <name>RoboGuice</name> <description>A framework for using Google Guice dependency injection in Android.</description> <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <executions> <execution> <id>default-compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <compilerArgs> <arg>-AguiceAnnotationDatabasePackageName=roboguice</arg> </compilerArgs> </configuration> </execution> <execution> <id>default-testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerArgs> <arg>-AguiceAnnotationDatabasePackageName=testroboguice</arg> </compilerArgs> </configuration> </execution> </executions> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <version>${android-maven-plugin.version}</version> <extensions>true</extensions> <executions> <execution> <id>lint-check</id> <phase>verify</phase> <goals> <goal>lint</goal> </goals> </execution> </executions> <configuration> <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> <resourceDirectory>${project.basedir}/res</resourceDirectory> <sdk> <platform>${android-build.version}</platform> </sdk> <generateApk>false</generateApk> <lint> <skip>false</skip> </lint> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <id>test-with-annotation-database-off</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <environmentVariables> <roboguice.useAnnotationDatabases>false</roboguice.useAnnotationDatabases> </environmentVariables> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>true</minimizeJar> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>org.roboguice.shaded.goole.common</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>third.party.closed.source.repo</id> <url>file://${basedir}/../maven_repo_3rd_party</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.roboguice</groupId> <artifactId>roboblender</artifactId> <version>4.0.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>velocity</artifactId> <groupId>org.apache.velocity</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>4.1.1.4</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>opengl-api</artifactId> <groupId>org.khronos</groupId> </exclusion> <exclusion> <artifactId>xmlParserAPIs</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xpp3</artifactId> <groupId>xpp3</groupId> </exclusion> <exclusion> <artifactId>json</artifactId> <groupId>org.json</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>android.support</groupId> <artifactId>compatibility-v4</artifactId> <version>19</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>android.support</groupId> <artifactId>compatibility-v7-appcompat</artifactId> <version>19</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> <version>2.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> <exclusion> <artifactId>sqlite-jdbc</artifactId> <groupId>org.xerial</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-commons</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-util</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>asm-analysis</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>vtd-xml</artifactId> <groupId>com.ximpleware</groupId> </exclusion> <exclusion> <artifactId>support-v4</artifactId> <groupId>com.google.android</groupId> </exclusion> <exclusion> <artifactId>fest-util</artifactId> <groupId>org.easytesting</groupId> </exclusion> <exclusion> <artifactId>fest-reflect</artifactId> <groupId>org.easytesting</groupId> </exclusion> <exclusion> <artifactId>maven-ant-tasks</artifactId> <groupId>org.apache.maven</groupId> </exclusion> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>3.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>cglib-nodep</artifactId> <groupId>cglib</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.dexmaker</groupId> <artifactId>dexmaker</artifactId> <version>1.1</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <reportOutputDirectory>docs</reportOutputDirectory> <destDir>apidocs</destDir> <notimestamp>true</notimestamp> </configuration> </plugin> </plugins> </reporting> </project>