1234567891011121314151617181920212223242526272829303132333435 |
- <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-pom</artifactId>
- <version>1.1.4</version>
- <relativePath />
- </parent>
- <artifactId>platomix-gmetry-bi</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
-
- <modules>
- <module>platomix-gmetry-bi-api</module>
- <module>platomix-gmetry-bi-client</module>
- </modules>
- <repositories>
- <repository>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>https://maven.aliyun.com/repository/public/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>platomix-release</id>
- <name>NexusReleases</name>
- <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
- </repository>
- </repositories>
- </project>
|