On Fri, Apr 1, 2011 at 5:00 PM, Arvid Huss <[email protected]> wrote:
> Hi,
> Niclas - I'm missing org.qi4j.library:org.qi4j.library.rest in the RC4 cut.

Ok, this is due to the ModuleReleaseSpecification (DDD terms here,
hmmm) in build system  (you can find it in buildSrc/ ) says

class ModuleReleaseSpecification
{
  def boolean satisfiedBy( Project project ) {
    def devStatusFile = new File(project.projectDir, "dev-status.xml")
    if( !devStatusFile.exists() )
    {
      return false
    }
    def module = new XmlSlurper().parse(devStatusFile)
    def status = module.status.codebase.text()
    return status != 'none' && status != 'early'
  }
}

i.e. the dev-status.xml file has a <codebase> that must not be 'none'
or 'early'. i.e. 'beta' or higher.


As we mature the releases, I will slowly tighten this Specification
and in that way I hope to force an improvement in quality across the
many modules (or it will drop off).


Cheers
-- 
Niclas Hedhman, Software Developer
http://www.qi4j.org - New Energy for Java

I live here; http://tinyurl.com/3xugrbk
I work here; http://tinyurl.com/24svnvk
I relax here; http://tinyurl.com/2cgsug

_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to