[10:49:28 CST(-0600)] <drewwills> Are you there EricDalquist?
[10:50:01 CST(-0600)] <drewwills> I'm kicking the tires of pull #113 https://github.com/Jasig/uPortal/pull/113/files (bundled calendar portlet)
[10:50:43 CST(-0600)] <drewwills> The code changes (imho) look pretty elegant, and the whole thing works as expected
[10:51:14 CST(-0600)] <drewwills> the one issue I have is the number of extra build cycles in portlets, and the noise and time it adds to the build
[10:52:07 CST(-0600)] <drewwills> because both 'db-hibernate-portlets' and 'portlet-data-import' targets call $mvn package on up-portlets-overlay
[10:52:17 CST(-0600)] <EricDalquist> uhg
[10:52:25 CST(-0600)] <EricDalquist> yeah that would be good to minimize
[10:52:40 CST(-0600)] <drewwills> so an $ant initportal ends up packaging them 3 times
[10:52:43 CST(-0600)] <EricDalquist> also I've merged the work that james did into <plugin>
[10:52:43 CST(-0600)] <EricDalquist> <groupId>org.jasig.portal.maven</groupId>
[10:52:43 CST(-0600)] <EricDalquist> <artifactId>uportal-maven-plugin</artifactId>
[10:52:43 CST(-0600)] <EricDalquist> <version>1.0.0</version>
[10:52:43 CST(-0600)] <EricDalquist> <!-- extensions must be set to true to pick up the custom phases -->
[10:52:43 CST(-0600)] <EricDalquist> <extensions>true</extensions>
[10:52:43 CST(-0600)] <EricDalquist> </plugin>
[10:52:47 CST(-0600)] <EricDalquist> yeah
[10:52:51 CST(-0600)] <EricDalquist> thats not great
[10:53:51 CST(-0600)] <drewwills> we could (1) skip rnning the package goal in these new tasks, or (2) somehow detect we're running within an initportal (or initdb) and skip it because we've just run it
[10:56:03 CST(-0600)] <drewwills> yep – we can use parameters in the <antcall> to shut off the package if we're coming from an aggregating task (like initportal): http://ant.apache.org/manual/index.html
[10:56:32 CST(-0600)] <EricDalquist> sounds good