This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <classpath> | |
| <classpathentry kind="src" path="src/main/resources"/> | |
| <classpathentry kind="src" path="src/main/java"/> | |
| <classpathentry kind="src" output="target/test-classes" path="src/test/java"/> | |
| <classpathentry kind="src" path="src/test/resources"/> | |
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | |
| <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> | |
| <classpathentry kind="output" path="target/classes"/> | |
| </classpath> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This is a simple Spring Batch demo project that pulls data from a | |
| database and then outputs it to a flat file. It uses (Hibernate) JPA | |
| and an embedded HSQL DB. Includes all dependencies in the a lib directory. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.springframework.amqp.rabbit.core; | |
| import static org.junit.Assert.assertEquals; | |
| import static org.junit.Assert.assertNotNull; | |
| import org.apache.commons.logging.Log; | |
| import org.apache.commons.logging.LogFactory; | |
| import org.junit.Assume; | |
| import org.junit.Before; | |
| import org.junit.Rule; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .classpath | |
| .project | |
| .settings | |
| target | |
| bin | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <classpath> | |
| <classpathentry kind="src" path="src/main/resources"/> | |
| <classpathentry kind="src" path="src/main/java"/> | |
| <classpathentry kind="src" output="target/test-classes" path="src/test/java"/> | |
| <classpathentry kind="src" path="src/test/resources"/> | |
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | |
| <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"> | |
| <attributes> | |
| <attribute name="org.eclipse.jst.component.nondependency" value=""/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| target | |
| bin | |
| .classpath | |
| .project | |
| .settings | |
| .springBeans | |
| .DS_Store | |
| *.sw* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| target | |
| activemq-data | |
| bin | |
| .settings | |
| .classpath | |
| .project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| target | |
| bin | |
| .settings | |
| .classpath | |
| .project | |
| derby* | |
| embedded* | |
| testcase.zip | |
| lib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| target | |
| bin | |
| .classpath | |
| .project | |
| .settings | |
| *.swp | |
| */src/main/java/META-INF | |
| nohup.out | |
| .idea | |
| *.iml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| if [ "$1" = "-h" -o "$1" = "--help" -o "$1" = "-?" ]; then | |
| echo 'Usage: $0 <directory>' | |
| echo ' Fix the WTP configuration in the specified directory and all subdirs.' | |
| echo ' Any file named .classpath is patched to remove excluding="**"' | |
| echo ' (useful for non wtp projects that were generated by m2e).' | |
| echo ' WTP JAR modules are detected by searching for' | |
| echo ' .settings/org.eclipse.wst.common.component in a non-war project.' | |
| echo ' JAR modules are patched to setup .project and .settings correctly' |
OlderNewer