pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. <parent>
  7. <artifactId>tsdb-benchmark</artifactId>
  8. <groupId>giannischen.nuaa.edu.cn</groupId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>tsdb</artifactId>
  13. <packaging>jar</packaging>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.8.0</version>
  20. <configuration>
  21. <source>1.8</source>
  22. <target>1.8</target>
  23. </configuration>
  24. </plugin>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-surefire-plugin</artifactId>
  28. <configuration>
  29. <skip>true</skip>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-assembly-plugin</artifactId>
  34. <version>3.4.2</version>
  35. <configuration>
  36. <archive>
  37. <manifest>
  38. <!--这里指定要运行的main类-->
  39. <mainClass>demo.allInsert.InsertHistoricalRandomData</mainClass>
  40. </manifest>
  41. </archive>
  42. <descriptorRefs>
  43. <descriptorRef>jar-with-dependencies</descriptorRef>
  44. </descriptorRefs>
  45. </configuration>
  46. <executions>
  47. <execution>
  48. <id>make-assembly</id>
  49. <phase>package</phase>
  50. <goals>
  51. <goal>single</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.javatuples</groupId>
  61. <artifactId>javatuples</artifactId>
  62. <version>1.2</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.projectlombok</groupId>
  67. <artifactId>lombok</artifactId>
  68. <version>1.18.12</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>1.2.70</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <version>4.5.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-lang3</artifactId>
  84. <version>3.11</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/ru.yandex.clickhouse/clickhouse-jdbc -->
  87. <dependency>
  88. <groupId>ru.yandex.clickhouse</groupId>
  89. <artifactId>clickhouse-jdbc</artifactId>
  90. <version>0.3.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.logging.log4j</groupId>
  94. <artifactId>log4j-slf4j-impl</artifactId>
  95. <version>2.11.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-cli</groupId>
  99. <artifactId>commons-cli</artifactId>
  100. <version>1.2</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>junit</groupId>
  104. <artifactId>junit</artifactId>
  105. <version>4.13.2</version>
  106. <scope>test</scope>
  107. </dependency>
  108. </dependencies>
  109. </project>