diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-09-14 12:27:41 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-09-14 13:39:05 +0200 |
commit | bbe53dc1a6b24573bde2c6706453eab1d35a8332 (patch) | |
tree | cfa3fc251c2bebff08dd8f4b6afd486c308e8415 /sonar-server/pom.xml | |
parent | 21fa8f0b4880ccea34cde790a15b52901a60623a (diff) | |
download | sonarqube-bbe53dc1a6b24573bde2c6706453eab1d35a8332.tar.gz sonarqube-bbe53dc1a6b24573bde2c6706453eab1d35a8332.zip |
SONAR-3065 API: add jQuery
Diffstat (limited to 'sonar-server/pom.xml')
-rw-r--r-- | sonar-server/pom.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml index 1c5dd6cc09f..dd7285e6981 100644 --- a/sonar-server/pom.xml +++ b/sonar-server/pom.xml @@ -235,13 +235,18 @@ <aggregations> <aggregation> <includes> - <include>**/application-min.js</include> + <!-- + Order is important for jquery and prototype. Don't forget to also check the order + in layouts/_head.html.erb for the dev mode. + --> <include>**/prototype-min.js</include> <include>**/scriptaculous-min.js</include> <include>**/tablekit-min.js</include> - <include>**/dashboard-min.js</include> <include>**/protovis-min.js</include> <include>**/protovis-sonar-min.js</include> + <include>**/jquery-*.min.js</include> + <include>**/application-min.js</include> + <include>**/dashboard-min.js</include> <include>**/duplication-min.js</include> <include>**/resource-min.js</include> </includes> |