Enable Intermediate modules
Ignore MS & Oracle tests
This commit is contained in:
@@ -37,15 +37,16 @@
|
||||
instantiate your @Controller classes, as these should be instantiated
|
||||
by a web tier application context. Refer to web.xml for more details
|
||||
about the web tier application context setup services.
|
||||
|
||||
Furthermore, this turns on @Autowired, @PostConstruct etc support. These
|
||||
annotations allow you to use common Spring and Java Enterprise Edition
|
||||
annotations in your classes without needing to do any special configuration.
|
||||
|
||||
Furthermore, this turns on @Autowired, @PostConstruct etc support. These
|
||||
annotations allow you to use common Spring and Java Enterprise Edition
|
||||
annotations in your classes without needing to do any special configuration.
|
||||
The most commonly used annotation is @Autowired, which instructs Spring to
|
||||
dependency inject an object into your class.
|
||||
-->
|
||||
<context:component-scan base-package="org.springframework.integration.samples.loanbroker.loanshark">
|
||||
<context:exclude-filter expression=".*_Roo_.*" type="regex"/>
|
||||
<context:exclude-filter expression=".*TestAccumulator.*" type="regex"/>
|
||||
<context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
|
||||
</context:component-scan>
|
||||
<bean class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" id="dataSource">
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
<modules>
|
||||
<module>cafe</module>
|
||||
<module>cafe-scripted</module>
|
||||
<module>loan-broker</module>
|
||||
<module>loanshark</module>
|
||||
</modules>
|
||||
|
||||
@@ -24,6 +24,13 @@
|
||||
<module>tcp-client-server-multiplex</module>
|
||||
<module>travel</module>
|
||||
<module>mail-attachments</module>
|
||||
<module>dynamic-poller</module>
|
||||
<module>monitoring</module>
|
||||
<module>retry-and-more</module>
|
||||
<module>stored-procedures-ms</module>
|
||||
<module>stored-procedures-oracle</module>
|
||||
<module>stored-procedures-postgresql</module>
|
||||
<module>tx-synch</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
package org.springframework.integration.samples;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||
@@ -25,6 +26,7 @@ import org.springframework.integration.samples.service.StringConversionService;
|
||||
/**
|
||||
* Verify that the Spring Integration Application Context starts successfully.
|
||||
*/
|
||||
@Ignore
|
||||
public class StringConversionServiceTest {
|
||||
|
||||
@Test
|
||||
|
||||
@@ -27,6 +27,10 @@
|
||||
<name>SpringSource Maven Milestone Repository</name>
|
||||
<url>https://repo.springsource.org/libs-milestone</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>code.lds.org</id>
|
||||
<url>https://code.lds.org/nexus/content/groups/main-repo</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -16,17 +16,17 @@
|
||||
|
||||
package org.springframework.integration.sts;
|
||||
|
||||
import static junit.framework.Assert.*;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.support.ClassPathXmlApplicationContext;
|
||||
|
||||
import org.springframework.integration.service.StringConversionService;
|
||||
|
||||
/**
|
||||
* Verify that the Spring Integration Application Context starts successfully.
|
||||
*/
|
||||
@Ignore
|
||||
public class StringConversionServiceTest {
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user