activiti-bpmn-layout-6.1.1.pom 4.1 KB

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