activiti-json-converter-6.1.1.pom 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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>activiti-parent</artifactId>
  7. <version>6.1.1</version>
  8. <relativePath>../activiti-parent</relativePath>
  9. </parent>
  10. <artifactId>activiti-json-converter</artifactId>
  11. <name>Activiti - JSON Converter</name>
  12. <properties>
  13. <activiti.artifact>
  14. org.activiti.json.converter
  15. </activiti.artifact>
  16. <activiti.osgi.export.additional>
  17. org.activiti.editor*
  18. </activiti.osgi.export.additional>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-jar-plugin</artifactId>
  25. <configuration>
  26. <archive>
  27. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  28. </archive>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.felix</groupId>
  33. <artifactId>maven-bundle-plugin</artifactId>
  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.activiti</groupId>
  89. <artifactId>activiti-bpmn-model</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.activiti</groupId>
  93. <artifactId>activiti-bpmn-converter</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.commons</groupId>
  98. <artifactId>commons-lang3</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.fasterxml.jackson.core</groupId>
  102. <artifactId>jackson-core</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. <artifactId>jackson-databind</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>joda-time</groupId>
  110. <artifactId>joda-time</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>math.geom2d</groupId>
  114. <artifactId>javaGeom</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. <scope>provided</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.slf4j</groupId>
  123. <artifactId>slf4j-api</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.slf4j</groupId>
  127. <artifactId>jcl-over-slf4j</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>ch.qos.logback</groupId>
  131. <artifactId>logback-classic</artifactId>
  132. <scope>test</scope>
  133. </dependency>
  134. </dependencies>
  135. <profiles>
  136. <profile>
  137. <id>distro</id>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-source-plugin</artifactId>
  143. <executions>
  144. <execution>
  145. <id>attach-sources</id>
  146. <phase>package</phase>
  147. <goals>
  148. <goal>jar-no-fork</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. </profile>
  156. </profiles>
  157. </project>