123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.0.2.RELEASE</version>
- </parent>
- <groupId>com.mofang.travel.marketing</groupId>
- <artifactId>marketing</artifactId>
- <packaging>pom</packaging>
- <version>0.0.1</version>
- <modules>
- <module>marketing-domain</module>
- <module>marketing-api</module>
- <module>marketing-base</module>
- </modules>
- <properties>
- <!--Spring-->
- <spring.boot.version>2.0.2.RELEASE</spring.boot.version>
- <!--Mybatis-->
- <mybatis-spring.version>1.1.1</mybatis-spring.version>
- <!--<pagehelper.version>4.1.6</pagehelper.version>-->
- <cat.version>3.0.0</cat.version>
- <!--基础工具包-->
- <fastjson.version>1.2.46</fastjson.version>
- <google.guava.version>20.0</google.guava.version>
- <dubbo.version>2.7.2</dubbo.version>
- <!-- apache commons补充包 -->
- <apache-commons-lang3.version>3.4</apache-commons-lang3.version>
- <!--编译选项-->
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.source>1.8</maven.compiler.source>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <version>0.0.1</version>
- </properties>
- <build>
- <finalName>marketing</finalName>
- <plugins>
- <!-- 要将源码放上去,需要加入这个插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <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>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|