Spincast is now used to build itself!
How is this possible? Well, if you don't know yet, a Maven build process contains multiple phases, one of them is compile and this is where Spincast is actually compiled. But there are many other important phases following that one, and this is where the compiled Spincast classes can be used!
In spincast-website
's pom.xml,
during the prepare-package
phase, we declare exec-maven-plugin
plugins to dynamically call some Spincast classes.
One of those classes is SpincastMavenPreparePackage,
for example. Since Spincast is already compiled at this point, we can use it! In this particular case, we use Spincast to create a
modified version of the Quick Start application, to zip it, and then to add it to the website's "public" folder, where it can be downloaded.
If you look at SpincastMavenPreparePackage
's code, you'll see that in its main(...)
method we start a
Guice context using the SpincastDefaultGuiceModule
Spincast's Guice module, exactly as we could do for a real
Spincast application! This allows us to access all the functionalities, all the utilities provided by Spincast.
For example, here we use a Spincast utility to zip the Quick Start sources. Note that we don't start a HTTP server though,
since we don't need it!
In summary, instead of using a maven-antrun-plugin
plugin for example, and having to
deal with cumbersome XML logic when some custom steps are required during a build, we simply start a Guice context and we have
full access to Spincast.
We will probably use that little trick in a reusable Maven Mojo plugin one day, but for build steps that are specific to a project, this approach works very well.
The Spincast Javadoc is now available online.
A link to that Javadoc has been added at the top of the documentation page, and at the top of each plugin's page.
Look for thoses links: !
A new What's new? page is now online!
Each time a new plugin is available, or each time an interesting thing happens in Spincast world, this page is going to be updated.
You can also access those news using the RSS feed.
Spincast is now listed on Todo-Backend (todobackend.com).
This first implementation simply saves the todos
in memory. If you have suggestions for another implementation,
let us know!
We plan on developing one with Docker and PostgreSQL soon.