gwt-jackson-guava
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.nmorel.gwtjackson</groupId> <artifactId>gwt-jackson-guava</artifactId> <version>0.15.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2013 Nicolas Morel ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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"> <parent> <groupId>com.github.nmorel.gwtjackson</groupId> <artifactId>gwt-jackson-extensions</artifactId> <version>0.15.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>gwt-jackson-guava</artifactId> <name>gwt-jackson :: Extensions :: Guava</name> <description>Extension to support Guava types like Optional or ImmutableSet</description> <properties> <guava.version>19.0</guava.version> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-gwt</artifactId> <version>${guava.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-guava</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/client/**/*Test.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <executions> <execution> <id>packaging</id> <goals> <goal>resources</goal> </goals> <configuration> <modules> <module>com.github.nmorel.gwtjackson.guava.GwtJacksonGuava</module> </modules> </configuration> </execution> <execution> <id>test-dev-mode</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <module>com.github.nmorel.gwtjackson.guava.GwtJacksonGuavaTest</module> <out>${project.build.directory}/gwt/test/dev</out> </configuration> </execution> <execution> <id>test-prod</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <module>com.github.nmorel.gwtjackson.guava.GwtJacksonGuavaTest</module> <out>${project.build.directory}/gwt/test/prod</out> <productionMode>true</productionMode> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>