<?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">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>net.eulerframework</groupId>
        <artifactId>euler-parent</artifactId>
        <version>3</version>
        <relativePath/>
    </parent>
    
    <artifactId>euler-common</artifactId>
    <version>0.0.7</version>
    <packaging>pom</packaging>
    <name>euler-common</name>
    <url>https://eulerproject.io</url>
    <description>A useful code collection</description>

    <modules>
        <module>euler-common-logging</module>
        <module>euler-common-util</module>
        <module>euler-common-jwt</module>
    </modules>

    <properties>
        <jdk.version>1.7</jdk.version>        
        
        
    </properties>

    <dependencyManagement>
        
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>${jdk.version}</source>
                    <target>${jdk.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <scm>
        <connection>scm:git:https://github.com/euler-projects/euler-common.git</connection>
        <developerConnection>scm:git:git@github.com:euler-projects/euler-common.git</developerConnection>
        <url>https://github.com/euler-projects/euler-common</url>
    </scm>

</project>
