Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

develop:为在根目录下执行mvn eclipse:eclipse对项目根POM和目录结构进行调整 #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<artifactId>shiro-example</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<properties>
<!-- 文件拷贝时的编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
</properties>
<modules>
<module>shiro-example-chapter2</module>
<module>shiro-example-chapter3</module>
Expand All @@ -32,12 +39,7 @@
<module>shiro-example-chapter20</module>
<module>shiro-example-chapter21</module>
<module>shiro-example-chapter22</module>
<module>shiro-example-chapter23-server</module>
<module>shiro-example-chapter23-core</module>
<module>shiro-example-chapter23-client</module>
<module>shiro-example-chapter23-pom</module>
<module>shiro-example-chapter23-app1</module>
<module>shiro-example-chapter23-app2</module>
<module>shiro-example-chapter23</module>
<module>shiro-example-chapter23-nginx</module>
<module>shiro-example-chapter24</module>
</modules>
Expand Down
139 changes: 0 additions & 139 deletions shiro-example-chapter23-pom/pom.xml

This file was deleted.

23 changes: 23 additions & 0 deletions shiro-example-chapter23/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>com.github.zhangkaitao</groupId>
<artifactId>shiro-example-chapter23-pom</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>shiro-example-chapter23-server</module>
<module>shiro-example-chapter23-core</module>
<module>shiro-example-chapter23-client</module>

<module>shiro-example-chapter23-app1</module>
<module>shiro-example-chapter23-app2</module>
<!--<module>shiro-example-chapter23-nginx</module>-->
</modules>


</project>
Binary file not shown.
15 changes: 15 additions & 0 deletions shiro-example-chapter23/shiro-example-chapter23-nginx/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>shiro-example</artifactId>
<groupId>com.github.zhangkaitao</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>shiro-example-chapter23-nginx</artifactId>


</project>