pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. <groupId>no.steria.osgi.jsr330activator</groupId>
  5. <artifactId>jsr330activator</artifactId>
  6. <version>1.1.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>jsr330activator</name>
  9. <licenses>
  10. <license>
  11. <name>Eclipse Public License - v 1.0</name>
  12. <url>LICENSE</url>
  13. </license>
  14. </licenses>
  15. <developers>
  16. <developer>
  17. <name>Steinar Bang</name>
  18. <email>steb@soprasteria.com</email>
  19. <organization>steria</organization>
  20. <organizationUrl>https://github.com/sbang</organizationUrl>
  21. </developer>
  22. </developers>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>4.12</version>
  31. </dependency>
  32. </dependencies>
  33. <modules>
  34. <module>jsr330activator.gogoshell</module>
  35. <module>jsr330activator.implementation</module>
  36. <module>jsr330activator.mocks</module>
  37. <module>jsr330activator.testbundle1</module>
  38. <module>jsr330activator.testbundle2</module>
  39. <module>jsr330activator.testbundle3</module>
  40. <module>jsr330activator.testbundle4</module>
  41. <module>jsr330activator.testbundle5</module>
  42. <module>jsr330activator.testbundle6</module>
  43. <module>jsr330activator.testbundle7</module>
  44. <module>jsr330activator.testbundle8</module>
  45. <module>jsr330activator.tests</module>
  46. </modules>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-source-plugin</artifactId>
  52. <version>2.4</version>
  53. <executions>
  54. <execution>
  55. <id>attach-sources</id>
  56. <goals>
  57. <goal>jar</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-javadoc-plugin</artifactId>
  65. <version>2.10.2</version>
  66. <configuration>
  67. <show>private</show>
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <id>attach-javadocs</id>
  72. <goals>
  73. <goal>jar</goal>
  74. </goals>
  75. <configuration>
  76. <failOnError>false</failOnError>
  77. </configuration>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-gpg-plugin</artifactId>
  84. <version>1.5</version>
  85. <executions>
  86. <execution>
  87. <id>sign-artifacts</id>
  88. <phase>verify</phase>
  89. <goals>
  90. <goal>sign</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.codehaus.mojo</groupId>
  97. <artifactId>cobertura-maven-plugin</artifactId>
  98. <version>2.7</version>
  99. <configuration>
  100. <outputDirectory>${basedir}/target</outputDirectory>
  101. <formats>
  102. <format>html</format>
  103. <format>xml</format>
  104. </formats>
  105. <instrumentation>
  106. <excludes>
  107. <exclude>no/steria/osgi/mocks/**/*.class</exclude>
  108. <exclude>no/steria/osgi/jsr330activator/testbundle1/**/*.class</exclude>
  109. <exclude>no/steria/osgi/jsr330activator/testbundle2/**/*.class</exclude>
  110. <exclude>no/steria/osgi/jsr330activator/testbundle3/**/*.class</exclude>
  111. <exclude>no/steria/osgi/jsr330activator/testbundle4/**/*.class</exclude>
  112. <exclude>no/steria/osgi/jsr330activator/testbundle5/**/*.class</exclude>
  113. <exclude>no/steria/osgi/jsr330activator/testbundle6/**/*.class</exclude>
  114. <exclude>no/steria/osgi/jsr330activator/testbundle7/**/*.class</exclude>
  115. <exclude>no/steria/osgi/jsr330activator/testbundle8/**/*.class</exclude>
  116. </excludes>
  117. </instrumentation>
  118. <aggregate>true</aggregate>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.eluder.coveralls</groupId>
  123. <artifactId>coveralls-maven-plugin</artifactId>
  124. <version>3.1.0</version>
  125. <configuration>
  126. <coberturaReports>
  127. <coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
  128. </coberturaReports>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-release-plugin</artifactId>
  134. <version>2.5.2</version>
  135. <configuration>
  136. <pushChanges>false</pushChanges>
  137. <localCheckout>true</localCheckout>
  138. <preparationGoals>clean install</preparationGoals>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. <description>An OSGi bundle activator implementation that will scan the bundle for JSR330 Provider interface implementations instantiate the providers, and register the provided services with OSGi.</description>
  144. <scm>
  145. <url>https://github.com/sbang/jsr330activator</url>
  146. <connection>scm:git:https://github.com/sbang/jsr330activator.git</connection>
  147. <tag>HEAD</tag>
  148. </scm>
  149. <issueManagement>
  150. <url>https://github.com/sbang/jsr330activator/issues</url>
  151. <system>Github issue tracker</system>
  152. </issueManagement>
  153. <ciManagement>
  154. <url>https://travis-ci.org/sbang/jsr330activator</url>
  155. <system>travis-ci</system>
  156. </ciManagement>
  157. <distributionManagement>
  158. <snapshotRepository>
  159. <id>ossrh</id>
  160. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  161. </snapshotRepository>
  162. <repository>
  163. <id>ossrh</id>
  164. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  165. </repository>
  166. </distributionManagement>
  167. <url>http://sbang.github.io/jsr330activator/</url>
  168. </project>