14 lines
706 B
XML
14 lines
706 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
|
<bean id="config" class="mc.core.embedded.ConfigFromSpring">
|
|
<property name="descriptionServer" value="MC Core"/>
|
|
<property name="maxPlayers" value="100"/>
|
|
<property name="faviconBase64" value="icon.png"/>
|
|
<property name="host" value="127.0.0.1"/>
|
|
<property name="port" value="25565"/>
|
|
</bean>
|
|
|
|
<bean id="server" class="mc.core.netty.NettyServer"/>
|
|
</beans> |