Ver código fonte

分批次提交

傅行帆 4 anos atrás
pai
commit
34d0839c9b
4 arquivos alterados com 77 adições e 0 exclusões
  1. BIN
      docs/img/spring-boot-plus-qq-group.png
  2. 36
    0
      example/.gitignore
  3. 1
    0
      example/README.md
  4. 40
    0
      example/pom.xml

BIN
docs/img/spring-boot-plus-qq-group.png Ver arquivo


+ 36
- 0
example/.gitignore Ver arquivo

@@ -0,0 +1,36 @@
1
+/target/
2
+/classes
3
+!.mvn/wrapper/maven-wrapper.jar
4
+
5
+### STS ###
6
+.apt_generated
7
+.classpath
8
+.factorypath
9
+.project
10
+.settings
11
+.springBeans
12
+.sts4-cache
13
+
14
+### IntelliJ IDEA ###
15
+.idea
16
+*.iws
17
+*.iml
18
+*.ipr
19
+
20
+### NetBeans ###
21
+/nbproject/private/
22
+/build/
23
+/nbbuild/
24
+/dist/
25
+/nbdist/
26
+/.nb-gradle/
27
+
28
+.DS_Store
29
+
30
+*.log
31
+logs
32
+
33
+*.rdb
34
+
35
+
36
+

+ 1
- 0
example/README.md Ver arquivo

@@ -0,0 +1 @@
1
+# example 项目示例模块

+ 40
- 0
example/pom.xml Ver arquivo

@@ -0,0 +1,40 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+
3
+<!--
4
+  ~ Copyright 2019-2029 geekidea(https://github.com/geekidea)
5
+  ~
6
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
7
+  ~ you may not use this file except in compliance with the License.
8
+  ~ You may obtain a copy of the License at
9
+  ~
10
+  ~     http://www.apache.org/licenses/LICENSE-2.0
11
+  ~
12
+  ~ Unless required by applicable law or agreed to in writing, software
13
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
14
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+  ~ See the License for the specific language governing permissions and
16
+  ~ limitations under the License.
17
+  -->
18
+
19
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21
+    <modelVersion>4.0.0</modelVersion>
22
+
23
+    <parent>
24
+        <groupId>io.geekidea.springbootplus</groupId>
25
+        <artifactId>parent</artifactId>
26
+        <version>2.0</version>
27
+    </parent>
28
+
29
+    <artifactId>example</artifactId>
30
+    <name>example</name>
31
+    <description>业务自定义模块,可新建N个业务模块,在bootstrap模块中引入自定义模块</description>
32
+
33
+    <dependencies>
34
+        <dependency>
35
+            <groupId>io.geekidea.springbootplus</groupId>
36
+            <artifactId>framework</artifactId>
37
+        </dependency>
38
+    </dependencies>
39
+
40
+</project>