activiti-image-generator-6.1.0.pom 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 - Image Generator</name>
  5. <artifactId>activiti-image-generator</artifactId>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>org.activiti</groupId>
  9. <artifactId>activiti-parent</artifactId>
  10. <version>6.1.0</version>
  11. <relativePath>../activiti-parent</relativePath>
  12. </parent>
  13. <properties>
  14. <activiti.artifact>
  15. org.activiti.image
  16. </activiti.artifact>
  17. <activiti.osgi.import.additional>
  18. javax.imageio*;resolution:=optional,
  19. </activiti.osgi.import.additional>
  20. </properties>
  21. <build>
  22. <resources>
  23. <resource>
  24. <directory>src/main/resources</directory>
  25. <includes>
  26. <include>**/*.*</include>
  27. </includes>
  28. </resource>
  29. </resources>
  30. <plugins>
  31. <plugin>
  32. <artifactId>maven-jar-plugin</artifactId>
  33. <configuration>
  34. <archive>
  35. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  36. </archive>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.felix</groupId>
  41. <artifactId>maven-bundle-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <phase>generate-sources</phase>
  45. <goals>
  46. <goal>cleanVersions</goal>
  47. </goals>
  48. </execution>
  49. <execution>
  50. <id>bundle-manifest</id>
  51. <phase>process-classes</phase>
  52. <goals>
  53. <goal>manifest</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. <pluginManagement>
  60. <plugins>
  61. <!--This plugin's configuration is used to store Eclipse m2e settings
  62. only. It has no influence on the Maven build itself. -->
  63. <plugin>
  64. <groupId>org.eclipse.m2e</groupId>
  65. <artifactId>lifecycle-mapping</artifactId>
  66. <version>1.0.0</version>
  67. <configuration>
  68. <lifecycleMappingMetadata>
  69. <pluginExecutions>
  70. <pluginExecution>
  71. <pluginExecutionFilter>
  72. <groupId>org.apache.felix</groupId>
  73. <artifactId>
  74. maven-bundle-plugin
  75. </artifactId>
  76. <versionRange>
  77. [2.1.0,)
  78. </versionRange>
  79. <goals>
  80. <goal>cleanVersions</goal>
  81. <goal>manifest</goal>
  82. </goals>
  83. </pluginExecutionFilter>
  84. <action>
  85. <ignore></ignore>
  86. </action>
  87. </pluginExecution>
  88. </pluginExecutions>
  89. </lifecycleMappingMetadata>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </pluginManagement>
  94. </build>
  95. <dependencies>
  96. <dependency>
  97. <groupId>org.activiti</groupId>
  98. <artifactId>activiti-bpmn-model</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-api</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. </dependencies>
  110. <profiles>
  111. <profile>
  112. <id>distro</id>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-source-plugin</artifactId>
  118. <executions>
  119. <execution>
  120. <id>attach-sources</id>
  121. <phase>package</phase>
  122. <goals>
  123. <goal>jar-no-fork</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </profile>
  131. </profiles>
  132. </project>