pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>io.edap</groupId>
  7. <artifactId>edap-http-benchmark</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <java.version>8</java.version>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <maven.compiler.compilerVersion>8</maven.compiler.compilerVersion>
  16. <edap.version>0.1-SNAPSHOT</edap.version>
  17. <edap.name>edapx</edap.name>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>io.edap</groupId>
  22. <artifactId>${edap.name}-http</artifactId>
  23. <version>${edap.version}</version>
  24. </dependency>
  25. </dependencies>
  26. <repositories>
  27. <repository>
  28. <id>central</id>
  29. <name>Central Repository</name>
  30. <url>https://repo.maven.apache.org/maven2</url>
  31. </repository>
  32. <repository>
  33. <id>sonatype-nexus-snapshots</id>
  34. <name>Sonatype Nexus Snapshots</name>
  35. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  36. </repository>
  37. </repositories>
  38. <pluginRepositories>
  39. <pluginRepository>
  40. <id>central</id>
  41. <name>Central Repository</name>
  42. <url>https://repo.maven.apache.org/maven2</url>
  43. </pluginRepository>
  44. <pluginRepository>
  45. <id>sonatype-nexus-snapshots</id>
  46. <name>Sonatype Nexus Snapshots</name>
  47. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  48. <releases>
  49. <enabled>false</enabled>
  50. </releases>
  51. <snapshots>
  52. <enabled>true</enabled>
  53. </snapshots>
  54. </pluginRepository>
  55. </pluginRepositories>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <inherited>true</inherited>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>3.8.0</version>
  63. <configuration>
  64. <debug>false</debug>
  65. <source>8</source>
  66. <target>8</target>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <artifactId>maven-assembly-plugin</artifactId>
  71. <version>3.1.0</version>
  72. <configuration>
  73. <descriptorRefs>
  74. <descriptorRef>jar-with-dependencies</descriptorRef>
  75. </descriptorRefs>
  76. </configuration>
  77. <executions>
  78. <execution>
  79. <id>make-assembly</id>
  80. <phase>package</phase>
  81. <goals>
  82. <goal>single</goal>
  83. </goals>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>