Hi all,
Plugin: javascript-maven-plugin
Version: 1.0-alpha-1-SNAPSHOT
Problem: Assembler not working as expected.
Expected result: If I use the below file as an example, I would expect
to get abc.js + def.js = total.js.
Actual result: I get an empty total.js file.
<?xml version="1.0"?>
<assembler>
<scripts>
<script>
<fileName>total.js</fileName>
<includes>
<include>abc.js</include>
<include>def.js</include>
</includes>
</script>
</scripts>
</assembler>
Now if I change the assembler file to:
<?xml version="1.0"?>
<assembler>
<scripts>
<script>
<fileName>abc.js</fileName>
<includes>
<include>abc.js</include>
<include>def.js</include>
</includes>
</script>
</scripts>
</assembler>
I get an abs.js file with a blank line, then the contents of def.js added.
This isn't making sense to me and I never found anyone else reporting
any problems.
I searched online for help, and emailing you is my last resort. I
couldn't even find the source code listed on the javascript-maven-plugin
site. Is this no longer supported or perhaps another plugin has taken
its place?
Tim
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email