bhassene / simile-butterfly

Automatically exported from code.google.com/p/simile-butterfly
0 stars 0 forks source link

Butterfly.js missing in the built #6

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I detected that the core javascript controller is missing building the JAR.

Adding this to the pom.xml should fix the issue:

  <build>
    <sourceDirectory>src</sourceDirectory>
    <testSourceDirectory>tests/src</testSourceDirectory>
    <resources>
      <resource>
        <directory>src/edu/mit/simile/butterfly</directory>
        <targetPath>edu/mit/simile/butterfly</targetPath>
        <filtering>false</filtering>
        <includes>
          <include>Butterfly.js</include>
        </includes>
      </resource>
    </resources>
  </build>

Actually solved here: 
https://bitbucket.org/wikier/butterfly/changeset/b0b8deb0212f#chg_main/pom.xml_n
ewline28

Original issue reported on code.google.com by sergio@wikier.org on 4 Jul 2012 at 9:30