progressbutton-parent
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.f2prateek.progressbutton</groupId> <artifactId>progressbutton-parent</artifactId> <version>2.1.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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.f2prateek.progressbutton</groupId> <artifactId>progressbutton-parent</artifactId> <packaging>pom</packaging> <version>2.1.0</version> <name>Android Progress Button (Parent)</name> <description>ProgressButton is a custom progress indicator with a tiny footprint.</description> <url>https://github.com/f2prateek/progressbutton</url> <inceptionYear>2012</inceptionYear> <modules> <module>progressbutton</module> <module>progressbutton-samples</module> </modules> <scm> <url>https://github.com/f2prateek/progressbutton</url> <connection>scm:git:git://github.com/f2prateek/progressbutton.git</connection> <developerConnection>scm:git:git@github.com:f2prateek/progressbutton.git</developerConnection> <tag>progressbutton-parent-2.1.0</tag> </scm> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/f2prateek/progressbutton/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.6</java.version> <android.version>4.1.1.4</android.version> <android.platform>19</android.platform> <junit.version>4.10</junit.version> <robolectric.version>2.2</robolectric.version> <fest.version>2.0M10</fest.version> <mockito.version>1.9.5</mockito.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>${android.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> <version>${robolectric.version}</version> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert-core</artifactId> <version>${fest.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <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>3.8.1</version> <configuration> <sdk> <platform>${android.platform}</platform> </sdk> </configuration> <extensions>true</extensions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.11</version> <configuration> <failsOnError>true</failsOnError> <!-- Relative to module directory. --> <configLocation>../checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>