DownloadMetawidget 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.
MavenAlternatively, 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.0</version> </dependency> Thanks to JBoss for hosting. Fine-grained DependenciesIf you need more control over how Metawidget is included in your application, fine-grained dependencies are also available. For example you can:
To use fine-grained dependencies, specify dependencies on a per-technology basis (instead of using metawidget-all). For example:
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 BuildsSnapshot 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. |