activiti-process-validation-6.1.1.pom 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-process-validation</artifactId>
  11. <name>Activiti - Process Validation</name>
  12. <properties>
  13. <activiti.artifact>
  14. org.activiti.validation
  15. </activiti.artifact>
  16. </properties>
  17. <build>
  18. <resources>
  19. <resource>
  20. <directory>src/main/resources</directory>
  21. <includes>
  22. <include>**/*.*</include>
  23. </includes>
  24. </resource>
  25. </resources>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-jar-plugin</artifactId>
  29. <configuration>
  30. <archive>
  31. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  32. </archive>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.felix</groupId>
  37. <artifactId>maven-bundle-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <phase>generate-sources</phase>
  41. <goals>
  42. <goal>cleanVersions</goal>
  43. </goals>
  44. </execution>
  45. <execution>
  46. <id>bundle-manifest</id>
  47. <phase>process-classes</phase>
  48. <goals>
  49. <goal>manifest</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. <pluginManagement>
  56. <plugins>
  57. <!--This plugin's configuration is used to store Eclipse m2e settings
  58. only. It has no influence on the Maven build itself. -->
  59. <plugin>
  60. <groupId>org.eclipse.m2e</groupId>
  61. <artifactId>lifecycle-mapping</artifactId>
  62. <version>1.0.0</version>
  63. <configuration>
  64. <lifecycleMappingMetadata>
  65. <pluginExecutions>
  66. <pluginExecution>
  67. <pluginExecutionFilter>
  68. <groupId>org.apache.felix</groupId>
  69. <artifactId>
  70. maven-bundle-plugin
  71. </artifactId>
  72. <versionRange>
  73. [2.1.0,)
  74. </versionRange>
  75. <goals>
  76. <goal>cleanVersions</goal>
  77. <goal>manifest</goal>
  78. </goals>
  79. </pluginExecutionFilter>
  80. <action>
  81. <ignore></ignore>
  82. </action>
  83. </pluginExecution>
  84. </pluginExecutions>
  85. </lifecycleMappingMetadata>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </pluginManagement>
  90. </build>
  91. <dependencies>
  92. <dependency>
  93. <groupId>org.activiti</groupId>
  94. <artifactId>activiti-bpmn-model</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. </dependencies>
  102. </project>