pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.0.2.RELEASE</version>
  10. </parent>
  11. <groupId>com.mofang.travel.marketing</groupId>
  12. <artifactId>marketing</artifactId>
  13. <packaging>pom</packaging>
  14. <version>0.0.1</version>
  15. <modules>
  16. <module>marketing-domain</module>
  17. <module>marketing-api</module>
  18. <module>marketing-base</module>
  19. </modules>
  20. <properties>
  21. <!--Spring-->
  22. <spring.boot.version>2.0.2.RELEASE</spring.boot.version>
  23. <!--Mybatis-->
  24. <mybatis-spring.version>1.1.1</mybatis-spring.version>
  25. <!--<pagehelper.version>4.1.6</pagehelper.version>-->
  26. <cat.version>3.0.0</cat.version>
  27. <!--基础工具包-->
  28. <fastjson.version>1.2.46</fastjson.version>
  29. <google.guava.version>20.0</google.guava.version>
  30. <dubbo.version>2.7.2</dubbo.version>
  31. <!-- apache commons补充包 -->
  32. <apache-commons-lang3.version>3.4</apache-commons-lang3.version>
  33. <!--编译选项-->
  34. <maven.compiler.target>1.8</maven.compiler.target>
  35. <maven.compiler.source>1.8</maven.compiler.source>
  36. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  37. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  38. <version>0.0.1</version>
  39. </properties>
  40. <build>
  41. <finalName>marketing</finalName>
  42. <plugins>
  43. <!-- 要将源码放上去,需要加入这个插件 -->
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-source-plugin</artifactId>
  47. <version>2.1</version>
  48. <configuration>
  49. <attach>true</attach>
  50. </configuration>
  51. <executions>
  52. <execution>
  53. <phase>compile</phase>
  54. <goals>
  55. <goal>jar</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-surefire-plugin</artifactId>
  63. <configuration>
  64. <skipTests>true</skipTests>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>