You can download google-analytics-java-1.1.2.jar in this page.
The Apache Software License, Version 2.0
google-analytics-java-1.1.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/ai.h2o/google-analytics-java/pom.properties META-INF/maven/ai.h2o/google-analytics-java/pom.xml com.brsanthu.googleanalytics.AwtRequestParameterDiscoverer.class com.brsanthu.googleanalytics.DefaultRequest.class com.brsanthu.googleanalytics.DefaultRequestParameterDiscoverer.class com.brsanthu.googleanalytics.EventHit.class com.brsanthu.googleanalytics.ExceptionHit.class com.brsanthu.googleanalytics.GaUtils.class com.brsanthu.googleanalytics.GoogleAnalytics.class com.brsanthu.googleanalytics.GoogleAnalyticsConfig.class com.brsanthu.googleanalytics.GoogleAnalyticsException.class com.brsanthu.googleanalytics.GoogleAnalyticsParameter.class com.brsanthu.googleanalytics.GoogleAnalyticsRequest.class com.brsanthu.googleanalytics.GoogleAnalyticsResponse.class com.brsanthu.googleanalytics.GoogleAnalyticsStats.class com.brsanthu.googleanalytics.GoogleAnalyticsThreadFactory.class com.brsanthu.googleanalytics.ItemHit.class com.brsanthu.googleanalytics.PageViewHit.class com.brsanthu.googleanalytics.RequestParameterDiscoverer.class com.brsanthu.googleanalytics.RequestProvider.class com.brsanthu.googleanalytics.ScreenViewHit.class com.brsanthu.googleanalytics.SocialHit.class com.brsanthu.googleanalytics.TimingHit.class com.brsanthu.googleanalytics.TransactionHit.class com.brsanthu.googleanalytics.internal.ParameterGetterSetterGenerator.class
google-analytics-java-1.1.2.pom file content.
<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.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>ai.h2o</groupId> <artifactId>google-analytics-java</artifactId> <version>1.1.2-H2O-CUSTOM</version> <packaging>jar</packaging> <properties> <java-version>1.6</java-version> <httpclient-version>4.1</httpclient-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java-version}</source> <target>${java-version}</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <excludePackageNames>*.internal.*</excludePackageNames> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> <inherited>true</inherited> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <useDefaultManifestFile>true</useDefaultManifestFile> <archive> <index>true</index> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.15</version> <configuration> <surefire.useFile>false</surefire.useFile> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.7</version> <configuration> <manifestLocation>META-INF</manifestLocation> <instructions> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Import-Package>*;version=!</Import-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> <execution> <id>bundle</id> <phase>package</phase> <goals> <goal>bundle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${httpclient-version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <name>Google Analytics Java API</name> <url>https://github.com/h2oai/google-analytics-java</url> <description>This is Java API for Google Analytics (Measurement Protocol). More information about the protocol is available at https://developers.google.com/analytics/devguides/collection/protocol/v1/.</description> <inceptionYear>Sep 2013</inceptionYear> <organization> <url>http://h2o.ai</url> <name>H20.ai</name> </organization> <scm> <url>https://github.com/h2oai/google-analytics-java</url> <connection>scm:git:git@github.com:h2oai/google-analytics-java</connection> <developerConnection>scm:git:git@github.com:h2oai/google-analytics-java</developerConnection> <tag>google-analytics-java-1.1.2</tag> </scm> <issueManagement> <system>Jira</system> <url>https://jira.h2o.ai/</url> </issueManagement> <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> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>ai.h2o</groupId> <artifactId>google-analytics-java</artifactId> <version>1.1.2</version> </dependency>
If you think the following google-analytics-java-1.1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download google-analytics-java-1.1.2.jar file