Struchkov Mark
9c4db3ff7a
Some checks failed
continuous-integration/drone/push Build is failing
# Conflicts: # bot-context/bot-context-main/pom.xml # bot-context/bot-context-quarkus/pom.xml # bot-context/bot-context-simple/pom.xml # bot-context/pom.xml # bot-core/bot-core-main/pom.xml # bot-core/bot-core-quarkus/pom.xml # bot-core/bot-core-simple/pom.xml # bot-core/pom.xml # bot-data/bot-data-main/pom.xml # bot-data/bot-data-quarkus/pom.xml # bot-data/bot-data-simple/pom.xml # bot-data/pom.xml # bot-domain/bot-domain-main/pom.xml # bot-domain/bot-domain-quarkus/pom.xml # bot-domain/bot-domain-simple/pom.xml # bot-domain/pom.xml # bot-exception/pom.xml # pom.xml
25 lines
910 B
XML
25 lines
910 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>dev.struchkov.godfather</groupId>
|
|
<artifactId>godfather-bot</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>bot-data</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>bot-data-main</module>
|
|
<module>bot-data-quarkus</module>
|
|
<module>bot-data-simple</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
</project> |