JGoogleAnalyticsTracker.
A java library for sending google analytics tracking information..
Here is the list of declaration for JGoogleAnalyticsTracker. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.dmurph</groupId> <artifactId>JGoogleAnalyticsTracker</artifactId> <version>1.2.0</version> </dependency>
If you think this Maven repository POM file listing for JGoogleAnalyticsTracker is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The MIT License
URL: http://www.opensource.org/licenses/mit-license.php.
The JGoogleAnalyticsTracker-1.2.0 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1256 |
Log | slf4j-api 1.6.1 The slf4j API | 621 |
The following plugins are used in the JGoogleAnalyticsTracker-1.2.0.jar
The following packages are defined in the JGoogleAnalyticsTracker-1.2.0.jar
com.dmurph.tracking
Here is the content of the POM file.
<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> <groupId>com.dmurph</groupId> <artifactId>JGoogleAnalyticsTracker</artifactId> <version>1.2.0</version> <name>JGoogleAnalyticsTracker</name> <description>A java library for sending google analytics tracking information.</description> <url>http://github.com/dmurph/JGoogleAnalyticsTracker</url> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <url>https://code.google.com/p/jgoogleanalyticstracker/source/browse/tags/JGoogleAnalyticsTracker-1.2.0</url> <connection>scm:svn:http://jgoogleanalyticstracker.googlecode.com/svn/tags/JGoogleAnalyticsTracker-1.2.0</connection> <developerConnection>scm:svn:https://jgoogleanalyticstracker.googlecode.com/svn/tags/JGoogleAnalyticsTracker-1.2.0</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</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.7</version> <configuration> <show>protected</show> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <extensions>true</extensions> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <compilerVersion>1.5+</compilerVersion> </configuration> </plugin> </plugins> </build> <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> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <reporting> <plugins> </plugins> </reporting> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots1</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>