vertx-web-parent-4.3.7.pom 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <parent>
  4. <groupId>io.vertx</groupId>
  5. <artifactId>vertx-ext-parent</artifactId>
  6. <version>38</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <packaging>pom</packaging>
  10. <artifactId>vertx-web-parent</artifactId>
  11. <version>4.3.7</version>
  12. <properties>
  13. <stack.version>4.3.7</stack.version>
  14. <pac4j.version>1.6.0</pac4j.version>
  15. <snakeyaml.version>1.32</snakeyaml.version>
  16. <doc.skip>true</doc.skip>
  17. <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
  18. </properties>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>io.vertx</groupId>
  23. <artifactId>vertx-dependencies</artifactId>
  24. <version>${stack.version}</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>io.vertx</groupId>
  33. <artifactId>vertx-core</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.vertx</groupId>
  37. <artifactId>vertx-codegen</artifactId>
  38. <scope>provided</scope>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.vertx</groupId>
  43. <artifactId>vertx-docgen</artifactId>
  44. <scope>provided</scope>
  45. </dependency>
  46. <!-- Testing -->
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <version>4.13.2</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.vertx</groupId>
  55. <artifactId>vertx-core</artifactId>
  56. <type>test-jar</type>
  57. <scope>test</scope>
  58. </dependency>
  59. </dependencies>
  60. <modules>
  61. <module>vertx-web-common</module>
  62. <module>vertx-web</module>
  63. <module>vertx-web-client</module>
  64. <module>vertx-template-engines</module>
  65. <module>vertx-web-api-contract</module>
  66. <module>vertx-web-graphql</module>
  67. <module>vertx-web-session-stores</module>
  68. <module>vertx-web-api-service</module>
  69. <module>vertx-web-validation</module>
  70. <module>vertx-web-openapi</module>
  71. <module>vertx-web-proxy</module>
  72. </modules>
  73. <profiles>
  74. <profile>
  75. <id>java-8</id>
  76. <activation>
  77. <jdk>1.8</jdk>
  78. </activation>
  79. <dependencies>
  80. <dependency>
  81. <groupId>io.netty</groupId>
  82. <artifactId>netty-tcnative-boringssl-static</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. </dependencies>
  86. </profile>
  87. </profiles>
  88. </project>