You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.2 KiB

3 years ago
<?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>
<groupId>EmergencyServiceApi</groupId>
<artifactId>EmergencyServiceApi</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
2 years ago
<!-- <properties>-->
<!-- <java.version>11</java.version>-->
<!-- </properties>-->
3 years ago
<modules>
<module>EmergencyAuthServiceApi</module>
<module>emergencyCommonServiceApi</module>
<module>emergencyExcelServiceApi</module>
</modules>
<dependencies>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.21</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>EmergencyBaseLib</groupId>
<artifactId>EmergencyCommon</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
2 years ago
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
<!-- <compilerArgs>-->
<!-- <arg>-XDignore.symbol.file</arg>-->
<!-- </compilerArgs>-->
<!-- <fork>true</fork>-->
</configuration>
</plugin>
</plugins>
</build>
3 years ago
</project>