<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>

    <groupId>net.thevpc.dbclient</groupId>
    <artifactId>net.thevpc.dbclient.dbclient-core</artifactId>
    <version>0.5.8</version>
    <packaging>jar</packaging>
    
    <parent>
        <groupId>net.thevpc.dbclient</groupId>
        <artifactId>net.thevpc.dbclient.dbclient-root</artifactId>
        <version>1.0</version>
        <relativePath>../dbclient-root</relativePath>
    </parent>

    <properties>

    </properties>

    <dependencies> 
		<!-- ##############################
			PRIVATE COMPILE DEPENDENCIES 
		############################## -->
<!--        <dependency>-->
<!--            <groupId>net.thevpc.toolbox</groupId>-->
<!--            <artifactId>jlauncher</artifactId>-->
<!--            <version>${version.jlauncher}</version>-->
<!--        </dependency>-->

<!--        <dependency>-->
<!--            <groupId>net.thevpc.lib</groupId>-->
<!--            <artifactId>swingext</artifactId>-->
<!--            <version>${version.vpc-swingext}</version>-->
<!--        </dependency>-->
        <dependency><groupId>net.thevpc.common</groupId><artifactId>thevpc-common-prs</artifactId><version>2.2.1</version></dependency>
        <dependency><groupId>net.thevpc.common</groupId><artifactId>thevpc-common-swing</artifactId><version>2.5.0</version></dependency>
        <dependency><groupId>net.thevpc.common</groupId><artifactId>thevpc-common-swing-prs</artifactId><version>2.5.0</version></dependency>
        <dependency><groupId>net.thevpc.common</groupId><artifactId>thevpc-common-io</artifactId><version>1.3.13</version></dependency>
        <dependency><groupId>net.thevpc.nuts</groupId><artifactId>nuts</artifactId><version>0.8.9</version></dependency>
		<!-- ##############################
			THIRD PARTY COMPILE DEPENDENCIES 
		############################## -->
      
      
		<!-- ##############################
			TEST DEPENDENCIES
		############################## -->
        <dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${version.junit}</version><scope>test</scope></dependency>
        
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.13.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <id>compile</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <target>
                                <propertyfile file="src/main/resources/net/thevpc/dbclient/api/dbclient-core.build">
                                    <entry key="DBClient.Core.Version" value="${project.version}"/> 
                                    <entry key="DBClient.Core.Date" pattern="yyyy-MM-dd" type="date" value="now"/> 
                                    <entry key="DBClient.Core.DateTime" pattern="yyyy-MM-dd HH:mm:ss" type="date" value="now"/> 
                                </propertyfile>
                            </target>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <overWriteReleases>true</overWriteReleases>
                            <overWriteSnapshots>true</overWriteSnapshots>
                            <overWriteIfNewer>true</overWriteIfNewer>
                            <includeScope>runtime</includeScope>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
