blob: d8e410af4642bb11bbd39452293b6d94bb562297 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2017 Huawei Technologies Co., Ltd
~
~ 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>io.servicecomb</groupId>
<artifactId>java-chassis</artifactId>
<version>0.1.0-m1</version>
</parent>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-parent</artifactId>
<packaging>pom</packaging>
<modules>
<module>docker-build-config</module>
<module>docker-run-config</module>
<module>demo-local</module>
<module>demo-server-servlet</module>
<module>demo-pojo</module>
<module>demo-jaxrs</module>
<module>demo-perf-client</module>
<module>demo-springmvc</module>
<module>demo-schema</module>
<module>demo-crossapp</module>
<module>demo-spring-boot</module>
<module>demo-spring-boot-transport</module>
</modules>
<properties>
<spring-boot.version>1.4.5.RELEASE</spring-boot.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-schema</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>all-client</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>pojo-server</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>jaxrs-server</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>springmvc-server</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>crossapp-server</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>pojo-client</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>jaxrs-client</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>springmvc-client</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>crossapp-client</artifactId>
<version>0.1.0-m1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.odavid.maven.plugins</groupId>
<artifactId>mixin-maven-plugin</artifactId>
<version>0.1-alpha-39</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<version>0.1</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>${demo.main}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>