library
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tuenti.buttonmenu</groupId> <artifactId>library</artifactId> <version>1.0.9</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.tuenti.buttonmenu</groupId> <artifactId>buttonmenu-parent</artifactId> <version>1.0.9</version> </parent> <artifactId>library</artifactId> <packaging>jar</packaging> <name>ButtonMenu - Library</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>com.nineoldandroids</groupId> <artifactId>library</artifactId> </dependency> </dependencies> <build> <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <release>false</release> <sign> <debug>false</debug> </sign> <resourceDirectory>${project.basedir}/res</resourceDirectory> </configuration> </plugin> </plugins> </build> </project>