23 lines
973 B
XML
23 lines
973 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" xmlns:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
|
|
<context:component-scan base-package="org.april.hebdobot" />
|
|
|
|
<bean id="properties"
|
|
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
|
|
<property name="properties">
|
|
<props>
|
|
<prop key="file.suffix">revue.txt</prop>
|
|
</props>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="userAliases" class="org.april.hebdobot.xml.UserAlias">
|
|
<constructor-arg name="source" value="classpath:/org/april/hebdobot/users.xml" />
|
|
</bean>
|
|
|
|
<bean id="bot" class="org.april.hebdobot.irc.BotTest.BotMock" />
|
|
</beans>
|