| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway</artifactId>
- <version>2.2.2.0-SNAPSHOT</version>
- </parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-lanucher</artifactId>
- <version>2.2.2.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-controller</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-nacos-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-safety-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <excludes>
- <exclude>application-dev.properties</exclude>
- <exclude>application-hospital.properties</exclude>
- <exclude>application-test.properties</exclude>
- </excludes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.2.7.RELEASE</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <skip>false</skip>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <descriptors>
- <descriptor>src/assembly/assembly.xml</descriptor>
- </descriptors>
- <finalName>${project.name}</finalName>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create-timestamp</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <goals>
- <goal>create-timestamp</goal>
- </goals>
- </execution>
- </executions>
- <inherited>false</inherited>
- <configuration>
- <timestampFormat>yyyyMMddHHmm</timestampFormat>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|