pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.linlinjava</groupId>
  5. <artifactId>litemall-admin-api</artifactId>
  6. <version>0.1.0</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>1.5.10.RELEASE</version>
  12. <relativePath/>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.test.skip>true</maven.test.skip>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.linlinjava</groupId>
  22. <artifactId>litemall-core</artifactId>
  23. <version>0.1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.linlinjava</groupId>
  27. <artifactId>litemall-db</artifactId>
  28. <version>0.1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <!-- 热部署模块 -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-devtools</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. <configuration>
  48. <executable>true</executable>
  49. </configuration>
  50. <executions>
  51. <execution>
  52. <goals>
  53. <goal>repackage</goal>
  54. </goals>
  55. <configuration>
  56. <classifier>exec</classifier>
  57. </configuration>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>