123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.mofang.travel.marketing</groupId>
- <artifactId>marketing</artifactId>
- <version>0.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.mofang.travel.marketing</groupId>
- <artifactId>marketing-api</artifactId>
- <version>${version}</version>
- <dependencies>
- <dependency>
- <groupId>com.mofang.travel.marketing</groupId>
- <artifactId>marketing-domain</artifactId>
- <version>${version}</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>marketing-api</finalName>
- <plugins>
- <!-- 要将源码放上去,需要加入这个插件 -->
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1</version>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|