pom.xml 2.7 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. <parent>
  4. <artifactId>MicroCommunity</artifactId>
  5. <groupId>com.java110</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>service-store</artifactId>
  10. <packaging>jar</packaging>
  11. <name>service-store</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.java110</groupId>
  19. <artifactId>java110-service</artifactId>
  20. </dependency>
  21. <!--<dependency>
  22. <groupId>org.flowable</groupId>
  23. <artifactId>flowable-spring-boot-starter</artifactId>
  24. </dependency>-->
  25. </dependencies>
  26. <build>
  27. <finalName>service-store</finalName>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-dependency-plugin</artifactId>
  32. <version>2.10</version>
  33. <executions>
  34. <execution>
  35. <id>unpack</id>
  36. <phase>generate-resources</phase>
  37. <goals>
  38. <goal>unpack</goal>
  39. </goals>
  40. <configuration>
  41. <artifactItems>
  42. <artifactItem>
  43. <groupId>com.java110</groupId>
  44. <artifactId>java110-interface</artifactId>
  45. <version>${microcommunity.version}</version>
  46. <type>jar</type>
  47. <overWrite>true</overWrite>
  48. <outputDirectory>${project.build.directory}/classes</outputDirectory>
  49. </artifactItem>
  50. </artifactItems>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <configuration>
  59. <mainClass>com.java110.store.StoreServiceApplicationStart</mainClass>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>