mbuil

pom.xml | patcher

Sep 12th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <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">
  2.  
  3. <parent>
  4. <groupId>org.opendaylight.odlparent</groupId>
  5. <artifactId>odlparent</artifactId>
  6. <version>1.6.2-Beryllium-SR2</version>
  7. <relativePath/>
  8. </parent>
  9.  
  10. <groupId>org.opendaylight.patcher</groupId>
  11. <artifactId>patcher-aggregator</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <name>patcher</name>
  14. <packaging>pom</packaging>
  15. <modelVersion>4.0.0</modelVersion>
  16. <prerequisites>
  17. <maven>3.1.1</maven>
  18. </prerequisites>
  19. <modules>
  20. <module>api</module>
  21. <module>impl</module>
  22. <module>karaf</module>
  23. <module>features</module>
  24. <module>artifacts</module>
  25. <module>it</module>
  26. </modules>
  27. <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-deploy-plugin</artifactId>
  33. <configuration>
  34. <skip>true</skip>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-install-plugin</artifactId>
  40. <configuration>
  41. <skip>true</skip>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46.  
  47. <scm>
  48. <connection>scm:git:ssh://git.opendaylight.org:29418/patcher.git</connection>
  49. <developerConnection>scm:git:ssh://git.opendaylight.org:29418/patcher.git</developerConnection>
  50. <tag>HEAD</tag>
  51. <url>https://wiki.opendaylight.org/view/patcher:Main</url>
  52. </scm>
  53. </project>
Add Comment
Please, Sign In to add comment