Emmanuel BENOîT
6dcd59d7bc
* Added legacyworlds-server-beans-technologies Maven module, including the player-level DAO and controller. * Added session classes to carry technology information, modified web client session façade accordingly * Various changes to common UI elements (forms, lists, etc...) so the start and end of some element can be drawn separately * Added controller, templates and JavaScript for research page
26 lines
No EOL
956 B
XML
26 lines
No EOL
956 B
XML
<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>
|
|
<artifactId>legacyworlds-server-beans</artifactId>
|
|
<groupId>com.deepclone.lw</groupId>
|
|
<version>1.0.0</version>
|
|
<relativePath>../legacyworlds-server-beans/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>legacyworlds-server-beans-technologies</artifactId>
|
|
<name>Legacy Worlds - Server - Components - Technologies</name>
|
|
<version>${legacyworlds.version.main}.${legacyworlds.version.release}-${legacyworlds.version.build}</version>
|
|
<description>This module contains the components which manage and access in-universe technologies.</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |