pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>tsdb-benchmark</artifactId>
  7. <groupId>giannischen.nuaa.edu.cn</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath> <!-- 若无该相对路径,导入Maven项目时,可能该模块pom依赖无法加载 -->
  10. </parent>
  11. <artifactId>iotdb</artifactId>
  12. <name>iotdb</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.iotdb</groupId>
  17. <artifactId>iotdb-session</artifactId>
  18. <version>0.13.3</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. <version>1.18.12</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>commons-cli</groupId>
  27. <artifactId>commons-cli</artifactId>
  28. <version>1.3.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.commons</groupId>
  32. <artifactId>commons-csv</artifactId>
  33. <version>1.7</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <version>4.13.1</version>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-surefire-plugin</artifactId>
  47. <configuration>
  48. <skip>true</skip>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-assembly-plugin</artifactId>
  53. <version>3.4.2</version>
  54. <configuration>
  55. <archive>
  56. <manifest>
  57. <!--这里指定要运行的main类-->
  58. <mainClass>demo.insert.InsertHistoricalRandomData</mainClass>
  59. </manifest>
  60. </archive>
  61. <descriptorRefs>
  62. <descriptorRef>jar-with-dependencies</descriptorRef>
  63. </descriptorRefs>
  64. </configuration>
  65. <executions>
  66. <execution>
  67. <id>make-assembly</id>
  68. <phase>package</phase>
  69. <goals>
  70. <goal>single</goal>
  71. </goals>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>