INTSAMPLES-96 - Polish SI Cafe Sample

This commit is contained in:
Gunnar Hillert
2012-10-16 01:28:40 -04:00
parent 074383ce55
commit f4e3c836cf

View File

@@ -21,4 +21,29 @@
the components, see the AMQP or the JMS sample.
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>org.springframework.integration.samples.cafe.xml.CafeDemoApp</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>