jsonizer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ovh.ws</groupId>
<artifactId>jsonizer</artifactId>
<version>2.2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2012, OVH. All rights reserved.
~
~ 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ovh</groupId>
<artifactId>ovh-parent</artifactId>
<version>1.0</version>
</parent>
<groupId>com.ovh.ws</groupId>
<artifactId>jsonizer</artifactId>
<version>2.2.0</version>
<packaging>pom</packaging>
<name>Jsonizer</name>
<description>Ovh Jsonizer Code Generation Maven Plugins</description>
<url>http://github.com/ovh-com/jsonizer/</url>
<developers>
<developer>
<id>jean-baptiste.pionnier</id>
<name>Jean-Baptiste Pionnier</name>
<email>jean-baptiste.pionnier@ovh.net</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ovh-com/jsonizer.git</connection>
<developerConnection>scm:git:git@github.com:ovh-com/jsonizer.git</developerConnection>
<url>http://github.com/ovh-com/jsonizer/</url>
</scm>
<properties>
<codemodel.version>2.6</codemodel.version>
<fest-assert.version>1.4</fest-assert.version>
<gson.version>2.2.2</gson.version>
<guava.version>13.0.1</guava.version>
<guice.version>3.0</guice.version>
<jackson.version>2.0.6</jackson.version>
<jersey.version>1.14</jersey.version>
<junit.version>4.10</junit.version>
<maven-api.version>2.2.1</maven-api.version>
<mockito.version>1.9.0</mockito.version>
<slf4j.version>1.7.2</slf4j.version>
<jsonizer.version>${project.version}</jsonizer.version>
<ovh-webservices.version>1.0.1</ovh-webservices.version>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<jsonizer.build.timestamp>${maven.build.timestamp}</jsonizer.build.timestamp>
</properties>
<modules>
<module>jsonizer-api</module>
<module>jsonizer-core</module>
<module>jsonizer-json-gson</module>
<module>jsonizer-json-jackson</module>
<module>jsonizer-http-jersey</module>
<module>jsonizer-maven-plugin</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.2</version>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.2</version>
</plugin>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>jsonizer-maven-plugin</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jsonizer-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jsonizer-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>${fest-assert.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>