blob: 7f8bd30ed3fb827f75e64d27dbf12562f8e9d36d [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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>io.servicecomb</groupId>
<artifactId>java-chassis-parent</artifactId>
<version>0.2.0</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.servicecomb.tests</groupId>
<artifactId>integration-tests</artifactId>
<packaging>pom</packaging>
<modules>
<module>jaxrs-tests</module>
<module>springmvc-tests</module>
<module>tracing-tests</module>
<module>test-common</module>
<module>spring-jaxrs-tests</module>
<module>pojo-test</module>
<module>spring-springmvc-tests</module>
<module>spring-zuul-tracing-tests</module>
<module>spring-pojo-tests</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-schema</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>io.servicecomb.tests</groupId>
<artifactId>test-common</artifactId>
<version>0.2.0</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>io.zipkin.java</groupId>
<artifactId>zipkin-junit</artifactId>
<version>1.24.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-bizkeeper</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-loadbalance</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-highway</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>handler-flowcontrol-qps</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>swagger-generator-springmvc</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<skipStaging>true</skipStaging>
</configuration>
</plugin>
</plugins>
</build>
</project>