activiti-bpmn-converter-6.1.0.pom 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. <name>Activiti - BPMN Converter</name>
  5. <artifactId>activiti-bpmn-converter</artifactId>
  6. <parent>
  7. <groupId>org.activiti</groupId>
  8. <artifactId>activiti-parent</artifactId>
  9. <relativePath>../activiti-parent</relativePath>
  10. <version>6.1.0</version>
  11. </parent>
  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. <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. <executions>
  34. <execution>
  35. <phase>generate-sources</phase>
  36. <goals>
  37. <goal>cleanVersions</goal>
  38. </goals>
  39. </execution>
  40. <execution>
  41. <id>bundle-manifest</id>
  42. <phase>process-classes</phase>
  43. <goals>
  44. <goal>manifest</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. <pluginManagement>
  51. <plugins>
  52. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  53. <plugin>
  54. <groupId>org.eclipse.m2e</groupId>
  55. <artifactId>lifecycle-mapping</artifactId>
  56. <version>1.0.0</version>
  57. <configuration>
  58. <lifecycleMappingMetadata>
  59. <pluginExecutions>
  60. <pluginExecution>
  61. <pluginExecutionFilter>
  62. <groupId>org.apache.felix</groupId>
  63. <artifactId>
  64. maven-bundle-plugin
  65. </artifactId>
  66. <versionRange>
  67. [2.1.0,)
  68. </versionRange>
  69. <goals>
  70. <goal>cleanVersions</goal>
  71. <goal>manifest</goal>
  72. </goals>
  73. </pluginExecutionFilter>
  74. <action>
  75. <ignore></ignore>
  76. </action>
  77. </pluginExecution>
  78. </pluginExecutions>
  79. </lifecycleMappingMetadata>
  80. </configuration>
  81. </plugin>
  82. </plugins>
  83. </pluginManagement>
  84. </build>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.activiti</groupId>
  88. <artifactId>activiti-bpmn-model</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.activiti</groupId>
  92. <artifactId>activiti-process-validation</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.activiti</groupId>
  97. <artifactId>activiti-bpmn-layout</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-api</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.slf4j</groupId>
  106. <artifactId>jcl-over-slf4j</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-lang3</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>joda-time</groupId>
  114. <artifactId>joda-time</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>ch.qos.logback</groupId>
  118. <artifactId>logback-classic</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.h2database</groupId>
  123. <artifactId>h2</artifactId>
  124. <scope>provided</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>junit</groupId>
  128. <artifactId>junit</artifactId>
  129. <scope>provided</scope>
  130. </dependency>
  131. </dependencies>
  132. <profiles>
  133. <profile>
  134. <id>distro</id>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-source-plugin</artifactId>
  140. <executions>
  141. <execution>
  142. <id>attach-sources</id>
  143. <phase>package</phase>
  144. <goals>
  145. <goal>jar-no-fork</goal>
  146. </goals>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. </plugins>
  151. </build>
  152. </profile>
  153. </profiles>
  154. </project>