12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <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>
- <artifactId>healthy-frontend-java</artifactId>
- <groupId>com.xxh.cloud.frontend</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>healthy-frontend-app</artifactId>
- <packaging>jar</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.xxh.cloud.frontend</groupId>
- <artifactId>healthy-frontend-custuser</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.xxh.cloud.frontend</groupId>-->
- <!-- <artifactId>healthy-frontend-mq</artifactId>-->
- <!-- <version>${project.version}</version>-->
- <!-- </dependency>-->
- </dependencies>
- <build>
- <finalName>healthy-frontend-1.0.0</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <encoding>UTF-8</encoding>
- <compilerArguments>
- <verbose />
- <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
- </compilerArguments>
- </configuration>
- </plugin> -->
- </plugins>
- </build>
- </project>
|