dandelion-webanalytics
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.dandelion</groupId>
<artifactId>dandelion-webanalytics</artifactId>
<version>0.2.2</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
</parent>
<groupId>com.github.dandelion</groupId>
<artifactId>dandelion-webanalytics</artifactId>
<version>0.2.2</version>
<packaging>pom</packaging>
<name>Dandelion :: Web Analytics</name>
<description>Dandelion module for Web Analytics Providers</description>
<licenses>
<license>
<distribution>repo</distribution>
<name>BSD 3-Clause</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<properties>
<dandelion.version>0.2.0</dandelion.version>
<maven.compiler.version>2.3.2</maven.compiler.version>
<maven.javadoc.version>2.8.1</maven.javadoc.version>
<maven.source.version>2.2</maven.source.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<modules>
<module>webanalytics-core</module>
<module>webanalytics-jsp</module>
<module>webanalytics-thymeleaf</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.dandelion</groupId>
<artifactId>dandelion</artifactId>
<version>${dandelion.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/dandelion/issues/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/dandelion/dandelion-webanalytics.git</connection>
<developerConnection>scm:git:git@github.com:dandelion/dandelion-webanalytics.git</developerConnection>
<url>http://github.com/dandelion/dandelion-webanalytics</url>
</scm>
<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.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<configuration>
<stylesheet>maven</stylesheet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>