vertx-bridge-common-4.3.7.pom 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="UTF-8"?>
  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>io.vertx</groupId>
  6. <artifactId>vertx-ext-parent</artifactId>
  7. <version>38</version>
  8. </parent>
  9. <artifactId>vertx-bridge-common</artifactId>
  10. <version>4.3.7</version>
  11. <name>Vert.x Bridge Common</name>
  12. <description>Vert.x 3 eventbus bridge common configuration</description>
  13. <properties>
  14. <stack.version>4.3.7</stack.version>
  15. <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
  16. </properties>
  17. <dependencyManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>io.vertx</groupId>
  21. <artifactId>vertx-dependencies</artifactId>
  22. <version>${stack.version}</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. </dependencies>
  27. </dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>io.vertx</groupId>
  31. <artifactId>vertx-codegen</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.vertx</groupId>
  36. <artifactId>vertx-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.vertx</groupId>
  40. <artifactId>vertx-docgen</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.13.1</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.assertj</groupId>
  51. <artifactId>assertj-core</artifactId>
  52. <version>3.3.0</version>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.bsc.maven</groupId>
  60. <artifactId>maven-processor-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <id>generate-test-sources</id>
  64. <goals>
  65. <goal>process-test</goal>
  66. </goals>
  67. <phase>generate-test-sources</phase>
  68. <configuration>
  69. <systemProperties>
  70. <java.util.logging.SimpleFormatter.format>%4$s: %3$s - %5$s %6$s%n</java.util.logging.SimpleFormatter.format>
  71. </systemProperties>
  72. <processors>
  73. <processor>io.vertx.codegen.CodeGenProcessor</processor>
  74. </processors>
  75. <optionMap>
  76. <codegen.output>${project.basedir}/src/test</codegen.output>
  77. <codegen.output.data_object_converters>generated</codegen.output.data_object_converters>
  78. </optionMap>
  79. <defaultOutputDirectory>${project.build.directory}/generated-test-sources/annotations</defaultOutputDirectory>
  80. </configuration>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.codehaus.mojo</groupId>
  86. <artifactId>build-helper-maven-plugin</artifactId>
  87. <executions>
  88. <execution>
  89. <id>add-test-source</id>
  90. <phase>generate-sources</phase>
  91. <goals>
  92. <goal>add-test-source</goal>
  93. </goals>
  94. <configuration>
  95. <sources>
  96. <source>${project.basedir}/src/test/generated</source>
  97. </sources>
  98. </configuration>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>