Hello everyone,
i'am trying to build the latest version of cmdbuild, but i'am getting the following error :
[ERROR] Failed to execute goal on project cmdbuild: Could not resolve dependencies for project org.cmdbuild:cmdbuild:war:3.0-SNAPSHOT: Could not find artifact org.cmdbuild:cmdbuild-ui:war:3.0-SNAPSHOT
I followed the steps described in :https://bitbucket.org/tecnoteca/cmdbuild/wiki/Home
Thnaks
Previously Mohamed wrote:
Hello everyone,
i'am trying to build the latest version of cmdbuild, but i'am getting the following error :
[ERROR] Failed to execute goal on project cmdbuild: Could not resolve dependencies for project org.cmdbuild:cmdbuild:war:3.0-SNAPSHOT: Could not find artifact org.cmdbuild:cmdbuild-ui:war:3.0-SNAPSHOT
I followed the steps described in :https://bitbucket.org/tecnoteca/cmdbuild/wiki/Home
Thnaks
Hi Mohamed,
You can try to build the 2.5.1 release instead of the HEAD branch which is not guaranteed being compilable or working.
After you git your clone of the Bitbucket repository, just switch to the 2.5.1 commit by executing:
git checkout 2.5.1
Then continue compiling as usual, i.e:
mvn install
Regards,
Vladimir
PS: I've managed to build the bleeding edge HEAD branch by doing some patches, but I cannot make it work anyway :(
Previously Mohamed wrote:
Hello everyone,
i'am trying to build the latest version of cmdbuild, but i'am getting the following error :
[ERROR] Failed to execute goal on project cmdbuild: Could not resolve dependencies for project org.cmdbuild:cmdbuild:war:3.0-SNAPSHOT: Could not find artifact org.cmdbuild:cmdbuild-ui:war:3.0-SNAPSHOT
I followed the steps described in :https://bitbucket.org/tecnoteca/cmdbuild/wiki/Home
Thnaks
Hi Mohamed,
You probably shall build the (latest) release 2.5.1 instead of the 'bleeding edge' HEAD commit.
To do that, insert one more step before calling 'mvn install':
git checkout 2.5.1
Regards,
Vladimir