Skip to content
This repository was archived by the owner on Oct 13, 2024. It is now read-only.
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Saga is composed of **alpha** and **omega**.
The following diagram shows the relationships among alpha, omega and services.
![Saga Pack Architecture](docs/static_files/pack.png)

See [Saga Pack Design](docs/design.md) for details. If you are interested in our previous architecture, please move forward to [Old Saga's Documentation](docs/old_saga.md).
See [Saga Pack Design](docs/design.md) for details.

## Get Started
See [Booking Demo](saga-demo/pack-demo/README.md) for details.
See [Booking Demo](saga-demo/booking/README.md) for details.

## User Guide
See [User Guide](docs/user_guide.md) for details.
Expand Down
4 changes: 2 additions & 2 deletions README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Saga是由 **alpha** 和 **omega**组成,其中:
下图展示了alpha, omega以及微服务三者的关系:
![Saga Pack 架构](docs/static_files/pack.png)

详情可浏览[Saga Pack 设计文档](docs/design_zh.md). 如果您对Saga的上一代架构感兴趣,可移步至[上一代Saga文档](docs/old_saga.md)了解详情。
详情可浏览[Saga Pack 设计文档](docs/design_zh.md).

## 快速入门
详情可浏览[出行预订示例](saga-demo/pack-demo/README.md)。
详情可浏览[出行预订示例](saga-demo/booking/README.md)。

## 用户指南
详情可浏览[用户指南](docs/user_guide_zh.md)。
Expand Down
168 changes: 0 additions & 168 deletions docs/api/api.md

This file was deleted.

53 changes: 0 additions & 53 deletions docs/old_saga.md

This file was deleted.

20 changes: 0 additions & 20 deletions integration-tests/coverage-aggregate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,6 @@


<dependencies>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-format</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-spring</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.transports</groupId>
<artifactId>transport-httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.discovery</groupId>
<artifactId>saga-discovery-servicecenter</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>omega-context</artifactId>
Expand Down
50 changes: 4 additions & 46 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,12 @@
<version>0.0.3-SNAPSHOT</version>

<modules>
<module>saga-core</module>
<module>transports</module>
<module>saga-spring</module>
<module>docker-build-config</module>
<module>saga-format</module>
<module>saga-discovery</module>
<module>saga-web</module>
<module>omega</module>
<module>alpha</module>
<module>pack-contracts</module>
<module>pack-common</module>
<module>integration-tests</module>
<module>saga-persistence</module>
</modules>

<properties>
Expand Down Expand Up @@ -121,41 +114,6 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-core</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-format</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-spring</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.transports</groupId>
<artifactId>transport-httpclient</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.transports</groupId>
<artifactId>transport-httpclient-spring</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.transports</groupId>
<artifactId>transport-resttemplate</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga.discovery</groupId>
<artifactId>saga-discovery-servicecenter</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>omega-context</artifactId>
Expand Down Expand Up @@ -212,10 +170,10 @@
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-persistence-jpa</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<groupId>org.apache.servicecomb.saga</groupId>
<artifactId>saga-persistence-jpa</artifactId>
<version>0.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
Loading