pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  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. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-activiti-bpmn-converter-5230</artifactId>
  12. <properties>
  13. <activiti.artifact>
  14. org.activiti.bpmn.converter
  15. </activiti.artifact>
  16. <activiti.osgi.export.additional>
  17. org.activiti.bpmn.constants,org.activiti.bpmn.util,org.activiti.bpmn.exceptions
  18. </activiti.osgi.export.additional>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.activiti</groupId>
  23. <artifactId>ibps-activiti-bpmn-model-5230</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.activiti</groupId>
  27. <artifactId>activiti-process-validation</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.activiti</groupId>
  32. <artifactId>activiti-bpmn-layout</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.slf4j</groupId>
  41. <artifactId>jcl-over-slf4j</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-lang3</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>joda-time</groupId>
  49. <artifactId>joda-time</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>ch.qos.logback</groupId>
  53. <artifactId>logback-classic</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.h2database</groupId>
  58. <artifactId>h2</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <scope>provided</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <artifactId>maven-jar-plugin</artifactId>
  71. <configuration>
  72. <archive>
  73. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  74. </archive>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <version>3.3</version>
  80. <configuration>
  81. <source>1.8</source>
  82. <target>1.8</target>
  83. <encoding>UTF-8</encoding>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <groupId>org.apache.felix</groupId>
  88. <artifactId>maven-bundle-plugin</artifactId>
  89. <version>5.1.9</version>
  90. <executions>
  91. <execution>
  92. <phase>generate-sources</phase>
  93. <goals>
  94. <goal>cleanVersions</goal>
  95. </goals>
  96. </execution>
  97. <execution>
  98. <id>bundle-manifest</id>
  99. <phase>process-classes</phase>
  100. <goals>
  101. <goal>manifest</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. </plugins>
  107. <pluginManagement>
  108. <plugins>
  109. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  110. <plugin>
  111. <groupId>org.eclipse.m2e</groupId>
  112. <artifactId>lifecycle-mapping</artifactId>
  113. <version>1.0.0</version>
  114. <configuration>
  115. <lifecycleMappingMetadata>
  116. <pluginExecutions>
  117. <pluginExecution>
  118. <pluginExecutionFilter>
  119. <groupId>org.apache.felix</groupId>
  120. <artifactId>
  121. maven-bundle-plugin
  122. </artifactId>
  123. <versionRange>
  124. [2.1.0,)
  125. </versionRange>
  126. <goals>
  127. <goal>cleanVersions</goal>
  128. <goal>manifest</goal>
  129. </goals>
  130. </pluginExecutionFilter>
  131. <action>
  132. <ignore></ignore>
  133. </action>
  134. </pluginExecution>
  135. </pluginExecutions>
  136. </lifecycleMappingMetadata>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </pluginManagement>
  141. </build>
  142. </project>