<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.crc.user-center</groupId>
    <artifactId>user-center</artifactId>
    <version>1.7.0.0</version>
  </parent>
  <groupId>com.crc.user-center</groupId>
  <artifactId>user-center-api</artifactId>
  <version>1.7.0.0</version>
  <name>user-center-api</name>
  <url>http://maven.apache.org</url>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    
        <dependency>
            <groupId>cn.com.crc.ripplescloud</groupId>
            <artifactId>ripplescloud-common-base</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
    </dependencies>
    

    <build>
        <plugins>
            <plugin><!-- 资源文件转码插件 -->
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>native2ascii-maven-plugin</artifactId>
                <version>2.0.1</version>
                <executions>
                    <execution>
                        <id>utf8-to-latin1</id>
                        <goals>
                            <goal>resources</goal>
                        </goals>
                        <phase>process-resources</phase><!-- default -->
                        <configuration>
                            <srcDir>src/main/resources</srcDir>
                            <targetDir>${project.build.outputDirectory}</targetDir><!-- default -->
                            <encoding>${project.build.sourceEncoding}</encoding><!-- default -->
                            <includes>
                                <include>**/*.properties</include><!-- default -->
                            </includes>
                            <excludes>
                                <exclude></exclude><!-- nothing by default -->
                            </excludes>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
</project>