-
components.xml lists copy-resources as being executed as part of the process-resources phase, whereas CopyResourcesMojo.java has an annotation of @phase generate-resources. I'm not sure what, if any, impact this has. I think process-resources is the correct phase, in the spirit of Maven, FWIW.
2009-10-06 21:27:30 UTC in Maven Erlang plugin
-
Add an eval goal to the erlang-plugin. Useful for generating sources, resources. "patch" attached; EvalMojo, EvalMojoTest, eval-config.xml.
2009-09-25 12:20:56 UTC in Maven Erlang plugin
-
I'm not sure that's what adamselene is getting at; sounds to me more like the erlang distros themselves, packaged as Maven dependencies. It'd be easy enough to do, since Maven knows where the local repository lives and the maven-erlang plugin could therefore easily obtain a path to the Erlang erl/erlc binaries. It would also make it somewhat easier to package applications as standalone bundles...
2009-09-25 12:11:23 UTC in Maven Erlang plugin
-
Implement a format function, possibly using erl_tidy:file/2 + erl_tidy:module/2 + erl_prettypr:format/2.
Default key shortcut is usually Ctrl-Shift-F in Eclipse.
2009-07-03 04:24:13 UTC in Erlang IDE @ Eclipse
-
This works a treat for Jetty6 as well; it really should be put into the codebase.
This issue is also raised in http://sourceforge.net/forum/message.php?msg_id=4000087.
Cheers,
Guenther.
2008-01-22 22:08:39 UTC in AjaxAnywhere
-
+1 to generate source and javadoc along with the jar, it's very handy when using eclipse and the m2eclipse maven plugin.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>...
2008-01-02 00:53:40 UTC in Unitils
-
Hi Tim,
Would it be feasible to release a snapshot with this fix?
Cheers,
Guenther.
2007-10-17 23:47:10 UTC in Unitils
-
Ah, I found it; in the tutorial, "if you explicitly want to specify a null value, you can do so by using the value [null].".
It'll be a bit tedious fixing my datasets, but workable.
Thanks, Guenther.
2007-09-13 05:10:19 UTC in Unitils
-
Hi,
Moving from rc-3 to rc-4, some of my datasets are breaking.
Say I have an Address table with a nullable City column; if I have a dataset with one Address entry with the City given and another Address entry with the City omitted, the latter entry will fail with:
org.unitils.core.UnitilsException: Error inserting test data from DbUnit dataset for method public void...
2007-09-11 00:22:32 UTC in Unitils
-
Hi,
I asked the same question in the post '@DataSet vs @Before'.
If you're only using class-level @DataSet, you could replace it with a call to DBUnitUnitils.insertDataSet(...) in your @Before method.
Regards,
Guenther.
2007-09-11 00:07:17 UTC in Unitils