Skip to content

Commit 1e1c077

Browse files
build: 添加顶级pom.xml文件。
1 parent 7b3a742 commit 1e1c077

File tree

5 files changed

+169
-14
lines changed

5 files changed

+169
-14
lines changed

.gitee/ISSUE_TEMPLATE.zh-CN.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
### 该问题是怎么引起的?
1+
### 运行环境
2+
3+
- easyj-samples版本:
4+
- JDK版本:
5+
- 操作系统:
6+
- 其他:
27

38

49

5-
### 重现步骤
10+
### 该问题是怎么引起的?
611

712

813

914
### 报错信息
1015

1116

1217

18+
### 重现步骤或源码
19+
1320

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,36 @@
1616
*.nar
1717
*.ear
1818
*.zip
19+
*.tar
1920
*.tar.gz
2021
*.rar
2122

2223
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2324
hs_err_pid*
25+
26+
# Maven files
27+
target/
28+
.flattened-pom.xml
29+
dependency-reduced-pom.xml
30+
31+
# Eclipse files
32+
.settings/
33+
.project
34+
.classpath
35+
36+
# IDEA files
37+
.idea/
38+
*.ipr
39+
*.iml
40+
*.iws
41+
42+
# Temp files
43+
*.tmp
44+
*.cache
45+
*.diff
46+
*.patch
47+
48+
# System files
49+
.DS_Store
50+
Thumbs.db
51+
*.orig

README.en.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
# easyj-samples
22

3-
#### Description
3+
### Description
44
Easyj项目的样例,大家可以通过此项目的代码,来了解Easyj各项目的功能的使用及效果。
55

6-
#### Software Architecture
6+
### Software Architecture
77
Software architecture description
88

9-
#### Installation
9+
### Installation
1010

1111
1. xxxx
1212
2. xxxx
1313
3. xxxx
1414

15-
#### Instructions
15+
### Instructions
1616

1717
1. xxxx
1818
2. xxxx
1919
3. xxxx
2020

21-
#### Contribution
21+
### Contribution
2222

2323
1. Fork the repository
2424
2. Create Feat_xxx branch
2525
3. Commit your code
2626
4. Create Pull Request
2727

2828

29-
#### Gitee Feature
29+
### Gitee Feature
3030

3131
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
3232
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
# easyj-samples
22

3-
#### 介绍
3+
### 介绍
44
Easyj项目的样例,大家可以通过此项目的代码,来了解Easyj各项目的功能的使用及效果。
55

6-
#### 软件架构
6+
### 软件架构
77
软件架构说明
88

99

10-
#### 安装教程
10+
### 安装教程
1111

1212
1. xxxx
1313
2. xxxx
1414
3. xxxx
1515

16-
#### 使用说明
16+
### 使用说明
1717

1818
1. xxxx
1919
2. xxxx
2020
3. xxxx
2121

22-
#### 参与贡献
22+
### 参与贡献
2323

2424
1. Fork 本仓库
2525
2. 新建 Feat_xxx 分支
2626
3. 提交代码
2727
4. 新建 Pull Request
2828

2929

30-
#### 特技
30+
### 特技
3131

3232
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
3333
2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com)

pom.xml

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.easyj</groupId>
8+
<artifactId>easyj-build</artifactId>
9+
<version>0.1.0-SNAPSHOT</version>
10+
<relativePath/>
11+
</parent>
12+
13+
<artifactId>easyj-samples</artifactId>
14+
<version>${revision}</version>
15+
<packaging>pom</packaging>
16+
<name>Parent</name>
17+
<url>https://gitee.com/easyj-projects/easyj-samples</url>
18+
19+
<properties>
20+
<!-- 编译配置 -->
21+
<java.version>1.8</java.version>
22+
<maven.compiler.source>${java.version}</maven.compiler.source>
23+
<maven.compiler.target>${java.version}</maven.compiler.target>
24+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
26+
27+
<!-- 当前样例项目的版本 -->
28+
<revision>0.1.0-SNAPSHOT</revision>
29+
30+
<!-- 其他依赖版本 -->
31+
<easyj.version>0.1.0-SNAPSHOT</easyj.version>
32+
</properties>
33+
34+
<dependencyManagement>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.easyj</groupId>
38+
<artifactId>easyj-bom</artifactId>
39+
<version>${easyj.version}</version>
40+
<type>pom</type>
41+
<scope>import</scope>
42+
</dependency>
43+
</dependencies>
44+
</dependencyManagement>
45+
46+
<modules>
47+
</modules>
48+
49+
<inceptionYear>2021</inceptionYear>
50+
51+
<licenses>
52+
<license>
53+
<name>Apache License, Version 2.0</name>
54+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
55+
<distribution>repo</distribution>
56+
</license>
57+
</licenses>
58+
59+
<organization>
60+
<name>Easyj开源项目组</name>
61+
<url>https://gitee.com/easyj-projects</url>
62+
</organization>
63+
64+
<developers>
65+
<developer>
66+
<id>wangliang181230</id>
67+
<name>王良</name>
68+
<url>https://gitee.com/wangliang181230</url>
69+
<email>[email protected]</email>
70+
<organization>浙江蕙康科技有限公司</organization>
71+
<organizationUrl>https://www.jyhk.com</organizationUrl>
72+
<roles>
73+
<role>Java架构师</role>
74+
</roles>
75+
</developer>
76+
</developers>
77+
78+
<scm>
79+
<url>https://gitee.com/easyj-projects/easyj-samples</url>
80+
<connection>scm:[email protected]:easyj-projects/easyj-samples.git</connection>
81+
<developerConnection>scm:[email protected]:easyj-projects/easyj-samples.git</developerConnection>
82+
</scm>
83+
84+
<issueManagement>
85+
<system>gitee</system>
86+
<url>https://gitee.com/easyj-projects/easyj-samples/issues</url>
87+
</issueManagement>
88+
89+
<!-- 资源仓库管理 -->
90+
<repositories>
91+
<repository>
92+
<id>kt-nexus</id>
93+
<name>kt-nexus</name>
94+
<url>http://www.kingtsoft.com:33084/nexus/content/groups/public/</url>
95+
<releases>
96+
<enabled>true</enabled>
97+
</releases>
98+
<snapshots>
99+
<enabled>true</enabled>
100+
<updatePolicy>always</updatePolicy>
101+
</snapshots>
102+
</repository>
103+
</repositories>
104+
105+
<profiles>
106+
<!-- profile:Release -->
107+
<profile>
108+
<id>release</id>
109+
<build>
110+
<plugins>
111+
<!-- 使用插件:Javadoc -->
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-javadoc-plugin</artifactId>
115+
</plugin>
116+
</plugins>
117+
</build>
118+
</profile>
119+
</profiles>
120+
</project>

0 commit comments

Comments
 (0)