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 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>4.5.4</version>
  8. </parent>
  9. <artifactId>sonar-batch-maven-compat</artifactId>
  10. <name>SonarQube :: Batch Maven Compat</name>
  11. <description>Compatibility layer, which provides MavenProject for non-Maven environments.</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>${project.groupId}</groupId>
  15. <artifactId>sonar-batch</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.maven</groupId>
  20. <artifactId>maven-project</artifactId>
  21. <version>2.0.7</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>org.codehaus.plexus</groupId>
  25. <artifactId>plexus-container-default</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-shade-plugin</artifactId>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <profiles>
  47. <profile>
  48. <id>release</id>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <artifactId>maven-deploy-plugin</artifactId>
  53. <configuration>
  54. <skip>true</skip>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </profile>
  60. </profiles>
  61. </project>