pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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/maven-v4_0_0.xsd">
  3. <!--
  4. | put company details here
  5. <organization>
  6. <name>...</name>
  7. <url>http://...</url>
  8. </organization>
  9. -->
  10. <!--
  11. | put license details here
  12. <licenses>
  13. <license>
  14. <name>...</name>
  15. <url>http://...</url>
  16. <comments>
  17. </comments>
  18. </license>
  19. </licenses>
  20. -->
  21. <parent>
  22. <groupId>no.steria.osgi.jsr330activator</groupId>
  23. <artifactId>jsr330activator</artifactId>
  24. <version>1.1.1-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>jsr330activator.gogoshell</artifactId>
  28. <name>no.steria.osgi.jsr330activator.gogoshell (OSGi project)</name>
  29. <!--
  30. | describe your project here
  31. -->
  32. <description>Used to debug bundles: start this project with "mvn pax:provision" and examine registered services and service listeners. Generated using Pax-Construct</description>
  33. <properties>
  34. <!--
  35. | some example OSGi runtime properties
  36. -->
  37. <org.osgi.service.http.port>8080</org.osgi.service.http.port>
  38. <org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure>
  39. </properties>
  40. <packaging>pom</packaging>
  41. <modules>
  42. <module>poms</module>
  43. <module>provision</module>
  44. </modules>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.ops4j</groupId>
  49. <artifactId>maven-pax-plugin</artifactId>
  50. <version>1.5</version>
  51. <configuration>
  52. <!--
  53. | some example Pax-Runner settings
  54. -->
  55. <provision>
  56. <param>--platform=felix</param>
  57. </provision>
  58. </configuration>
  59. <executions>
  60. <!--
  61. | uncomment to auto-generate IDE files
  62. <execution>
  63. <id>ide-support</id>
  64. <goals>
  65. <goal>eclipse</goal>
  66. </goals>
  67. </execution>
  68. -->
  69. </executions>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>