pom.xml 2.4 KB
Newer Older
M
init  
mxd 已提交
1 2 3 4 5 6 7 8 9
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
M
mxd 已提交
10
        <version>2.4.5</version>
M
init  
mxd 已提交
11 12 13 14
        <relativePath/>
    </parent>
    <groupId>org.ssssssss</groupId>
    <artifactId>magic-api-example</artifactId>
M
mxd 已提交
15
    <version>1.3.7</version>
M
init  
mxd 已提交
16 17 18 19 20
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
M
mxd 已提交
21 22 23 24 25 26 27 28
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
M
init  
mxd 已提交
29 30 31 32 33 34 35
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.ssssssss</groupId>
            <artifactId>magic-api-spring-boot-starter</artifactId>
M
mxd 已提交
36
            <version>1.3.7</version>
M
init  
mxd 已提交
37 38 39 40 41 42 43 44 45 46 47
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.9.2</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.9.2</version>
        </dependency>
M
mxd 已提交
48 49 50 51 52
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.2.1</version>
        </dependency>
M
init  
mxd 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>org.ssssssss.example.MagicAPIExampleApplication</mainClass>
                    <finalName>magic-api-demo</finalName>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>