gajs-taglib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>gajs-taglib</artifactId> <version>0.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.github.stefanbirkner</groupId> <artifactId>gajs-taglib</artifactId> <packaging>jar</packaging> <version>0.3.0</version> <name>GaJs Taglib</name> <description>Taglib for implementing Google Analytics support.</description> <url>http://stefanbirkner.github.com/gajs-taglib.git/</url> <inceptionYear>2012</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>stefanbirkner</id> <name>Stefan Birkner</name> <email>mail@stefan-birkner.de</email> <url>http://www.stefan-birkner.de</url> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:git://github.com/stefanbirkner/gajs-taglib.git</connection> <developerConnection>scm:git:git@github.com:stefanbirkner/gajs-taglib.git</developerConnection> <url>https://github.com/stefanbirkner/gajs-taglib/</url> </scm> <prerequisites> <maven>2.2.0</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <github.global.server>github</github.global.server> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <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>com.github.github</groupId> <artifactId>downloads-maven-plugin</artifactId> <version>0.6</version> <configuration> <description>Release ${project.version} of ${project.name}</description> <override>true</override> <includeAttached>true</includeAttached> </configuration> <executions> <execution> <goals> <goal>upload</goal> </goals> <phase>install</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>gajs4java</artifactId> <version>0.3.0</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>[2.0,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>[4.9,)</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>[1.2,)</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>[1.2,)</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>serverrule</artifactId> <version>0.1.0</version> <scope>test</scope> </dependency> </dependencies> </project>