12345678910111213141516171819202122232425262728293031 |
- <?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">
- <parent>
- <artifactId>face-admin</artifactId>
- <groupId>com.pj</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>business-system</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>alarm-system</module>
- <module>venues-system</module>
- <module>filing-system</module>
- <module>face-identify</module>
- <module>car-identify</module>
- <module>epidemic-prevention</module>
- <module>monitor-system</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>com.pj</groupId>
- <artifactId>sp-core</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- </dependencies>
- </project>
|