Metawidget is proudly: Open Source (OSI) Friend of the JBoss Community

Download

Metawidget downloads are hosted on SourceForge.

There are three downloads: one containing binaries and documentation, another containing examples, and the third containing source code and tests.

Product Download Version Release Date  
Metawidget Binaries and Documentation 2.2 14 May 2012
Examples 2.2 14 May 2012
Source Code and Tests 2.2 14 May 2012

Maven

Alternatively, Metawidget binaries are deployed at http://repository.jboss.org/nexus/content/groups/public-jboss. Add the following repository definition to your pom.xml...

<repository>
   <id>jboss-public-repository-group</id>
   <url>http://repository.jboss.org/nexus/content/groups/public-jboss</url>
</repository>

...and add the dependency configuration as:

<dependency>
   <groupId>org.metawidget.modules</groupId>
   <artifactId>metawidget-all</artifactId>
   <version>2.2</version>
</dependency>

Thanks to JBoss for hosting.

Fine-grained Dependencies

If you need more control over how Metawidget is included in your application, fine-grained dependencies are also available. For example you can:

  • reduce the final size of your application by only including those Metawidget plugins for technologies you use; or
  • resolve class loading issues by including different parts of Metawidget for different application tiers

To use fine-grained dependencies, specify dependencies on a per-technology basis (instead of using metawidget-all). For example:

  • org.metawidget.modules.faces:metawidget-richfaces
  • org.metawidget.modules.swing:metawidget-beansbinding
  • org.metawidet.modules:metawidget-jpa

Maven will automatically drag in related dependencies for you, such as org.metawidget.modules:metawidget-core.

To browse all available fine-grained dependencies visit http://repository.jboss.org/nexus/content/groups/public-jboss/org/metawidget/modules.

Nightly Builds

Snapshot releases are deployed regularly to http://repository.jboss.org/nexus/content/repositories/snapshots. These nightly releases are not stable, and should not be used in production environments.