zocial
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.bostrt.gwt</groupId> <artifactId>zocial</artifactId> <version>1.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.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>net.bostrt.gwt</groupId> <artifactId>zocial</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>GWTZocial</name> <url>https://github.com/bostrt/gwt-zocial</url> <description>GWT support for Zocial CSS buttons. Check out Zocial at http://zocial.smcllns.com/</description> <scm> <url>https://github.com/bostrt/gwt-zocial</url> <connection>scm:git:https://github.com/bostrt/gwt-zocial.git</connection> <developerConnection>scm:git:https://github.com/bostrt/gwt-zocial.git</developerConnection> </scm> <developers> <developer> <id>bostrt</id> <name>Robert</name> <email>bostrt@gmail.com</email> <url>http://www.bostrt.net</url> <roles> <role>developer</role> </roles> </developer> </developers> <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> <properties> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gwtVersion>2.4.0</gwtVersion> </properties> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>${gwtVersion}</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.css</include> <include>**/*.eot</include> <include>**/*.svg</include> <include>**/*.ttf</include> <include>**/*.woff</include> </includes> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.gwt.xml</include> <include>**/*.java</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>${gwtVersion}</version> <configuration> <modules> <module>${project.groupId}.zocial.Zocial</module> </modules> </configuration> <executions> <execution> <configuration> <extraParam>true</extraParam> </configuration> <goals> <goal>compile</goal> </goals> </execution> </executions> </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>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>