mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-24 18:04:01 +00:00
adding okhttp metrics, split bot service into multiple services (guild, message), unified some places that services are used in order to interact with the api, and not directly the objects (this is to make it easier for metric to be accurate)
23 lines
785 B
XML
23 lines
785 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>
|
|
<groupId>dev.sheldan.abstracto</groupId>
|
|
<artifactId>abstracto-application</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>dev.sheldan.abstracto.core</groupId>
|
|
<artifactId>core</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>core-interface</module>
|
|
<module>core-impl</module>
|
|
<module>metrics-interface</module>
|
|
<module>metrics-impl</module>
|
|
</modules>
|
|
|
|
|
|
</project> |