pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>com.scytl.products.ov.sdm</groupId>
  6. <artifactId>ov-secure-data-manager-backend</artifactId>
  7. <version>2.1.6</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.sdm.services</groupId>
  10. <artifactId>secure-data-manager-integration</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Secure Data Manager - Backend - Integration</name>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.codehaus.mojo</groupId>
  17. <artifactId>build-helper-maven-plugin</artifactId>
  18. <executions>
  19. <execution>
  20. <id>add-source</id>
  21. <phase>generate-sources</phase>
  22. <goals>
  23. <goal>add-source</goal>
  24. </goals>
  25. <configuration>
  26. <sources>
  27. <source>${basedir}/target/generated-sources/java</source>
  28. </sources>
  29. </configuration>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.codehaus.mojo</groupId>
  35. <artifactId>jaxb2-maven-plugin</artifactId>
  36. <version>1.6</version>
  37. <executions>
  38. <execution>
  39. <id>election</id>
  40. <phase>generate-sources</phase>
  41. <goals>
  42. <goal>xjc</goal>
  43. </goals>
  44. <configuration>
  45. <!-- The schema directory or xsd files. -->
  46. <schemaDirectory>${basedir}/src/main/resources/xsd</schemaDirectory>
  47. <!-- The package in which the source files will be generated. -->
  48. <packageName>com.scytl.product.ov.sdm.plugin</packageName>
  49. <!-- The working directory to create the generated java source files. -->
  50. <outputDirectory>${basedir}/target/generated-sources/java</outputDirectory>
  51. <removeOldOutput>false</removeOldOutput>
  52. <clearOutputDir>false</clearOutputDir>
  53. <forceRegenerate>true</forceRegenerate>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. <configuration>
  58. <properties>
  59. <property>
  60. <name>javax.xml.accessExternalSchema</name>
  61. <value />
  62. </property>
  63. <property>
  64. <name>javax.xml.accessExternalDTD</name>
  65. <value />
  66. </property>
  67. </properties>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.jbehave</groupId>
  72. <artifactId>jbehave-maven-plugin</artifactId>
  73. <version>4.0.5</version>
  74. <executions>
  75. <execution>
  76. <id>run-stories-as-embeddables</id>
  77. <phase>test</phase>
  78. <configuration>
  79. <scope>test</scope>
  80. <skip>${skipTests}</skip>
  81. <verboseFailures>true</verboseFailures>
  82. <ignoreFailureInStories>false</ignoreFailureInStories>
  83. <ignoreFailureInView>false</ignoreFailureInView>
  84. <includes>
  85. <include>**/*Stories.java</include>
  86. </includes>
  87. <metaFilters>
  88. <metaFilter>-skip</metaFilter>
  89. </metaFilters>
  90. <systemProperties>
  91. <property>
  92. <name>java.awt.headless</name>
  93. <value>true</value>
  94. </property>
  95. </systemProperties>
  96. </configuration>
  97. <goals>
  98. <goal>run-stories-as-embeddables</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. <dependencies>
  103. <dependency>
  104. <groupId>log4j</groupId>
  105. <artifactId>log4j</artifactId>
  106. <version>1.3alpha-7-local</version>
  107. <scope>compile</scope>
  108. </dependency>
  109. </dependencies>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. <dependencies>
  114. <dependency>
  115. <groupId>org.mockito</groupId>
  116. <artifactId>mockito-core</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>junit</groupId>
  121. <artifactId>junit</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>javax.xml.bind</groupId>
  126. <artifactId>jaxb-api</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.sun.xml.bind</groupId>
  130. <artifactId>jaxb-impl</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.sun.xml.bind</groupId>
  134. <artifactId>jaxb-core</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.jbehave</groupId>
  138. <artifactId>jbehave-core</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>de.codecentric</groupId>
  143. <artifactId>jbehave-junit-runner</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>commons-io</groupId>
  148. <artifactId>commons-io</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>commons-cli</groupId>
  152. <artifactId>commons-cli</artifactId>
  153. </dependency>
  154. </dependencies>
  155. </project>