To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71358





------- Additional comments from [EMAIL PROTECTED] Mon Nov 13 09:14:32 -0800 
2006 -------
Kay, yes that's exactly what I do: connect to a running OOo process from Java,
but be able to build and distribute my app independently of OOo.

Yep sandbox.jar is no longer required since OOo 2.0, I'll remove that one 
thanks.

I'm certainly available for maintaining those 4 jars on ibiblio.  Uploading new
versions at each OOo release is not a huge effort.  This would be useful for
other projects as well, there are at least a couple of open source ECM solutions
that use them already.

Files will be versioned, that's mandatory.  Maven also provides ways for
declaring dependencies on a particular version, or a range of version.  For
example, if my app only works with jars version 2.0.x but not 2.1.x I would
declare something like

  <dependency>
    <groupId>org.openoffice</groupId>
    <artifactId>openoffice-unoil</artifactId>
    <version>[2.0,2.1)</version>
  </dependency>

in my project's maven configuration.  This can be used to manage incompatible
changes in many cases.  I would say it is then the responsibility of each
application to ensure that it runs against a compatible OOo version.  For my app
for example I already recommend OOo >= 2.0.3 (because of a bug with headless PDF
conversions in 2.0.2).

I'll provide you with some Maven XML project description files later to agree
with you what values should be used as id, description and so on, as described 
here

  http://maven.apache.org/guides/mini/guide-ibiblio-upload.html


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to