pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <parent>
  6. <artifactId>manage-root</artifactId>
  7. <groupId>cn.efunbox.manage</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>manage-base-web</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <packaging>war</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cn.efunbox.manage</groupId>
  18. <artifactId>manage-common</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.efunbox.manage</groupId>
  23. <artifactId>manage-base-api</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-tomcat</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-autoconfigure</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <finalName>manage</finalName>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <version>3.3</version>
  53. <configuration>
  54. <source>${java.version}</source>
  55. <target>${java.version}</target>
  56. <encoding>UTF-8</encoding>
  57. <showWarnings>true</showWarnings>
  58. </configuration>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-war-plugin</artifactId>
  63. <version>3.0.0</version>
  64. <configuration>
  65. <failOnMissingWebXml>false</failOnMissingWebXml>
  66. <outputDirectory>../target</outputDirectory>
  67. </configuration>
  68. </plugin>
  69. <!--<plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <version>1.5.7.RELEASE</version>
  73. <configuration>
  74. <outputDirectory>../target</outputDirectory>
  75. </configuration>
  76. <executions>
  77. <execution>
  78. <goals>
  79. <goal>repackage</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>-->
  84. </plugins>
  85. </build>
  86. </project>