Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

120 рядки
3.9 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2013 Jonathan Cobb
  4. This code is available under the Apache License, version 2: http://www.apache.org/licenses/LICENSE-2.0.html
  5. -->
  6. <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/maven-v4_0_0.xsd">
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>org.cobbzilla</groupId>
  10. <artifactId>cobbzilla-parent</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. </parent>
  13. <artifactId>restex</artifactId>
  14. <name>restex</name>
  15. <version>1.0.1-SNAPSHOT</version>
  16. <packaging>jar</packaging>
  17. <licenses>
  18. <license>
  19. <name>The Apache Software License, Version 2.0</name>
  20. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <scm>
  25. <url>http://github.com/cobbzilla/restex</url>
  26. <connection>scm:git:git@github.com:cobbzilla/restex.git</connection>
  27. <developerConnection>scm:git:git@github.com:cobbzilla/restex.git</developerConnection>
  28. </scm>
  29. <dependencies>
  30. <!-- httpclient -->
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpcore</artifactId>
  34. <version>${httpcore.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpclient</artifactId>
  39. <version>${httpclient.version}</version>
  40. </dependency>
  41. <!-- Logging -->
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <version>${slf4j.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>jcl-over-slf4j</artifactId>
  50. <version>${slf4j.version}</version>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <!-- Testing -->
  54. <dependency>
  55. <groupId>org.eclipse.jetty</groupId>
  56. <artifactId>jetty-server</artifactId>
  57. <version>${jetty.version}</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.eclipse.jetty</groupId>
  62. <artifactId>jetty-http</artifactId>
  63. <version>${jetty.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- auto-generate java boilerplate -->
  67. <dependency>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. <version>${lombok.version}</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <!-- handlebars templates -->
  74. <dependency>
  75. <groupId>com.github.jknack</groupId>
  76. <artifactId>handlebars</artifactId>
  77. <version>${handlebars.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.jknack</groupId>
  81. <artifactId>handlebars-jackson2</artifactId>
  82. <version>${handlebars.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-io</groupId>
  86. <artifactId>commons-io</artifactId>
  87. <version>${commons-io.version}</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <!-- use Java 11 -->
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>2.3.2</version>
  97. <configuration>
  98. <source>11</source>
  99. <target>11</target>
  100. <showWarnings>true</showWarnings>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>