parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.getbase.android.db</groupId> <artifactId>parent</artifactId> <version>0.10.1</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.getbase.android.db</groupId> <artifactId>parent</artifactId> <version>0.10.1</version> <packaging>pom</packaging> <name>android-db-commons (parent)</name> <description>Some common utilities for ContentProvider/ContentResolver/Cursor and other db-related android stuff.</description> <url>https://github.com/futuresimple/android-db-commons</url> <inceptionYear>2013</inceptionYear> <scm> <url>https://github.com/futuresimple/android-db-commons.git</url> <connection>scm:git:git:@github.com:futuresimple/android-db-commons.git</connection> <developerConnection>scm:git:git@github.com:futuresimple/android-db-commons.git</developerConnection> <tag>0.10.1</tag> </scm> <developers> <developer> <name>Jerzy Chalupski</name> <email>jerzy.chalupski@gmail.com</email> <id>chalup</id> <timezone>+1</timezone> <roles> <role>developer</role> </roles> </developer> <developer> <name>Mateusz Herych</name> <email>heniek@getbase.com</email> <id>partition</id> <timezone>+1</timezone> <roles> <role>developer</role> </roles> </developer> <developer> <name>Grzegorz Gajewski</name> <email>grzesiek@getbase.com</email> <id>ggajews</id> <timezone>+1</timezone> <roles> <role>developer</role> </roles> </developer> <developer> <name>Łukasz Maciończyk</name> <email>lukasz.macionczyk@getbase.com</email> <id>lmac012</id> <timezone>+1</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <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>library</module> <module>example</module> </modules> <properties> <android.version>4.1.1.4</android.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.robolectric</groupId> <artifactId>robolectric</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>android</artifactId> <version>${android.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>16.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> </dependency> <dependency> <groupId>com.google.android</groupId> <artifactId>support-v4</artifactId> <version>r7</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>com.squareup</groupId> <artifactId>fest-android</artifactId> <version>1.0.7</version> </dependency> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.6</version> <scope>system</scope> <systemPath>${tools-jar}</systemPath> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.6</version> <scope>system</scope> <systemPath>${tools-jar}</systemPath> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> <arguments>-Dgpg.keyname=${gpg.keyname}</arguments> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.0.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>standard-jdk</id> <activation> <file> <exists>${java.home}/../lib/tools.jar</exists> </file> </activation> <properties> <tools-jar>${java.home}/../lib/tools.jar</tools-jar> </properties> </profile> <profile> <id>apple-jdk</id> <activation> <file> <exists>${java.home}/../Classes/classes.jar</exists> </file> </activation> <properties> <tools-jar>${java.home}/../Classes/classes.jar</tools-jar> </properties> </profile> </profiles> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> </plugin> </plugins> </reporting> </project>