Disclaimer: I don't know anything about music ;-)
You have pretty strict requirements ;-) I have suggestions, but they don't meet all of your needs. :-(
MusicXML
As you may already know, there is an XML format called MusicXML, specs designed by Recordare, which can be used to lay out music in XML notation.
For example, "a one-measure piece of music that contains a whole note on middle C, based in 4/4 time" would look like this:

The MusicXML to render it would be something like:
<score-partwise version="2.0">
<part-list>
<score-part id="P1">
<part-name>Music</part-name>
</score-part>
</part-list>
<part id="P1">
<measure number="1">
<attributes>
<divisions>1</divisions>
<key>
<fifths>0</fifths>
</key>
<time>
<beats>4</beats>
<beat-type>4</beat-type>
</time>
<clef>
<sign>G</sign>
<line>2</line>
</clef>
</attributes>
<note>
<pitch>
<step>C</step>
<octave>4</octave>
</pitch>
<duration>4</duration>
<type>whole</type>
</note>
</measure>
</part>
</score-partwise>
So, that seems like a pretty nice, standardized format you could follow, assuming you were developing your own library (which you're not doing).
However, this format seems to be very popular: there's a whole bunch of software that Recordare lists as reading and writing MusicXML, but I couldn't find anything that met your requirements (Java library, non-viral license). abc4j seemed OK, but you've already mentioned it as not having all the features you wanted.
Zong!Viewer by Xenoage Software is an free Java program that reads and writes MusicXML. However, it is licensed under GPL. :-(
I guess, if you're not interested in generating your own library, that rules MusicXML out of the picture.
Notation Interchange File Format
Anyway, there's also a format called Notation Interchange File Format, which doesn't seem to be as popular as MusicXML. However, I found a Java applet called Niffty NIFF File Viewer which, given NIFF Notation, displays graphical musical notations. This is also licensed as GPL.
The Niffty guy also wrote a very detailed Programmer's Guide that discusses how to work with the Niffty source code. Might be useful?
ABC Notation
There's another form of notation called ABC Notation which has apparently "been in use since at least the 19th century". There's a wide variety of software that uses it. I didn't look at most of the programs listed, but one I kept seeing mentioned on various Google searches was Five Line Skink.
Five Line Skink "is a desktop application which is used to create music staff notation using the abc standard". It's written in Java and is freeware (as in beer, not as in speech). I didn't see any mention of a specific license, though:
Skink is freeware. If you would like to make a donation for it, you can do so through the PayPal button below (use the address above). I may make it open-source, depending on whether I get it to the point of wanting to show the world my mistakes... I still have lots to do before that time, however, so don't ask!
Maybe you should ask anyway, in the form of a nice donation ;-) Tell the author what you're trying to do.
OK! Hope some of this information helps. Good luck!