123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?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>com.fdkk</groupId>
- <artifactId>changeing</artifactId>
- <version>1.0.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <groupId>com.fdkk</groupId>
- <artifactId>sxz-application</artifactId>
- <version>1.0.0</version>
- <name>sxz-application</name>
- <description>sxz-application</description>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>com.fdkk</groupId>
- <artifactId>sxz-modules</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkk</groupId>
- <artifactId>sxz-base</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkk</groupId>
- <artifactId>sxz-common</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.fdkk</groupId>
- <artifactId>sxz-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- </properties>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <package.environment>dev</package.environment>
- </properties>
- </profile>
- <profile>
- <id>uat</id>
- <properties>
- <package.environment>uat</package.environment>
- </properties>
- </profile>
- <profile>
- <id>devuat</id>
- <properties>
- <package.environment>devuat</package.environment>
- </properties>
- </profile>
- <profile>
- <!-- 生产环境 -->
- <id>prod</id>
- <properties>
- <package.environment>prod</package.environment>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- </profiles>
- <build>
- <finalName>changeing</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!-- 指定该Main Class为全局的唯一入口 -->
- <mainClass>com.fdkk.sxz.ChangeingApplication</mainClass>
- <fork>true</fork>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|