您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.sonarsource.sonarqube</groupId>
  8. <artifactId>sonarqube</artifactId>
  9. <version>6.4-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>tests</artifactId>
  12. <name>SonarQube Perf and Upgrade Tests</name>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <maven.deploy.skip>true</maven.deploy.skip>
  16. <source.skip>true</source.skip>
  17. <enforcer.skip>true</enforcer.skip>
  18. <sqZipDir>../sonar-application/target</sqZipDir>
  19. </properties>
  20. <modules>
  21. <module>perf</module>
  22. <module>upgrade</module>
  23. </modules>
  24. <profiles>
  25. <profile>
  26. <id>qa</id>
  27. <activation>
  28. <property>
  29. <name>env.SONARSOURCE_QA</name>
  30. <value>true</value>
  31. </property>
  32. </activation>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-dependency-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <id>copy-sonarqube-zip</id>
  41. <phase>generate-test-resources</phase>
  42. <goals>
  43. <goal>copy</goal>
  44. </goals>
  45. <configuration>
  46. <artifactItems>
  47. <artifactItem>
  48. <groupId>${project.groupId}</groupId>
  49. <artifactId>sonar-application</artifactId>
  50. <version>${project.version}</version>
  51. <type>zip</type>
  52. <overWrite>true</overWrite>
  53. </artifactItem>
  54. </artifactItems>
  55. <outputDirectory>${sqZipDir}</outputDirectory>
  56. <overWriteReleases>true</overWriteReleases>
  57. <overWriteSnapshots>true</overWriteSnapshots>
  58. </configuration>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </profile>
  65. </profiles>
  66. </project>