webjar-google-maps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fujion.webjars</groupId> <artifactId>webjar-google-maps</artifactId> <version>3.3.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> <parent> <groupId>org.fujion.webjars</groupId> <artifactId>fujion-webjars</artifactId> <version>2.1.1</version> </parent> <name>Google Maps API Wrapper</name> <artifactId>webjar-google-maps</artifactId> <version>3.3.0</version> <description>Wrapper for asynchronously using Google Maps API in browser.</description> <properties> <src.url>https://github.com/Carrooi/Js-GoogleMapsLoader/archive/${src.version}.zip</src.url> <src.top>Js-GoogleMapsLoader-${src.version}</src.top> <systemjs> { "paths": { "google-maps": "lib/Google.js" } } </systemjs> </properties> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>precompile</id> <configuration> <target> <get src="${src.url}" dest="${src.zipdir}/src.zip" /> <unzip src="${src.zipdir}/src.zip" dest="${src.tmpdir}" /> <move todir="${webjar.target}"> <fileset dir="${src.rootdir}" includes="lib/*.*,LICENSE,README.md" /> </move> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> <scm> <tag>3.3.0</tag> </scm> </project>