<?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">
    <groupId>com.rocogz.oilcard</groupId>
    <version>2.0.7.RELEASE</version>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>roco-oil-card-account-api</artifactId>


    <dependencies>

        <dependency>
            <groupId>com.rocogz.oilcard.base</groupId>
            <artifactId>common-api</artifactId>
            <version>2.0.5.RELEASE</version>
        </dependency>

    </dependencies>


    <distributionManagement>
        <repository>
            <id>roco-release</id>
            <name>Release Repository</name>
            <url>http://maven.rocoinfo.com/nexus/content/repositories/releases</url>
        </repository>
        <snapshotRepository>
            <id>roco-snapshot</id>
            <name>Snapshot Repository</name>
            <url>http://maven.rocoinfo.com/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.0.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>