User flicken - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T13:49:14Zhttp://stackoverflow.com/feeds/user/12880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1722179/can-eclipse-not-hard-code-eclipsehome-when-exporting-build-xml/1722652#17226521Answer by flicken for Can Eclipse not hard-code ECLIPSE_HOME when exporting build.xml?flicken2009-11-12T14:43:16Z2009-11-12T14:43:16Z<p>Alternatively, due to Ant's immutable properties, you can override the value of ECLIPSE_HOME on the command line:</p>
<pre><code>ant -DECLIPSE_HOME=c:/Eclipse/MyEclipseVersion build
</code></pre>
http://stackoverflow.com/questions/1668981/prolog-path-search-pointers/1669264#16692640Answer by flicken for Prolog Path Search Pointersflicken2009-11-03T18:27:59Z2009-11-03T19:07:20Z<p>The (a, c) is a compound term, you can access it in a predicate like this:</p>
<pre><code> my_predicate((A, B)) :-
print(A),
print(B).
</code></pre>
http://stackoverflow.com/questions/1661070/eclipse-plug-in-finding-source-parts-location/1661304#16613041Answer by flicken for Eclipse plug-in - Finding source parts locationflicken2009-11-02T13:22:26Z2009-11-02T13:22:26Z<p>You want to modify <a href="http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation%5FAST/index.html" rel="nofollow">Abstract Syntax Tree</a> (AST). </p>
http://stackoverflow.com/questions/1637931/system-properties-cant-be-resolved-in-spring-xml-using-maven/1645653#16456533Answer by flicken for System properties can't be resolved in Spring XML using Mavenflicken2009-10-29T18:24:51Z2009-10-29T18:36:25Z<p>This is a known bug in the Surefire plugin 2.4.3. For details, see JIRA issue "<a href="http://jira.codehaus.org/browse/SUREFIRE-121" rel="nofollow">System properties set on the command line get clobbered</a>". Use the previous version, 2.4.2 instead:</p>
<pre><code><build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- Use 2.4.2 because 2.4.3 has bug with system properties
see http://jira.codehaus.org/browse/SUREFIRE-121 -->
<version>2.4.2</version>
</plugin>
</plugins>
</build>
</code></pre>
http://stackoverflow.com/questions/1643521/java-processbuilder-external-process-hangs/1643553#16435530Answer by flicken for Java ProcessBuilder: external process hangsflicken2009-10-29T13:00:55Z2009-10-29T13:00:55Z<p>Just a guess, but have you tried un-combining the error and output streams?</p>
http://stackoverflow.com/questions/1586197/list-of-relevant-rpc-protocols/1586345#15863452Answer by flicken for List of relevant RPC Protocolsflicken2009-10-18T23:38:51Z2009-10-19T12:35:20Z<ul>
<li><a href="http://en.wikipedia.org/wiki/Hessian%5F%28web%5Fservice%5Fprotocol%29" rel="nofollow">Hessian</a></li>
<li><a href="http://www.caucho.com/resin-3.0/protocols/burlap.xtp" rel="nofollow">Burlap</a></li>
</ul>
http://stackoverflow.com/questions/1537075/rails-personal-message-plugin/1537185#15371850Answer by flicken for Rails Personal Message Pluginflicken2009-10-08T11:22:12Z2009-10-08T11:22:12Z<p>One option: use <a href="http://www.philsergi.com/2007/10/actsasmessageable-plugin-released%5F04.html" rel="nofollow">acts_as_messageable</a>, and send the notification e-mail in the callback method <code>Message#on_deliver</code>.</p>
http://stackoverflow.com/questions/1480140/calling-a-method-on-an-object-the-type-of-which-i-dont-know/1480212#14802121Answer by flicken for Calling a method on an object the type of which I don't knowflicken2009-09-26T01:46:42Z2009-09-26T01:46:42Z<p>Use < ? extends Object></p>
<pre><code> public class ListPostProcessor implements PostProcessor<List<? extends Object>> {
...
}
</code></pre>
http://stackoverflow.com/questions/1389081/what-does-the-operator-stands-for-in-ruby/1389109#13891096Answer by flicken for What does the operator ||= stands for in ruby?flicken2009-09-07T12:12:46Z2009-09-07T12:12:46Z<p>From the question <a href="http://stackoverflow.com/questions/613985/common-ruby-idioms">Common Ruby Idioms</a>:</p>
<blockquote>
<p>is equivalent to</p>
</blockquote>
<pre><code> if a == nil || a == false
a = b
end
</code></pre>
http://stackoverflow.com/questions/1376704/help-me-convert-to-java-code/1376729#13767294Answer by flicken for Help me convert to java codeflicken2009-09-04T00:53:15Z2009-09-04T00:53:15Z<p>You should use the existing Java classes <a href="http://java.sun.com/javase/6/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a> and/or <a href="http://java.sun.com/javase/6/docs/api/java/math/BigDecimal.html" rel="nofollow">BigDecimal</a>.</p>
http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven0Starting external process during integration testing in mavenflicken2008-10-06T18:35:50Z2009-06-25T16:54:15Z
<p>I want completely automated integration testing for a Maven project. The integration tests require that an external (platform-dependent) program is started before running. Ideally, the external program would be killed after the unit tests are finished, but is not necessary. </p>
<p>Is there a Maven plugin to accomplish this? Other ideas?</p>
http://stackoverflow.com/questions/174560/sharing-test-code-in-maven7Sharing Test code in Mavenflicken2008-10-06T14:38:27Z2009-06-24T20:14:01Z
<p>How can you depend on test code from another module in Maven? </p>
<p>Example, I have 2 modules:</p>
<ul>
<li>Base</li>
<li>Main</li>
</ul>
<p>I would like a test case in Main to extend a base test class in Base. Is this possible?</p>
<p>Update: Found an <a href="http://stackoverflow.com/questions/174560/sharing-test-code-in-maven#174670">acceptable answer</a>, which involves creating a test jar.</p>
http://stackoverflow.com/questions/996093/how-to-automatically-generate-comments-for-getter-setter-based-on-field-comments/996439#9964390Answer by flicken for How to automatically generate comments for getter/setter based on field comments in Eclipse?flicken2009-06-15T14:32:06Z2009-06-15T14:32:06Z<p>The <a href="http://plugins.intellij.net/plugin/?id=54" rel="nofollow" title="JavadocWriter">JavadocWriter</a> plugin for IntelliJ IDEA says it does a "smart copy the javadoc from field to accessor". Caveat utilitor: I haven't tried the plugin myself, and it hasn't been updated in 3 years.</p>
http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#8431930Answer by flicken for translating blocks and statements for a DSLflicken2009-05-09T12:13:38Z2009-05-09T12:13:38Z<blockquote>
<p>Here, t is not a ruby variable and
thus the block can't (and must not!)
be evaluated by Ruby.</p>
</blockquote>
<p>Any reason for the "not evaluated" restriction? It seems like <a href="http://www.ruby-doc.org/core/classes/Kernel.html#M005951" rel="nofollow">method_missing</a> would elegantly handle evaluating the "missing" <code>t</code> variable, but Ruby would automatically dereference the <code>x</code> variable.</p>
http://stackoverflow.com/questions/826210/get-class-name-from-activerecord-object/826227#82622713Answer by flicken for Get class name from ActiveRecord objectflicken2009-05-05T18:15:23Z2009-05-05T18:21:23Z<p>You want to call <a href="http://www.ruby-doc.org/core/classes/Module.html#M001699" rel="nofollow">.name</a> on the object's class:</p>
<pre><code>result.class.name
</code></pre>
http://stackoverflow.com/questions/813452/in-spring-config-can-i-define-object-of-type-string/813690#8136902Answer by flicken for in Spring.config, can I define object of type string?flicken2009-05-01T23:23:34Z2009-05-01T23:23:34Z<p>Use Spring's built-in <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html" rel="nofollow">PropertyPlaceholdConfigurer</a>:</p>
<pre><code><bean id="PropertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
<property name="location" value="classpath*:/application.properties"/>
</bean>
<bean id="Someobject" class="somepackage.Sometype">
<property name="connectionString" value="${mydb}"/>
</bean>
</code></pre>
<p>Setting <code>SYSTEM_PROPERTIES_MODE_OVERRIDE</code> allows overriding the property via the command line.</p>
http://stackoverflow.com/questions/804247/java-cyclic-generic-type-relation-doesnt-allow-cast-from-supertype-javac-bug/804303#8043030Answer by flicken for Java: Cyclic generic type relation doesn't allow cast from supertype (javac bug).flicken2009-04-29T21:14:00Z2009-04-29T21:14:00Z<p>I've ended up using non-generics for this:</p>
<pre><code> @Test
public void test() {
ISpace spaceSupertype = new Space();
IAtom atomSupertype = new Atom();
Space space = (Space) spaceSupertype; // ok
Atom atom = (Atom) atomSupertype; // ok
}
</code></pre>
http://stackoverflow.com/questions/788689/ruby-metaprogramming-online-tutorial/788739#7887391Answer by flicken for Ruby metaprogramming online tutorialflicken2009-04-25T11:28:54Z2009-04-25T11:28:54Z<p>Here is a nice overview: <a href="http://ola-bini.blogspot.com/2006/09/ruby-metaprogramming-techniques.html" rel="nofollow">http://ola-bini.blogspot.com/2006/09/ruby-metaprogramming-techniques.html</a></p>
http://stackoverflow.com/questions/741687/detecting-conflicts-in-recurring-events/741773#7417730Answer by flicken for detecting conflicts in recurring eventsflicken2009-04-12T13:28:50Z2009-04-12T13:58:47Z<p>Assuming the recurrences are sortable, you can sort them in O(n*log(n), and only compare to neighboring events. Here's a start:</p>
<pre><code>def conflicts?(other)
conflicts = 0
# Generate all recurrences and sort
all_recurrences = recurrences + other.recurrences
all_recurrences.sort!
# Keep track of what immediate neighbors could be conflicting
conflicting = []
all_recurrences.each do |my_rec|
conflicting.each do |other_rec| do
start, finish = other_rec.first, other_rec.last
if my_rec.include?(start) || my_rec.include?(finish) then
# TODO update conflicting array: add my_rec + other_rec if conflicting
conflicts += 1
else
# TODO remove other_rec if not conflicting
end
end
end
conflicts > 0
end
</code></pre>
http://stackoverflow.com/questions/732522/how-do-you-compare-2-items-in-a-generic-list/732542#7325424Answer by flicken for How do you compare 2 items in a generic list?flicken2009-04-09T02:10:44Z2009-04-09T02:10:44Z<p>Look into the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Comparator.html" rel="nofollow">Comparator</a> and <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Comparable.html" rel="nofollow">Comparable</a> interfaces. </p>
<p>Your sort method should take <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Comparator.html" rel="nofollow">Comparator</a> or you should specify < T extends Comparable > so that the Comparable interface can be used. </p>
<pre><code>public void sort(Comparable<T> comparator) {
sort(SortType.MERGE, comparator);
}
....
private LList<T> merge(LList<T> first, LList<T> second) {
...
if(comparator.compare(first.headNode.data, second.headNode.data) < 0) {
...
}
</code></pre>
http://stackoverflow.com/questions/720224/providing-simple-address-driving-directions-with-google-maps/721274#7212742Answer by flicken for Providing simple address/driving directions with Google Mapsflicken2009-04-06T12:47:43Z2009-04-06T12:47:43Z<p>You don't need to use the API for this. You can send a query directly to a Google maps object in an iframe.</p>
<p>For example, to show the White House:</p>
<pre><code> <iframe src="http://maps.google.com/maps?geocode=&q=1600%20Pennsylvania%20Avenue%20NW,%20washington,%20DC" width="100%" height="300" >
<p>Your browser does not support iframes.</p>
</iframe>
</code></pre>
<p>The resulting map has a single address marker which allows the user to get directions.</p>
http://stackoverflow.com/questions/686635/is-it-possible-to-have-multiple-propertyplaceholderconfigurer-in-my-applicationco/688346#6883464Answer by flicken for Is it possible to have multiple PropertyPlaceHolderConfigurer in my applicationContext?flicken2009-03-27T02:47:05Z2009-03-27T02:47:05Z<p>Yes you can do more than one. Be sure to set <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html#setIgnoreUnresolvablePlaceholders(boolean)" rel="nofollow">ignoreUnresolvablePlaceholders</a> so that the first will ignore any placeholders that it can't resolve.</p>
<pre><code><bean id="ppConfig1" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true"/>
<property name="locations">
<list>
<value>classpath*:/my.properties</value>
</list>
</property>
</bean>
<bean id="ppConfig2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="false"/>
<property name="locations">
<list>
<value>classpath*:/myOther.properties</value>
</list>
</property>
</bean>
</code></pre>
<p>Depending on your application, you should investigate systemPropertiesMode, it allows you to load properties from a file, but allow the system properties to override values in the property file if set.</p>
http://stackoverflow.com/questions/422848/ant-how-to-modify-java-library-path-in-a-buildfile/674411#6744110Answer by flicken for ANT: How to modify java.library.path in a buildfileflicken2009-03-23T17:32:10Z2009-03-23T17:32:10Z<p>If you really want to change a property, you can do this in a Java task or in a scripting language. </p>
<p>Here is an example using Groovy:</p>
<pre><code><?xml version="1.0"?>
<project name="example" default="run">
<taskdef name="groovy"
classname="org.codehaus.groovy.ant.Groovy"
classpath="lib/groovy-all-1.1-rc-1.jar"/>
<target name="run">
<echo>java.library.path = ${java.library.path}</echo>
<groovy>
properties["java.library.path"] = "changed"
</groovy>
<echo>java.library.path = ${java.library.path}</echo>
</target>
</project>
</code></pre>
<p>Caution, this violates Ant's "immutable property" property. Use at your own risk.</p>
http://stackoverflow.com/questions/674276/how-do-you-access-ant-properties-from-within-a-shellscript-task/674313#6743131Answer by flicken for How do you access ant properties from within a shellscript task?flicken2009-03-23T17:14:16Z2009-03-23T17:14:16Z<p>According to the <a href="http://ant-contrib.sourceforge.net/tasks/tasks/shellscript.html" rel="nofollow">shellscript documentation</a>:</p>
<blockquote>
<p>Embedded ant properties will be
converted.</p>
</blockquote>
<p>So you can use the ${variable} notation:</p>
<pre><code><shellscript shell="bash" dir="${build.dir}">
echo "Version: ${version}"
</shellscript>
</code></pre>
http://stackoverflow.com/questions/669271/what-is-the-difference-between-the-template-and-the-strategy-pattern/669306#6693062Answer by flicken for What is the difference between the template and the strategy pattern?flicken2009-03-21T13:32:43Z2009-03-21T13:32:43Z<p>Inheritance versus aggregation (is-a versus has-a). It's two ways to achieve the same goal. </p>
<p>This question shows some of trade-offs between choices: <a href="http://stackoverflow.com/questions/269496/inheritance-vs-aggregation">http://stackoverflow.com/questions/269496/inheritance-vs-aggregation</a></p>
http://stackoverflow.com/questions/515575/limit-map-key-and-value-types-more-complicated/515743#5157431Answer by flicken for limit map key and value types - more complicatedflicken2009-02-05T12:38:47Z2009-02-05T16:29:53Z<p>You can extract a method to get the validator. All access to the <code>validators</code> Map is through type-checked method, and are thus type-safe.</p>
<pre><code> protected <A extends Annotation> AnnotatedFieldValidator<A> getValidator(A a) {
// unchecked cast, but isolated in method
return (AnnotatedFieldValidator<A>) validators.get(a);
}
public void validate(Object o) {
Object target = null;
Field[] fields = getAllFields(o.getClass());
for (Field field : fields) {
for (Annotation a : field.getAnnotations()) {
AnnotatedFieldValidator<Annotation> validator = getValidator(a);
if (validator != null) {
validator.validate(field, a, target);
}
}
}
}
// Generic map
private Map<Class<? extends Annotation>, AnnotatedFieldValidator<? extends Annotation>> validators;
</code></pre>
<p>(Removed second suggestion as duplicate.)</p>
http://stackoverflow.com/questions/364523/is-there-a-general-backend-library-for-java-reflection/365724#3657240Answer by flicken for Is there a general "backend" library for Java reflectionflicken2008-12-13T21:00:01Z2008-12-13T21:00:01Z<p>Try the <a href="http://fest.easytesting.org/reflect/wiki/pmwiki.php" rel="nofollow">FEST Reflection</a> module. It's a fluent way to do Java reflection. For example:</p>
<pre><code> String name = method("get").withReturnType(String.class)
.withParameterTypes(int.class)
.in(names)
.invoke(8);
</code></pre>
http://stackoverflow.com/questions/350620/how-do-i-use-a-variable-in-a-grep-with-groovy/351238#3512380Answer by flicken for How do I use a variable in a grep with groovy?flicken2008-12-08T22:49:08Z2008-12-08T22:49:08Z<p>You need {}'s around the variable expression. That is:</p>
<pre><code> "${l.get(0)}"
</code></pre>
<p>See <a href="http://groovy.codehaus.org/JN1525-Strings" rel="nofollow">Groovy String</a> documentation for more information. </p>
<p>Full example:</p>
<pre><code>List l = new ArrayList{a@yahoo.com, b@gmail.com}
def gmail = ['sh','-c','grep "clientLogin="${l.get(0)} file.txt' | grep gmail | wc -l ]
def yahoo = ['sh','-c','grep "clientLogin="${l.get(1)} file.txt' | grep yahoo| wc -l ]
</code></pre>
http://stackoverflow.com/questions/273662/building-with-ant-dynamic-build-options/275622#2756221Answer by flicken for Building with ant : dynamic build options?flicken2008-11-09T04:58:20Z2008-11-09T04:58:20Z<p>You can override ant properties from the command line. </p>
<pre><code>ant -Dinstall.location=/bob1 install
</code></pre>
<p>See <a href="http://ant.apache.org/manual/running.html" rel="nofollow">Running Ant</a> for more information.</p>
http://stackoverflow.com/questions/218813/jmock-mocking-a-static-method/218870#2188701Answer by flicken for jmock mocking a static methodflicken2008-10-20T15:43:22Z2008-10-20T15:43:22Z<p>See related question <a href="http://stackoverflow.com/questions/153048/how-to-mock-with-static-methods">How to mock with static methods</a>. </p>
http://stackoverflow.com/questions/1393842/starting-an-external-program-in-java-and-piping-its-output/1393891#1393891Comment by flicken on Starting an external program in Java and piping it's outputflicken2009-09-08T13:06:49Z2009-09-08T13:06:49ZYou presumably mean #exec(String): <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runtime.html#exec(java.lang.String" rel="nofollow">java.sun.com/j2se/1.5.0/…</a>)http://stackoverflow.com/questions/896255/java-classloading-running-extremely-slowComment by flicken on Java classloading running extremely slow?flicken2009-05-22T04:48:45Z2009-05-22T04:48:45ZIs the real "Foo" in a package? Loading from the default package (no package) can have strange effects. Try moving to foo.Foo.http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843544#843544Comment by flicken on translating blocks and statements for a DSLflicken2009-05-09T16:29:59Z2009-05-09T16:29:59ZThe OP also wants unbound variables, like 't' in the original example, so you'd have to catch NameError exceptions.http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#843193Comment by flicken on translating blocks and statements for a DSLflicken2009-05-09T16:27:00Z2009-05-09T16:27:00ZNevermind, Justin Love beat me to it.http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#843193Comment by flicken on translating blocks and statements for a DSLflicken2009-05-09T16:26:02Z2009-05-09T16:26:02ZMakes sense. Instead, use Kernel#bindings to dereference any variable. I'll post another answer with details.http://stackoverflow.com/questions/690155/tutorial-on-jpa-mapping-file/690307#690307Comment by flicken on Tutorial on JPA mapping fileflicken2009-03-27T15:59:13Z2009-03-27T15:59:13ZSecond link is broken. Link: <a href="http://schuchert.wikispaces.com/JPA+Tutorial+1+-+Getting+Started" rel="nofollow">schuchert.wikispaces.com/JPA+Tutorial+1+-+Getting…</a>http://stackoverflow.com/questions/673962/does-anyone-know-how-to-extract-a-date-from-a-record-in-java/674076#674076Comment by flicken on Does anyone know how to extract a date from a record in java?flicken2009-03-23T17:11:16Z2009-03-23T17:11:16ZFor date parsing/extracting, use JodaTime: <a href="http://joda-time.sourceforge.net/" rel="nofollow">joda-time.sourceforge.net</a>http://stackoverflow.com/questions/515575/limit-map-key-and-value-types-more-complicated/516085#516085Comment by flicken on limit map key and value types - more complicatedflicken2009-02-05T16:38:56Z2009-02-05T16:38:56ZGlad you found an acceptable solution. I prefer extracting the getValidator method, because it encapsulates access to the validators Map. However, yours looks more elegant at the top-level validate method.http://stackoverflow.com/questions/370695/java-listener-inheritanceComment by flicken on Java Listener inheritanceflicken2009-01-29T13:59:26Z2009-01-29T13:59:26ZSide note: a ConcurrentModificationException can occur in the fireXXX methods unless you synchronize those as well (expensive!). For typical use cases, it's faster and less error-prone to use java.util.concurrent.CopyOnWriteArrayList for your listener list so that synchronization is unnecessary.http://stackoverflow.com/questions/229856/ways-to-save-enums-in-database/229919#229919Comment by flicken on Ways to save enums in databaseflicken2008-10-23T21:45:40Z2008-10-23T21:45:40Z@anonymousstackoverflowuser.openid.org: See <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Enum.html#name" rel="nofollow">java.sun.com/j2se/1.5.0/…</a>()http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218135#218135Comment by flicken on What was the strangest coding standard rule that you were forced to follow?flicken2008-10-20T15:48:17Z2008-10-20T15:48:17ZSee this Joel on Software post about how <i>proper</i> use of Hungarian notation can help reduce bugs: <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">joelonsoftware.com/articles/Wrong.html</a>http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203463#203463Comment by flicken on What things didn't you know you needed but are now very glad you have?flicken2008-10-16T14:20:55Z2008-10-16T14:20:55ZEclipse has "Drop to Frame", which backs up to the start of the current method (or any other method in the call stack). With small enough methods, the amount of forward stepping is minimal. http://stackoverflow.com/questions/198831/activerecord-association-question-getting-hasmany-through-to-work/199830#199830Comment by flicken on Activerecord association question: getting has_many :through to workflicken2008-10-14T14:17:57Z2008-10-14T14:17:57ZEnsure you use 'uniq' after 'flatten', so you don't get duplicate coaches.http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven/175664#175664Comment by flicken on Starting external process during integration testing in mavenflicken2008-10-06T19:24:00Z2008-10-06T19:24:00ZCommands are project-specific executables, so a generic 'execute' plugin would be necessary. http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven/175664#175664Comment by flicken on Starting external process during integration testing in mavenflicken2008-10-06T19:02:38Z2008-10-06T19:02:38ZAn interesting, non-intuitive use of the antrun plugin. I was hoping for something cleaner, but this just might work for me.