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