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.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.sonarsource.sonarqube</groupId>
  6. <artifactId>sonarqube</artifactId>
  7. <version>7.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-scanner-engine-shaded</artifactId>
  10. <name>SonarQube :: Scanner Engine Shaded</name>
  11. <description>All Scanner Engine dependencies in a single jar</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>${project.groupId}</groupId>
  15. <artifactId>sonar-scanner-engine</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-shade-plugin</artifactId>
  24. <executions>
  25. <execution>
  26. <phase>package</phase>
  27. <goals>
  28. <goal>shade</goal>
  29. </goals>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-jar-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <id>empty-javadoc-jar</id>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>jar</goal>
  42. </goals>
  43. <configuration>
  44. <classifier>javadoc</classifier>
  45. </configuration>
  46. </execution>
  47. <execution>
  48. <id>empty-sources-jar</id>
  49. <phase>package</phase>
  50. <goals>
  51. <goal>jar</goal>
  52. </goals>
  53. <configuration>
  54. <classifier>sources</classifier>
  55. </configuration>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>