github.com/matrixorigin/matrixone@v1.2.0/test/distributed/resources/blob_file/blob9.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  
     3  <project xmlns="http://maven.apache.org/POM/4.0.0" 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  
     7    <groupId>io.mo</groupId>
     8    <artifactId>mo-tester</artifactId>
     9    <version>1.0-SNAPSHOT</version>
    10  
    11    <build>
    12      <plugins>
    13        <plugin>
    14          <groupId>org.apache.maven.plugins</groupId>
    15          <artifactId>maven-compiler-plugin</artifactId>
    16          <configuration>
    17            <source>1.8</source>
    18            <target>1.8</target>
    19            <encoding>UTF-8</encoding>
    20          </configuration>
    21        </plugin>
    22        <plugin>
    23          <groupId>org.apache.maven.plugins</groupId>
    24          <artifactId>maven-jar-plugin</artifactId>
    25          <version>2.3.1</version>
    26          <configuration>
    27            <archive>
    28              <manifest>
    29                <!--运行jar包时运行的主类,要求类全名-->
    30                <mainClass>io.mo.Tester</mainClass>
    31                <!-- 是否指定项目classpath下的依赖 -->
    32                <addClasspath>true</addClasspath>
    33                <!-- 指定依赖的时候声明前缀 -->
    34                <classpathPrefix>./lib</classpathPrefix>
    35              </manifest>
    36            </archive>
    37          </configuration>
    38        </plugin>
    39        <plugin>
    40          <groupId>org.apache.maven.plugins</groupId>
    41          <artifactId>maven-assembly-plugin</artifactId>
    42          <executions>
    43            <execution>
    44              <id>make-assembly</id>
    45              <phase>package</phase><!-- 绑定到package生命周期阶段上 -->
    46              <goals>
    47                <goal>single</goal>
    48              </goals>
    49              <configuration>
    50                <descriptor>assembly.xml</descriptor>
    51              </configuration>
    52            </execution>
    53          </executions>
    54        </plugin>
    55      </plugins>
    56    </build>
    57    <packaging>jar</packaging>
    58  
    59    <name>mo-tester</name>
    60    <url>http://maven.apache.org</url>
    61  
    62    <properties>
    63      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    64    </properties>
    65  
    66    <dependencies>
    67      <dependency>
    68        <groupId>junit</groupId>
    69        <artifactId>junit</artifactId>
    70        <version>3.8.1</version>
    71        <scope>test</scope>
    72      </dependency>
    73      <dependency>
    74        <groupId>org.mybatis</groupId>
    75        <artifactId>mybatis</artifactId>
    76        <version>3.3.0</version>
    77      </dependency>
    78      <dependency>
    79        <groupId>org.jbehave</groupId>
    80        <artifactId>jbehave-core</artifactId>
    81        <version>4.6</version>
    82      </dependency>
    83      <dependency>
    84        <groupId>mysql</groupId>
    85        <artifactId>mysql-connector-java</artifactId>
    86        <version>8.0.15</version>
    87      </dependency>
    88      <dependency>
    89        <groupId>org.yaml</groupId>
    90        <artifactId>snakeyaml</artifactId>
    91        <version>1.26</version>
    92      </dependency>
    93      <dependency>
    94        <groupId>log4j</groupId>
    95        <artifactId>log4j</artifactId>
    96        <version>1.2.17</version>
    97      </dependency>
    98      <dependency>
    99        <groupId>io.github.java-diff-utils</groupId>
   100        <artifactId>java-diff-utils</artifactId>
   101        <version>4.7</version>
   102      </dependency>
   103      <dependency>
   104        <groupId>org.apache.poi</groupId>
   105        <artifactId>poi-ooxml</artifactId>
   106        <version>3.15</version>
   107      </dependency>
   108      <dependency>
   109        <groupId>dom4j</groupId>
   110        <artifactId>dom4j</artifactId>
   111        <version>1.6.1</version>
   112      </dependency>
   113    </dependencies>
   114  </project>