mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-03-19 12:11:39 +00:00
replaced HashMaps for templates with concrete models, so the interface is easier known added rendering method for objects directly added default parameters available for commands split up service beans for server/channel into management and service bean added server reference in AChannel refactored join/leave listener
29 lines
924 B
XML
29 lines
924 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.command</groupId>
|
|
<artifactId>command</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>command-base</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>utility</module>
|
|
<module>support</module>
|
|
<module>channels</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>dev.sheldan.abstracto.command</groupId>
|
|
<artifactId>command-int</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |