Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sonar 3.1 javascript issue

in sonar 2.5, there is jit-yc.js file in javascript folder.
this js file is used to develop the radiator plugin. But this file is removed from sonar 3.1.
is there any other js file same as jit.jy.js in sonar3.1. I need this file to build a plugin.
Is there any other way to use this file.

like image 213
ѕтƒ Avatar asked Nov 13 '22 17:11

ѕтƒ


1 Answers

Plugins can provide static files like images, CSS or JS files. They have to be copied in src/main/resources/static and then can by accessible from the public URL : http:///static//

You can read more here : http://docs.codehaus.org/display/SONAR/Extend+Web+Application#ExtendWebApplication-Staticfiles

like image 178
ppapapetrou Avatar answered Jan 02 '23 16:01

ppapapetrou