mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 13:47:09 +00:00
* (improvement)(headless) Add headless-api module * (improvement)(headless) Change old headless-api module to headless-common --------- Co-authored-by: jolunoluo <jolunoluo@tencent.com>
24 lines
735 B
XML
24 lines
735 B
XML
<?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>supersonic</artifactId>
|
|
<groupId>com.tencent.supersonic</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>headless</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>common</module>
|
|
<module>model</module>
|
|
<module>query</module>
|
|
<module>materialization</module>
|
|
<module>api</module>
|
|
</modules>
|
|
|
|
</project>
|