60 lines
1.9 KiB
XML
60 lines
1.9 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<parent>
|
||
|
|
<artifactId>carmis</artifactId>
|
||
|
|
<groupId>com.weiqi</groupId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>car-dao</artifactId>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>1.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis</groupId>
|
||
|
|
<artifactId>mybatis</artifactId>
|
||
|
|
<version>3.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<!--<build>-->
|
||
|
|
<!--<plugins>-->
|
||
|
|
<!--<plugin>-->
|
||
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
||
|
|
<!--<artifactId>spring-boot-maven-plugin</artifactId>-->
|
||
|
|
<!--<configuration>-->
|
||
|
|
<!--<classifier>exec</classifier>-->
|
||
|
|
<!--</configuration>-->
|
||
|
|
<!--</plugin>-->
|
||
|
|
<!--</plugins>-->
|
||
|
|
<!--</build>-->
|
||
|
|
|
||
|
|
<!--定义snapshots库和releases库的nexus地址-->
|
||
|
|
<distributionManagement>
|
||
|
|
<repository>
|
||
|
|
<id>releases</id>
|
||
|
|
<url>
|
||
|
|
http://repo.corpweiqi.com/nexus/content/repositories/releases/
|
||
|
|
</url>
|
||
|
|
</repository>
|
||
|
|
<snapshotRepository>
|
||
|
|
<id>snapshots</id>
|
||
|
|
<url>
|
||
|
|
http://repo.corpweiqi.com/nexus/content/repositories/snapshots/
|
||
|
|
</url>
|
||
|
|
</snapshotRepository>
|
||
|
|
</distributionManagement>
|
||
|
|
</project>
|