Re: [Dspace-devel] 1.7.0 RC1 status

2010-11-06 Thread Peter Dietz
Hi All,

The status of cutting the RC for 1.7 is that I pushed dspace-xmlui-lang and
dspace-api-lang (1.7.0.0) to maven on Friday at 5pm EST, and have been
waiting for maven central to pick up on this and sync it so that it appears
in the maven central list. Which is a prerequisite step for releasing the
rest of the project.

I'm hoping that a more maven-repository savvy person can take a look at
things, since something should have synced by now. I'm wondering if they
might have changed their process for taking artifact updates. Sonatype
anyone?

Our Release Procedure has a link to the maven-repo-maintainers mailing list
which appears to not have had a sync success in a few weeks.
https://wiki.duraspace.org/display/DSPACE/ReleaseProcedure
http://mail-archives.apache.org/mod_mbox/maven-repo-maintainers/201010.mbox/browser
http://jira.codehaus.org/browse/MAVENUPLOAD

--
Peter Dietz
Systems Developer/Engineer
Ohio State University Libraries



On Sat, Nov 6, 2010 at 4:20 PM, Peter Dietz  wrote:

> I released the api/xmlui lang packages friday, so I'm waiting for them to
> appear in maven to continue.
>
> Hopefully things can keep on moving so the release is safe.
> On Nov 6, 2010 3:13 PM, "Tim Donohue"  wrote:
> > Hi Peter,
> >
> > Just wanting to check in on the 1.7.0 RC1 status. I noticed it looks like
> > we didn't get the release out on Friday (which is fine -- shouldn't be a
> big
> > deal). Just let me know if you need me to take the lead on anything on
> > Monday to make sure 1.7 Testathon goes off as planned.
> >
> > Thanks! Have a good rest of your weekend!
> >
> > - Tim
>
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] Commented: (DS-742) Embargo Fails with Null Pointer Exception on Item Install.

2010-11-06 Thread Mark Diggory (DuraSpace JIRA)

[ 
https://jira.duraspace.org/browse/DS-742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18002#action_18002
 ] 

Mark Diggory commented on DS-742:
-

Should be sufficient, thanks for the correction.  I'm now thinking the 
NullPointer is caused by the setter not getting instantiated in some cases (for 
instance on Servlet Context reload). I do think we should be using teh Services 
framework for creating these objects, not the Plugin Manager.  We should be 
deprecating the PluginManager and ConfigurationManager rather than continuing 
to use this approach with static initializers.  Future projects on Embargo, 
Consumers and other Plugins should shift them out of dspace.cfg / plugin 
manager and into Spring configuration where things will be much more flexible.

> Embargo Fails with Null Pointer Exception on Item Install.
> --
>
> Key: DS-742
> URL: https://jira.duraspace.org/browse/DS-742
> Project: DSpace
>  Issue Type: Bug
>  Components: DSpace API
>Affects Versions: 1.6.0, 1.6.1, 1.6.2, 1.7.0
>Reporter: Mark Diggory
> Fix For: 1.7.0
>
>
> Embargo fails because the code fails to check for NullPointers appropriately.
> Fix
> 
> DCDate result = null;
> 
> // Its very poor form to blindly use an object that could be null...
> if(terms != null && terms[0] != null)
> {
>   result = setter.parseTerms(context, item, terms.length > 0 ? 
> terms[0].value : null);
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.duraspace.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


Re: [Dspace-devel] Trunk is currently failings tests

2010-11-06 Thread Peter Dietz
This is fixed now.

Thank you Richard
--
Peter Dietz
Systems Developer/Engineer
Ohio State University Libraries



On Sat, Nov 6, 2010 at 11:33 AM, Peter Dietz  wrote:

> Hi All,
>
> I can't cut the release because trunk is currently failing.
> https://bamboo.duraspace.org/browse/DST-TRUNK
>
> Hopefully someone can take
> a look at it and fix this.
> --
> Peter Dietz
> Systems Developer/Engineer
> Ohio State University Libraries
>
>
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] [DuraSpace JIRA] Commented: (DS-742) Embargo Fails with Null Pointer Exception on Item Install.

2010-11-06 Thread Richard Rodgers (DuraSpace JIRA)

[ 
https://jira.duraspace.org/browse/DS-742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17998#action_17998
 ] 

Richard Rodgers commented on DS-742:


Not sure where/ when the NPE occurs, but changeset 5739 (the fix) contains an 
error that breaks the build.
The getMetadata() method that returns 'terms' is never null, but it *can* be a 
zero-length array. In this case, the test
terms[0] != null will throw a ArrayIndexOutOfBounds exception.
Checking in a fix - although reverting would work also. Need more detail in 
this ticket to address the underlying issue.


> Embargo Fails with Null Pointer Exception on Item Install.
> --
>
> Key: DS-742
> URL: https://jira.duraspace.org/browse/DS-742
> Project: DSpace
>  Issue Type: Bug
>  Components: DSpace API
>Affects Versions: 1.6.0, 1.6.1, 1.6.2, 1.7.0
>Reporter: Mark Diggory
> Fix For: 1.7.0
>
>
> Embargo fails because the code fails to check for NullPointers appropriately.
> Fix
> 
> DCDate result = null;
> 
> // Its very poor form to blindly use an object that could be null...
> if(terms != null && terms[0] != null)
> {
>   result = setter.parseTerms(context, item, terms.length > 0 ? 
> terms[0].value : null);
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.duraspace.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel


[Dspace-devel] Trunk is currently failings tests

2010-11-06 Thread Peter Dietz
Hi All,

I can't cut the release because trunk is currently failing.
https://bamboo.duraspace.org/browse/DST-TRUNK

Hopefully someone can take a
look at it and fix this.
--
Peter Dietz
Systems Developer/Engineer
Ohio State University Libraries
--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev___
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel