Skip to content

Commit a107ff8

Browse files
authored
Merge pull request apache#1 from sherlock-hao/master
add samples
2 parents 3ab6284 + 42237b2 commit a107ff8

40 files changed

+2445
-24
lines changed

.gitignore

Lines changed: 60 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,60 @@
1-
# Compiled class file
2-
*.class
3-
4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.nar
17-
*.ear
18-
*.zip
19-
*.tar.gz
20-
*.rar
21-
22-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23-
hs_err_pid*
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
# maven ignore
25+
target/
26+
*.jar
27+
*.war
28+
*.zip
29+
*.tar
30+
*.tar.gz
31+
*.class
32+
33+
# eclipse ignore
34+
.settings/
35+
.project
36+
.classpath
37+
38+
# idea ignore
39+
.idea/
40+
*.ipr
41+
*.iml
42+
*.iws
43+
44+
# temp ignore
45+
*.log
46+
*.cache
47+
*.diff
48+
*.patch
49+
*.tmp
50+
/distribution/bin
51+
/distribution/conf
52+
/distribution/lib
53+
server/*root.*
54+
server/.root.*
55+
56+
# system ignore
57+
.DS_Store
58+
Thumbs.db
59+
*.orig
60+
*.class

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
# fescar-samples
1+
# fescar-samples
2+
3+
Samples for fescar (incubating)
4+
5+
This repository contains a number of projects to illustrate various usages of fescar from basic to advanced, check README in each individual sub projects.
6+
7+
Pls. cross reference to [fescar](https://github.com/alibaba/fescar) for the details.

dubbo/pom.xml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 1999-2018 Alibaba Group Holding Ltd.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
<project xmlns="http://maven.apache.org/POM/4.0.0"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<parent>
21+
<artifactId>fescar-samples</artifactId>
22+
<groupId>com.alibaba.fescar</groupId>
23+
<version>0.1.4-SNAPSHOT</version>
24+
</parent>
25+
<modelVersion>4.0.0</modelVersion>
26+
<artifactId>fescar-samples-dubbo</artifactId>
27+
<packaging>jar</packaging>
28+
<name>fescar-samples-dubbo ${project.version}</name>
29+
<properties>
30+
<maven.compiler.source>1.7</maven.compiler.source>
31+
<maven.compiler.target>1.7</maven.compiler.target>
32+
</properties>
33+
<dependencies>
34+
<dependency>
35+
<groupId>${project.groupId}</groupId>
36+
<artifactId>fescar-tm</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>${project.groupId}</groupId>
40+
<artifactId>fescar-test</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>${project.groupId}</groupId>
44+
<artifactId>fescar-spring</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>${project.groupId}</groupId>
48+
<artifactId>fescar-dubbo</artifactId>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.101tec</groupId>
52+
<artifactId>zkclient</artifactId>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.alibaba</groupId>
56+
<artifactId>dubbo-registry-nacos</artifactId>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.alibaba.spring</groupId>
60+
<artifactId>spring-context-support</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>junit</groupId>
64+
<artifactId>junit</artifactId>
65+
<scope>test</scope>
66+
</dependency>
67+
</dependencies>
68+
<build>
69+
<plugins>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-deploy-plugin</artifactId>
73+
<version>2.8.2</version>
74+
<configuration>
75+
<skip>true</skip>
76+
</configuration>
77+
</plugin>
78+
</plugins>
79+
</build>
80+
81+
</project>

0 commit comments

Comments
 (0)