Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.servicecomb.springboot.jaxrs.client</groupId>
<artifactId>demo-spring-boot-jaxrs-client</artifactId>
<parent>
<groupId>io.servicecomb.demo</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.servicecomb.springboot.jaxrs.server</groupId>
<artifactId>demo-spring-boot-jaxrs-server</artifactId>
<parent>
<groupId>io.servicecomb.demo</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.servicecomb.springboot.pojo.client</groupId>
<artifactId>demo-spring-boot-pojo-client</artifactId>
<parent>
<groupId>io.servicecomb.demo</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.servicecomb.springboot.pojo.server</groupId>
<artifactId>demo-spring-boot-pojo-server</artifactId>
<parent>
<groupId>io.servicecomb.demo</groupId>
Expand Down
183 changes: 183 additions & 0 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,189 @@

<artifactId>integration-tests</artifactId>

<dependencies>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-common</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-ssl</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-config</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-vertx</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-metrics</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>java-chassis-core</artifactId>
</dependency>
<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>handler-flowcontrol-qps</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-rest</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-client</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-vertx</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-rest-servlet</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-protobuf</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>common-javassist</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>service-registry</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-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>provider-springmvc</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>transport-highway</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-transport</artifactId>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>pojo-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why , need version?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

because demo dependencies are not managed anywhere else

</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>pojo-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>jaxrs-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>jaxrs-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>springmvc-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>springmvc-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>crossapp-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>crossapp-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-spring-boot-jaxrs-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-spring-boot-jaxrs-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-spring-boot-pojo-client</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb.demo</groupId>
<artifactId>demo-spring-boot-pojo-server</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
</dependencies>

<profiles>
<profile>
<id>jacoco</id>
Expand Down
10 changes: 0 additions & 10 deletions java-chassis-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1001,16 +1001,6 @@
<artifactId>foundation-ssl</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-crypt</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-httpclient</artifactId>
<version>0.1.0-m2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.servicecomb</groupId>
<artifactId>foundation-config</artifactId>
Expand Down