Message Boards

Build namespace UNIVERSITY has build number 15 which is newer than 10

thumbnail
mukesh kumar, modified 11 Years ago.

Build namespace UNIVERSITY has build number 15 which is newer than 10

Junior Member Posts: 57 Join Date: 3/13/12 Recent Posts
Hi All
How to resolve the given issue.
Build namespace UNIVERSITY has build number 15 which is newer than 10.
Regards
Mukesh Kumar
thumbnail
Priyanka Dhingra, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 501 Join Date: 12/20/11 Recent Posts
go to your service.properties file
change Build number to 15
Parth Kadia, modified 4 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

New Member Posts: 2 Join Date: 12/30/19 Recent Posts
It's works. Thank you.
thumbnail
Jignesh Vachhani, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 803 Join Date: 3/10/08 Recent Posts
You can update build number from release_ table for that portlet of liferay which has buildNumber column.
Hope this will resolve your query.
thumbnail
mukesh kumar, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Junior Member Posts: 57 Join Date: 3/13/12 Recent Posts
thanks jignesh and Priyanka .emoticon
thumbnail
David H Nebinger, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Legend Posts: 14919 Join Date: 9/2/06 Recent Posts
Both of these answers are most likely wrong.

When you build services, the build number is incremented. This is to prevent users of the service jar to use a 'stale' or out of date service jar when calling your service.

How are you sharing your service jar w/ other plugins?
thumbnail
Jignesh Vachhani, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 803 Join Date: 3/10/08 Recent Posts
Yes David

You are right but this is not the answer of the query which he asked for.
Many times literally or literally we are facing this problem and we solved this way only.
If you have any other solution please share it here.
thumbnail
David H Nebinger, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Legend Posts: 14919 Join Date: 9/2/06 Recent Posts
Sure, I typically use the service-ext.properties to change my build number to 1. That way the management of the deployment of the service jar is all my responsibility, and I'm fine with that. I'm usually only adding new entities/methods, so existing entities/methods don't change and the build version for me is a roadblock, not a tool.

To do this for yourself, in the same directory as your service.properties file, create a service-ext.properties file and just add a line "build.number=1". This overrides whatever value is in service.properties, so you're effectively disabling the build.number handling.

Again, this means you're taking over responsibility for managing the service jar deployment. If not done correctly, you'll get weird errors at runtime that are harder to diagnose than the simple "build number is newer" error check that Liferay normally does (things like class not found or method missing exceptions).
thumbnail
Priyanka Dhingra, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 501 Join Date: 12/20/11 Recent Posts
Thanks David....
I have 2 doubts...
If not done correctly, you'll get weird errors at runtime that are harder to diagnose than the simple "build number is newer" error check that Liferay normally does (things like class not found or method missing exceptions).


what could be the possibilities of errors??What can go incorrect?
and build.number=1...Here "1" is some magic number??? or it can be any random number i want to pick up and use??
thumbnail
GERALD ROMERO, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

New Member Posts: 7 Join Date: 10/12/12 Recent Posts
Took me a while to figure this out myself. This is tracked in the servicecomponent table. Not the release_ table.
Hope that helps someone else.
thumbnail
clint barbosa, modified 10 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

New Member Posts: 7 Join Date: 8/23/12 Recent Posts
Gerald Romero:
Took me a while to figure this out myself. This is tracked in the servicecomponent table. Not the release_ table.
Hope that helps someone else.



Thanks for this ! emoticon
thumbnail
Robin Nagpal, modified 9 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Junior Member Posts: 44 Join Date: 11/18/14 Recent Posts
You should first see what exactly changed and accordingly change your build number. If you are adding,deleting new methods then you can use the previous build number if you are not distributing your service jars to client.

But if you are adding/modifying column/field of an entity you might want to increment the build number as Liferay will execute the sql statements only if there is a increase in the build number
thumbnail
Priyanka Dhingra, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 501 Join Date: 12/20/11 Recent Posts
@Mukesh Kumar....Please check the thread you are posting in
thumbnail
mukesh kumar, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Junior Member Posts: 57 Join Date: 3/13/12 Recent Posts
My thread is correct . While deploying the portlet i was getting this error.
thumbnail
Priyanka Dhingra, modified 11 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

Liferay Master Posts: 501 Join Date: 12/20/11 Recent Posts
Hi Mukesh
I think this should be the correct thread
http://www.liferay.com/community/forums/-/message_boards/category/239390
and as you want in, for deploying the portlet only
http://www.liferay.com/community/forums/-/message_boards/category/239393
Enrico Polanski, modified 5 Years ago.

RE: Build namespace UNIVERSITY has build number 15 which is newer than 10

New Member Posts: 2 Join Date: 11/20/18 Recent Posts
The problem might be also the auto deploy.

Shutting down and restarting the server can fix this issue.