blob: 361aef4fcb5bc4963c6539bf155d538efb302140 [file] [log] [blame]
<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-parent</artifactId>
<version>0.2.0</version>
<relativePath>../parent</relativePath>
</parent>
<artifactId>java-chassis-distribution</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-javassist</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-protobuf</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-rest</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>java-chassis-core</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>spring-boot-starter-configuration</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>spring-boot-starter-provider</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>spring-boot-starter-discovery</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>spring-boot-starter-transport</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-generator-core</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-generator-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-generator-springmvc</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-invocation-core</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-invocation-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-invocation-springmvc</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-common</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-config</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-metrics</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-ssl</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-vertx</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-bizkeeper</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-flowcontrol-qps</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-loadbalance</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>provider-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>provider-pojo</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>provider-rest-common</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>provider-springmvc</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>service-registry</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-highway</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-servlet</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-vertx</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>