pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <groupId>com.mofang.travel.marketing</groupId>
  7. <artifactId>marketing</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.mofang.travel.marketing</groupId>
  12. <artifactId>marketing-api</artifactId>
  13. <version>${version}</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.mofang.travel.marketing</groupId>
  17. <artifactId>marketing-domain</artifactId>
  18. <version>${version}</version>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <finalName>marketing-api</finalName>
  23. <plugins>
  24. <!-- 要将源码放上去,需要加入这个插件 -->
  25. <plugin>
  26. <artifactId>maven-source-plugin</artifactId>
  27. <version>2.1</version>
  28. <configuration>
  29. <attach>true</attach>
  30. </configuration>
  31. <executions>
  32. <execution>
  33. <phase>compile</phase>
  34. <goals>
  35. <goal>jar</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>