Skip to content

Commit ddf15db

Browse files
authored
Merge pull request ityouknow#89 from 7c00-backup/feature/root-pom
根目录增加 pom.xml, 便于导入 IDE
2 parents 758102e + 6bfa942 commit ddf15db

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
target/
3+
*.iml
4+

pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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+
7+
<groupId>com.example</groupId>
8+
<artifactId>spring-boot-examples</artifactId>
9+
<packaging>pom</packaging>
10+
<version>2.0.0</version>
11+
12+
<modules>
13+
<module>spring-boot-actuator</module>
14+
<module>spring-boot-admin-simple</module>
15+
<module>spring-boot-banner</module>
16+
<module>spring-boot-commandLineRunner</module>
17+
<module>spring-boot-docker</module>
18+
<module>spring-boot-fastDFS</module>
19+
<module>spring-boot-file-upload</module>
20+
<module>spring-boot-hello</module>
21+
<module>spring-boot-helloWorld</module>
22+
<module>spring-boot-jpa/spring-boot-jpa</module>
23+
<module>spring-boot-jpa/spring-boot-multi-Jpa</module>
24+
<module>spring-boot-jpa-thymeleaf-curd</module>
25+
<module>spring-boot-mail</module>
26+
<module>spring-boot-memcache-spymemcached</module>
27+
<module>spring-boot-mongodb/spring-boot-mongodb</module>
28+
<module>spring-boot-mongodb/spring-boot-multi-mongodb</module>
29+
<module>spring-boot-mybatis/spring-boot-mybatis-annotation</module>
30+
<module>spring-boot-mybatis/spring-boot-mybatis-annotation-mulidatasource</module>
31+
<module>spring-boot-mybatis/spring-boot-mybatis-xml</module>
32+
<module>spring-boot-mybatis/spring-boot-mybatis-xml-mulidatasource</module>
33+
<module>spring-boot-package</module>
34+
<module>spring-boot-package-war</module>
35+
<module>spring-boot-rabbitmq</module>
36+
<module>spring-boot-redis</module>
37+
<module>spring-boot-scheduler</module>
38+
<module>spring-boot-shiro</module>
39+
<module>spring-boot-thymeleaf/spring-boot-thymeleaf</module>
40+
<module>spring-boot-thymeleaf/spring-boot-thymeleaf-layout</module>
41+
<module>spring-boot-web</module>
42+
<module>spring-boot-web-thymeleaf</module>
43+
<module>spring-boot-webflux</module>
44+
</modules>
45+
46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-compiler-plugin</artifactId>
51+
<version>3.1</version>
52+
<configuration>
53+
<source>1.8</source>
54+
<target>1.8</target>
55+
</configuration>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
</project>

0 commit comments

Comments
 (0)