You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>2.8</version>
  8. </parent>
  9. <artifactId>sonar-application</artifactId>
  10. <packaging>jar</packaging>
  11. <name>Sonar :: Application</name>
  12. <description>Package the standalone distribution</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-assembly-plugin</artifactId>
  17. <executions>
  18. <execution>
  19. <phase>package</phase>
  20. <goals>
  21. <goal>single</goal>
  22. </goals>
  23. <configuration>
  24. <appendAssemblyId>false</appendAssemblyId>
  25. <finalName>sonar-${project.version}</finalName>
  26. <descriptors>
  27. <descriptor>assembly.xml</descriptor>
  28. </descriptors>
  29. </configuration>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. <plugin>
  34. <artifactId>maven-antrun-plugin</artifactId>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <configuration>
  39. <target>
  40. <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="md5" />
  41. <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="sha" />
  42. </target>
  43. </configuration>
  44. <goals>
  45. <goal>run</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-deploy-plugin</artifactId>
  52. <configuration>
  53. <skip>true</skip>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.codehaus.sonar</groupId>
  61. <artifactId>sonar-server</artifactId>
  62. <version>${project.version}</version>
  63. <type>war</type>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mortbay.jetty</groupId>
  67. <artifactId>jetty-plus</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mortbay.jetty</groupId>
  71. <artifactId>jetty-naming</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mortbay.jetty</groupId>
  75. <artifactId>jetty</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-io</groupId>
  79. <artifactId>commons-io</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-lang</groupId>
  83. <artifactId>commons-lang</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.codehaus.sonar</groupId>
  88. <artifactId>sonar-testing-harness</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.slf4j</groupId>
  93. <artifactId>jcl-over-slf4j</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-api</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>ch.qos.logback</groupId>
  101. <artifactId>logback-classic</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-core</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>janino</groupId>
  109. <artifactId>janino</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>mysql</groupId>
  113. <artifactId>mysql-connector-java</artifactId>
  114. <scope>runtime</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>postgresql</groupId>
  118. <artifactId>postgresql</artifactId>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.derby</groupId>
  123. <artifactId>derbyclient</artifactId>
  124. <scope>runtime</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>net.sourceforge.jtds</groupId>
  128. <artifactId>jtds</artifactId>
  129. <scope>runtime</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.mortbay.jetty</groupId>
  133. <artifactId>jetty-ajp</artifactId>
  134. </dependency>
  135. <!-- deprecated -->
  136. <dependency>
  137. <groupId>org.codehaus.sonar.runtime</groupId>
  138. <artifactId>sonar-core-maven-plugin</artifactId>
  139. <version>${project.version}</version>
  140. <scope>runtime</scope>
  141. </dependency>
  142. <!-- core plugins -->
  143. <dependency>
  144. <groupId>org.codehaus.sonar.plugins</groupId>
  145. <artifactId>sonar-core-plugin</artifactId>
  146. <version>${project.version}</version>
  147. <scope>runtime</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.codehaus.sonar.plugins</groupId>
  151. <artifactId>sonar-design-plugin</artifactId>
  152. <version>${project.version}</version>
  153. <scope>runtime</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.codehaus.sonar.plugins</groupId>
  157. <artifactId>sonar-googleanalytics-plugin</artifactId>
  158. <version>${project.version}</version>
  159. <scope>runtime</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.codehaus.sonar.plugins</groupId>
  163. <artifactId>sonar-findbugs-plugin</artifactId>
  164. <version>${project.version}</version>
  165. <scope>runtime</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.codehaus.sonar.plugins</groupId>
  169. <artifactId>sonar-checkstyle-plugin</artifactId>
  170. <version>${project.version}</version>
  171. <scope>runtime</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.codehaus.sonar.plugins</groupId>
  175. <artifactId>sonar-dbcleaner-plugin</artifactId>
  176. <version>${project.version}</version>
  177. <scope>runtime</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.codehaus.sonar.plugins</groupId>
  181. <artifactId>sonar-pmd-plugin</artifactId>
  182. <version>${project.version}</version>
  183. <scope>runtime</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.codehaus.sonar.plugins</groupId>
  187. <artifactId>sonar-squid-java-plugin</artifactId>
  188. <version>${project.version}</version>
  189. <scope>runtime</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.codehaus.sonar.plugins</groupId>
  193. <artifactId>sonar-cobertura-plugin</artifactId>
  194. <version>${project.version}</version>
  195. <scope>runtime</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.codehaus.sonar.plugins</groupId>
  199. <artifactId>sonar-surefire-plugin</artifactId>
  200. <version>${project.version}</version>
  201. <scope>runtime</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.codehaus.sonar.plugins</groupId>
  205. <artifactId>sonar-cpd-plugin</artifactId>
  206. <version>${project.version}</version>
  207. <scope>runtime</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.sonatype.jsw-binaries</groupId>
  211. <artifactId>jsw-binaries</artifactId>
  212. <version>3.2.3.6</version>
  213. <type>tar.gz</type>
  214. <scope>provided</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>tanukisoft</groupId>
  218. <artifactId>wrapper</artifactId>
  219. <version>3.2.3</version>
  220. <scope>runtime</scope>
  221. </dependency>
  222. </dependencies>
  223. </project>