1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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>com.xhkjedu</groupId>
- <artifactId>cloud-schoolapi</artifactId>
- <version>1.0-SNAPSHOT</version>
-
- <packaging>pom</packaging>
-
- <modules>
- <module>gateway</module>
- <module>register</module>
- <module>config</module>
- <module>suser</module>
- <module>sclass</module>
- <module>slive</module>
- <module>sstudy</module>
- <module>sapi</module>
- <module>scommons</module>
- <module>sexam</module>
- </modules>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>gateway</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>register</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>config</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>suser</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>sclass</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>slive</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>sstudy</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>sapi</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>scommons</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xhkjedu</groupId>
- <artifactId>sexam</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|