History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: WW-1482
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Blocker Blocker
Assignee: tm_jee
Reporter: Konstantin Pribluda
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
WebWork

m2 build leaves all the html widgets out of jar

Created: 26/Sep/07 03:19 PM   Updated: 27/Sep/07 08:28 AM
Component/s: None
Affects Version/s: 2.2.7
Fix Version/s: 2.2.7

File Attachments: 1. Text File pom.patch (0.5 kb)


Flags: Patch


 Description  « Hide
Current pom excludes all the htmls from resulting jar.
This is uncool and puts ajax theme almost out of order.

patch attached

 All   Comments   Change History      Sort Order:
Konstantin Pribluda - [26/Sep/07 03:20 PM ]
this patch allows .html in resulting jar
( may need some tuning though )

tm_jee - [27/Sep/07 08:28 AM ]
Hi Konstantin,

Thanks for reporting this, Its fixed in SVN trunk 2958.

excludes in pom.xml now looks like

<resources>
  <directory>src/java</directory>
  <includes>
      <include>**/*</include>
  </includes>
  <excludes>
      <exclude>**/*.java</exclude>
      <exclude>**/package.html</exclude>
      <exclude>**/release-notes.html</exclude>
      <exclude>**/*overview.html</exclude>
  </excludes>
</resources>