- Revision
- 398
- Author
- mauro
- Date
- 2007-11-17 03:43:43 -0600 (Sat, 17 Nov 2007)
Log Message
Updated POMs and BUILD.txt to reflect new layout.
Modified Paths
Diff
Modified: trunk/BUILD.txt (397 => 398)
--- trunk/BUILD.txt 2007-11-17 09:25:45 UTC (rev 397) +++ trunk/BUILD.txt 2007-11-17 09:43:43 UTC (rev 398) @@ -4,29 +4,21 @@ Maven (http://maven.apache.org) required: 2.0.5+ JRuby (http://jruby.codehaus.org) required: 1.0+ -Build profiles: +Build profiles: -- default: builds core and extensions +- default: builds all releasable modules +- reporting: builds reports +- distribution: builds distribution +- integration: builds integration tests +- examples: builds examples +- nt: no-test, builds skipping unit tests +- jetty|tomcat|geronimo: set webapp.deploy.dir to the appropriate value -mvn install +Note: profiles are additive and the default profile is always active. +Eg, build with integration tests, reporting and distribution: -- acceptance: builds core, extensions and acceptance tests +mvn -Pintegration,reporting,dist install -mvn -Pacceptance install +Build and deploy examples to Jetty (skipping tests on releasable modules): -- examples: builds core, extensions and examples - -mvn -Pexamples install - -- reporting: builds all reports - -mvne -Preporting install - -- distribution: builds core, extensions and distribution - -mvn -Pdist install - -Note: profiles can be combined, eg to build with acceptance tests, reporting and distribution - -mvn -Pacceptance,reporting,dist install - +mvn -Pexamples,nt,jetty install
Modified: trunk/integration/waffle-taglib/pom.xml (397 => 398)
--- trunk/integration/waffle-taglib/pom.xml 2007-11-17 09:25:45 UTC (rev 397) +++ trunk/integration/waffle-taglib/pom.xml 2007-11-17 09:43:43 UTC (rev 398) @@ -7,8 +7,8 @@ <version>1.0-SNAPSHOT</version> </parent> <packaging>war</packaging> - <artifactId>waffle-acceptance</artifactId> - <name>Waffle Acceptance</name> + <artifactId>waffle-taglib-integration</artifactId> + <name>Waffle Taglib Integration</name> <dependencies> <dependency>
Modified: trunk/pom.xml (397 => 398)
--- trunk/pom.xml 2007-11-17 09:25:45 UTC (rev 397) +++ trunk/pom.xml 2007-11-17 09:43:43 UTC (rev 398) @@ -9,17 +9,17 @@ <name>Waffle</name> <description> Waffle is a Java action-based web framework that was built to support - enterprise-level web-based business applications, without having a mandatory + enterprise-level business applications, with no mandatory XML configuration (beyond the minimal web.xml required by any webapp) - nor a proprietary UI markup language. Its guiding principles - are simplicity, pluggability and interoperability. + and no proprietary UI markup language. Its guiding principles + are agility, simplicity, pluggability and interoperability. </description> <url>http://waffle.codehaus.org</url> <modules> - <module>core</module> - <module>extensions/mock</module> - <module>extensions/taglib</module> + <module>waffle-core</module> + <module>waffle-mock</module> + <module>waffle-taglib</module> </modules> <dependencyManagement> @@ -349,17 +349,17 @@ </properties> </profile> <profile> - <!-- Acceptance profile --> - <id>acceptance</id> + <!-- integration profile --> + <id>integration</id> <modules> - <module>extensions/taglib-acceptance</module> + <module>integration/waffle-taglib</module> </modules> </profile> <profile> <!-- Distribution profile --> <id>dist</id> <modules> - <module>distribution</module> + <module>waffle-distribution</module> </modules> </profile> <profile>
To unsubscribe from this list please visit:
