Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Plain Java API: Is there a method to expose the version ?

I have a stand-alone application that uses the Plain Java API.  I would like to include details that I can expose at run-time when the application starts or a separate on-demand run.   To this end I have created a VersionInfo class which my ant build fills in certain tokens with information I can determine by running a script.   For example, to find the DB2 client version:

java -cp lib/db2jcc.jar com.ibm.db2.jcc.DB2Jcc -version
IBM DB2 JDBC Universal Driver Architecture 3.64.106

I found
com.ibm.team.repository.common.TeamRepositoryException  

which has a getClientVersion() method but trying to instantiate one of these sandwiched
between TeamPlatform.startup() and TeamPlatform.shutdown() doesn't do much

So: is there some class/method that would give an understandable version of the running or built
against client libraries ?

Chopping the build string off of com.ibm.team.workitem.client is ambiguous at best....


0 votes



3 answers

Permanent link
If you are developing a standalone Java application and want to show the version information on the splash screen or when accepting the -version command line parameter, you need to implement it yourself (write your own getVersion() function). You will need to hardcode the version in the code or read it from some environment variable or configuration files.
The TeamRepositoryException class is definitely not the right choice. If you want to get the version of the Jazz server, consider these.
com.ibm.team.repository.common.Version
com.ibm.team.repository.client.util.RepositoryUtil.getRepositoryVersion
com.ibm.team.repository.client.util.RepositoryUtil.getRepositoryBuildId

1 vote

Comments

The app I have is a headless task.   I have separate User Libraries in my Eclipse environment so I can quickly swap client versions.   I have try to record the API class version by pulling the build info off the tail of:

jazz3_libs/com.ibm.team.workitem.client_3.1.0.v20120504_0401.jar

But for a v3 and v4 these don't look very distinguishable:

[ramerk@oc6557108854 rfe_rtc_bridge]$ scripts/gen_build_info.sh v3
buildstamp=2014/05/07 08:21
db2jccversion=IBM DB2 JDBC Universal Driver Architecture 3.50.152
rtcclientversion=3.1.0.v20120504
[ramerk@oc6557108854 rfe_rtc_bridge]$ scripts/gen_build_info.sh v4
buildstamp=2014/05/07 08:21
db2jccversion=IBM DB2 JDBC Universal Driver Architecture 3.50.152
rtcclientversion=3.1.500.v20130501

It looks like there are differences you can use to distinguish clients.

[ramerk@oc6557108854 rfe_rtc_bridge]$ scripts/gen_build_info.sh v3
buildstamp=2014/05/07 08:21
db2jccversion=IBM DB2 JDBC Universal Driver Architecture 3.50.152
rtcclientversion=3.1.0.v20120504
[ramerk@oc6557108854 rfe_rtc_bridge]$ scripts/gen_build_info.sh v4
buildstamp=2014/05/07 08:21
db2jccversion=IBM DB2 JDBC Universal Driver Architecture 3.50.152
rtcclientversion=3.1.500.v20130501

If you're going to get the version of each library (.jar), then reading the "Bundle-Version" property in the META-INF\MANIFEST.MF file in the .jar file appears to be more reliable. Most of the plugin libraries contain this file.


Permanent link
Kevin,

will the article 361 on Share and Manage Documents through the Web UI do the job?
If this is helpful, please accept the answer.

- Arne

0 votes


Permanent link
I was not able to find the code that prints the version of the Plain Java Client Libraries.

0 votes

Comments

You could try to look if com.ibm.team.repository.service.internal.VersionCompatibilityRestService provides you with some information. It does however not seem to be the version of the Plain Java Client Libraries.

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 12,020

Question asked: May 06 '14, 4:40 p.m.

Question was seen: 4,073 times

Last updated: May 21 '14, 11:21 a.m.

Confirmation Cancel Confirm