blob: 112dc9cd9b819f545986f88eba4b63c8d20687e9 [file] [log] [blame]
<!--
- Copyright 1999-2011 Alibaba Group.
-
- 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ofpay</groupId>
<artifactId>of-parent</artifactId>
<version>1.1.2-RELEASE</version>
</parent>
<artifactId>dubbo-rpc-jsonrpc</artifactId>
<version>1.0.0-alpha-1</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The Json rpc module of dubbo project</description>
<properties>
<dubbo_version>2.4.10</dubbo_version>
<jsonrpc_version>1.1</jsonrpc_version>
<jetty_version>6.1.26</jetty_version>
<jackson.version>2.0.2</jackson.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<git.url>
http://git.dev.qianmi.com/tda/dubbo-rpc-jsonrpc.git
</git.url>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6.SEC03</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${dubbo_version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.briandilley.jsonrpc4j</groupId>
<artifactId>jsonrpc4j</artifactId>
<version>${jsonrpc_version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
<version>2.0</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>${jetty_version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<scm>
<connection>scm:git:${git.url}</connection>
<developerConnection>scm:git:${git.url}</developerConnection>
<url>${git.url}</url>
<tag>dubbo-rpc-jsonrpc-1.0.0-alpha-1</tag>
</scm>
<repositories>
<repository>
<id>nexus repository</id>
<name>intranet public groups</name>
<url>
http://nexus.dev.ofpay.com/nexus/content/groups/public
</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<username>${git.username}</username>
<password>${git.password}</password>
</configuration>
</plugin>
</plugins>
</build>
</project>