pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.13.1</version>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <configuration>
  43. <skip>true</skip>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <artifactId>maven-assembly-plugin</artifactId>
  48. <version>3.4.2</version>
  49. <configuration>
  50. <archive>
  51. <manifest>
  52. <!--这里指定要运行的main类-->
  53. <mainClass>demo.insert.InsertHistoricalRandomData</mainClass>
  54. </manifest>
  55. </archive>
  56. <descriptorRefs>
  57. <descriptorRef>jar-with-dependencies</descriptorRef>
  58. </descriptorRefs>
  59. </configuration>
  60. <executions>
  61. <execution>
  62. <id>make-assembly</id>
  63. <phase>package</phase>
  64. <goals>
  65. <goal>single</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>