pom.xml 5.3 KB

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