pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <parent>
  5. <groupId>org.activiti</groupId>
  6. <artifactId>ibps-activiti-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <name>Activiti - BPMN Model</name>
  11. <artifactId>ibps-activiti-bpmn-model-5230</artifactId>
  12. <properties>
  13. <activiti.artifact>
  14. org.activiti.bpmn.model
  15. </activiti.artifact>
  16. <activiti.osgi.import.additional>
  17. org.apache.commons.lang;resolution:=optional
  18. </activiti.osgi.import.additional>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <artifactId>maven-jar-plugin</artifactId>
  24. <configuration>
  25. <archive>
  26. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  27. </archive>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.felix</groupId>
  32. <artifactId>maven-bundle-plugin</artifactId>
  33. <version>5.1.9</version>
  34. <executions>
  35. <execution>
  36. <phase>generate-sources</phase>
  37. <goals>
  38. <goal>cleanVersions</goal>
  39. </goals>
  40. </execution>
  41. <execution>
  42. <id>bundle-manifest</id>
  43. <phase>process-classes</phase>
  44. <goals>
  45. <goal>manifest</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. <pluginManagement>
  52. <plugins>
  53. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  54. <plugin>
  55. <groupId>org.eclipse.m2e</groupId>
  56. <artifactId>lifecycle-mapping</artifactId>
  57. <version>1.0.0</version>
  58. <configuration>
  59. <lifecycleMappingMetadata>
  60. <pluginExecutions>
  61. <pluginExecution>
  62. <pluginExecutionFilter>
  63. <groupId>org.apache.felix</groupId>
  64. <artifactId>
  65. maven-bundle-plugin
  66. </artifactId>
  67. <versionRange>
  68. [2.1.0,)
  69. </versionRange>
  70. <goals>
  71. <goal>cleanVersions</goal>
  72. <goal>manifest</goal>
  73. </goals>
  74. </pluginExecutionFilter>
  75. <action>
  76. <ignore></ignore>
  77. </action>
  78. </pluginExecution>
  79. </pluginExecutions>
  80. </lifecycleMappingMetadata>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </pluginManagement>
  85. </build>
  86. <dependencies>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fasterxml.jackson.core</groupId>
  93. <artifactId>jackson-core</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.fasterxml.jackson.core</groupId>
  97. <artifactId>jackson-databind</artifactId>
  98. </dependency>
  99. </dependencies>
  100. </project>