项目名为helloweb

项目文件结构图1

helloweb>pom.xml内容如下:

<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.jikexueyuan</groupId>
<artifactId>helloweb-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging> <name>helloweb</name> <modules>
<module>helloweb-entity</module>
<module>helloweb-core</module>
<module>helloweb-web</module>
<module>helloweb-design</module>
</modules>
</project>

其中helloweb-core中的目录为

pom.xml内容

<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> <parent>
<groupId>com.jikexueyuan</groupId>
<artifactId>helloweb-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent> <artifactId>helloweb-core</artifactId>
<version>${project.parent.version}</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name> </project>

其它模块的结构类似。

最新文章

  1. 离线安装swashbuckle(webapi自动文档及测试工具)
  2. Android之EACCES (Permission denied)与Permission denied异常探密
  3. Go语言interface详解
  4. 如何下载google play免费应用的apk文件
  5. KindEditor配置步骤
  6. oracle 分组排序
  7. 武汉科技大学ACM:1005: Soapbear and Honey
  8. Android 匿名共享内存Java接口分析
  9. hdu 4039 The Social Network
  10. 笔记:Spring Boot 项目构建与解析
  11. c语言程序操作
  12. [转帖] Win10 多桌面转换的快捷键
  13. 【转】C语言字符串与数字相互转换
  14. Linux初学之vmware Workstation 网络连接三种模式
  15. Tasker : Task / Shortcut Widgets
  16. SQL Server数据库的基础脚本编程
  17. 【2008-2009 ICPC NEERC D】Deposits(暴力)
  18. Mysql中间件_haproxy在启动过程中报错_Starting proxy : cannot bind socket
  19. Process Monitor工具找网吧广告
  20. mysql语句优化技巧

热门文章

  1. 【leetcode-101】 对称二叉树
  2. wav音频文件格式解析【个人笔记】(自用)
  3. ASP.NET MVC+EF框架+EasyUI实现权限管理(附源码)
  4. java基础之反射---重要
  5. 安装Blend+SketchFlow Preview for Visual Studio 2012出现错误
  6. Less 创建css3动画@keyframes函数
  7. Visual Studio 产品密钥
  8. pycharm使用方法
  9. Python 关于在ubuntu部署Django项目
  10. tomcat源码之connector启动过程