cordova-android-shim
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.exparity</groupId> <artifactId>cordova-android-shim</artifactId> <version>1.0.0</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.exparity</groupId> <artifactId>cordova-android-shim</artifactId> <version>1.0.0</version> <name>eXparity Apache Cordova Shim</name> <url>https://github.com/eXparity/cordova-android-shim</url> <description>A shim for use in testing Cordova projects to allow projects to compile without depending on cordova or android</description> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>New BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:@github.com:eXparity/cordova-android-shim.git</connection> <developerConnection>scm:git:git@github.com:eXparity/cordova-android-shim.git</developerConnection> <url>git@github.com:eXparity/cordova-android-shim.git</url> </scm> <developers> <developer> <id>stewbis</id> <name>Stewart Bissett</name> <roles> <role>Developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20180813</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </project>