Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.jenkins-ci.plugins</groupId>
  5. <artifactId>plugin</artifactId>
  6. <version>1.577</version>
  7. </parent>
  8.  
  9. <groupId>net.masterthought.jenkins</groupId>
  10. <artifactId>cucumber-reports</artifactId>
  11. <version>1.3.0</version>
  12. <packaging>hpi</packaging>
  13. <!-- this name and URL are added by the Jenkins when displaying help.html file -->
  14. <name>Cucumber-jvm reports</name>
  15. <url>https://github.com/jenkinsci/cucumber-reports-plugin</url>
  16.  
  17. <scm>
  18. <connection>scm:git:git@github.com:jenkinsci/cucumber-reports-plugin.git</connection>
  19. <developerConnection>scm:git:git@github.com:jenkinsci/cucumber-reports-plugin.git</developerConnection>
  20. <url>git@github.com:jenkinsci/cucumber-reports-plugin.git</url>
  21. <tag>cucumber-reports-1.3.0</tag>
  22. </scm>
  23.  
  24. <description>
  25. This project provides pretty html reports for Cucumber. It works by generating html from the cucumber json
  26. report formatter. So can be used anywhere a json report is generated. Current use is in the cucumber jenkins
  27. plugin and a maven mojo to generate the same report from mvn command line when running locally.
  28. </description>
  29.  
  30. <licenses>
  31. <license>
  32. <name>LGPL 2.1</name>
  33. <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
  34. </license>
  35. </licenses>
  36.  
  37. <developers>
  38. <developer>
  39. <id>damianszczepanik</id>
  40. <name>Damian Szczepanik</name>
  41. <email>damianszczepanik@github</email>
  42. </developer>
  43. <developer>
  44. <id>kingsleyh</id>
  45. <name>Kingsley Hendrickse</name>
  46. <email>kingsley.hendrickse@gmail.com</email>
  47. </developer>
  48. </developers>
  49.  
  50. <!-- get every artifact through repo.jenkins-ci.org, which proxies all
  51. the artifacts that we need -->
  52. <repositories>
  53. <repository>
  54. <id>repo.jenkins-ci.org</id>
  55. <url>http://repo.jenkins-ci.org/public/</url>
  56. </repository>
  57. </repositories>
  58.  
  59. <pluginRepositories>
  60. <pluginRepository>
  61. <id>repo.jenkins-ci.org</id>
  62. <url>http://repo.jenkins-ci.org/public/</url>
  63. </pluginRepository>
  64. </pluginRepositories>
  65.  
  66. <build>
  67. <plugins>
  68. <!-- release with
  69. mvn clean release:prepare release:perform -Dusername=... -Dpassword=...
  70. once the release is completed, new version should be present here:
  71. http://repo.jenkins-ci.org/releases/net/masterthought/jenkins/cucumber-reports/
  72. and then later after synchronization also here:
  73. http://updates.jenkins-ci.org/update-center.json
  74. -->
  75. <plugin>
  76. <groupId>org.eclipse.hudson.tools</groupId>
  77. <artifactId>maven-hpi-plugin</artifactId>
  78. <!-- explicitly specifying the latest version here because one we get from
  79. the parent POM tends to lag behind a bit -->
  80. <version>3.0.3</version>
  81. </plugin>
  82. </plugins>
  83. <pluginManagement>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-release-plugin</artifactId>
  88. <version>2.5.3</version>
  89. </plugin>
  90. </plugins>
  91. </pluginManagement>
  92. </build>
  93.  
  94. <dependencies>
  95. <dependency>
  96. <groupId>net.masterthought</groupId>
  97. <artifactId>cucumber-reporting</artifactId>
  98. <version>1.3.0</version>
  99. </dependency>
  100. </dependencies>
  101. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement