85 lines
3.3 KiB
XML
85 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>services</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>metersphere-system-setting</artifactId>
|
|
<version>${revision}</version>
|
|
<name>system-setting</name>
|
|
<properties>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>metersphere-sdk</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>metersphere-sdk</artifactId>
|
|
<version>${revision}</version>
|
|
<classifier>tests</classifier>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>main-class-placement</id>
|
|
<phase>generate-resources</phase>
|
|
<configuration>
|
|
<skip>${skipAntRunForJenkins}</skip>
|
|
<target>
|
|
<copy todir="target/test-classes/static">
|
|
<fileset dir="../../../frontend/dist"/>
|
|
</copy>
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
<version>1.3.7</version>
|
|
<configuration>
|
|
<verbose>true</verbose>
|
|
<overwrite>true</overwrite>
|
|
<configurationFile>src/main/resources/systemGeneratorConfig.xml</configurationFile>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.16</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itfsw</groupId>
|
|
<artifactId>mybatis-generator-plugin</artifactId>
|
|
<version>1.3.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.metersphere</groupId>
|
|
<artifactId>mybatis-tools</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|