add api-generator module

This commit is contained in:
kirill.labutin 2026-01-12 18:21:34 +03:00
parent 7e52c4735f
commit 8a2d52b9d2
2 changed files with 22 additions and 0 deletions

21
api-generator/pom.xml Normal file
View File

@ -0,0 +1,21 @@
<?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>
<parent>
<groupId>ru.kirillius</groupId>
<artifactId>XCP</artifactId>
<version>1.0.0.0</version>
</parent>
<artifactId>api-generator</artifactId>
<dependencies>
<dependency>
<groupId>ru.kirillius</groupId>
<artifactId>rpc</artifactId>
<version>1.0.0.0</version>
</dependency>
</dependencies>
</project>

View File

@ -10,6 +10,7 @@
<packaging>pom</packaging>
<modules>
<module>api</module>
<module>api-generator</module>
<module>database</module>
<module>core</module>
<module>rpc</module>