2016-11-03 10:58:57 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-02-25 21:36:23 +01:00
|
|
|
<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">
|
2016-03-06 11:49:59 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<name>parent-modules</name>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
2016-09-01 13:54:53 +02:00
|
|
|
<properties>
|
2016-07-06 09:36:46 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-02-09 20:43:33 +01:00
|
|
|
<gib.referenceBranch>refs/heads/master</gib.referenceBranch>
|
2017-07-28 17:49:28 +02:00
|
|
|
<gib.skipTestsForNotImpactedModules>true</gib.skipTestsForNotImpactedModules>
|
|
|
|
|
<gib.failOnMissingGitDir>false</gib.failOnMissingGitDir>
|
|
|
|
|
<gib.failOnError>false</gib.failOnError>
|
2018-02-28 18:33:34 +02:00
|
|
|
<!-- <gib.enabled>false</gib.enabled> -->
|
2017-05-11 18:02:04 +02:00
|
|
|
<junit.version>4.12</junit.version>
|
2017-06-10 11:53:39 +01:00
|
|
|
<org.hamcrest.version>1.3</org.hamcrest.version>
|
2017-07-30 00:29:25 +02:00
|
|
|
<mockito.version>2.8.9</mockito.version>
|
2017-05-11 18:02:04 +02:00
|
|
|
<!-- logging -->
|
|
|
|
|
<org.slf4j.version>1.7.21</org.slf4j.version>
|
|
|
|
|
<logback.version>1.1.7</logback.version>
|
|
|
|
|
<!-- plugins -->
|
2017-06-10 11:53:39 +01:00
|
|
|
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
|
2017-12-28 16:30:01 +02:00
|
|
|
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
|
2016-09-01 13:54:53 +02:00
|
|
|
</properties>
|
2016-07-06 09:36:46 +02:00
|
|
|
|
2016-03-06 11:49:59 +02:00
|
|
|
<modules>
|
|
|
|
|
<module>core-java</module>
|
2017-01-29 21:02:38 +05:30
|
|
|
|
2018-02-25 21:36:23 +01:00
|
|
|
</modules>
|
2017-04-01 09:06:59 +02:00
|
|
|
|
2017-05-11 18:02:04 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- logging -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
|
<version>${logback.version}</version>
|
2017-06-10 11:53:39 +01:00
|
|
|
</dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
<version>${org.slf4j.version}</version>
|
2017-06-10 11:53:39 +01:00
|
|
|
</dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
|
2018-02-28 18:33:34 +02:00
|
|
|
<!-- test -->
|
2017-05-11 18:02:04 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${org.hamcrest.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
|
<version>${org.hamcrest.version}</version>
|
|
|
|
|
<scope>test</scope>
|
2017-06-10 11:53:39 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2017-05-12 20:32:54 +02:00
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
|
<version>${org.hamcrest.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-06-10 11:53:39 +01:00
|
|
|
</dependencies>
|
2017-05-11 18:02:04 +02:00
|
|
|
|
2017-02-09 20:43:33 +01:00
|
|
|
<build>
|
2017-03-19 20:03:23 +01:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<executable>maven</executable>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2017-04-01 09:06:59 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2017-06-10 11:53:39 +01:00
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
2017-04-01 09:06:59 +02:00
|
|
|
<configuration>
|
2017-05-11 18:02:04 +02:00
|
|
|
<forkCount>3</forkCount>
|
|
|
|
|
<reuseForks>true</reuseForks>
|
2017-04-01 09:06:59 +02:00
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
|
<exclude>**/*LongRunningUnitTest.java</exclude>
|
|
|
|
|
<exclude>**/*ManualTest.java</exclude>
|
2017-05-11 18:02:04 +02:00
|
|
|
<exclude>**/JdbcTest.java</exclude>
|
|
|
|
|
<exclude>**/*LiveTest.java</exclude>
|
2017-04-01 09:06:59 +02:00
|
|
|
</excludes>
|
2017-11-06 18:12:14 +02:00
|
|
|
|
2017-04-01 09:06:59 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2017-05-11 18:02:04 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-06-10 11:53:39 +01:00
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
2017-05-11 18:02:04 +02:00
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
</configuration>
|
2017-06-10 11:53:39 +01:00
|
|
|
</plugin>
|
2017-03-19 20:03:23 +01:00
|
|
|
</plugins>
|
2017-02-09 21:40:31 +01:00
|
|
|
<extensions>
|
2017-07-28 17:49:28 +02:00
|
|
|
<extension>
|
2017-02-09 21:40:31 +01:00
|
|
|
<groupId>com.vackosar.gitflowincrementalbuilder</groupId>
|
|
|
|
|
<artifactId>gitflow-incremental-builder</artifactId>
|
2017-07-28 17:49:28 +02:00
|
|
|
<version>3.4</version>
|
|
|
|
|
</extension>
|
2017-02-09 21:40:31 +01:00
|
|
|
</extensions>
|
2017-02-09 20:43:33 +01:00
|
|
|
</build>
|
2018-03-13 02:37:03 +05:30
|
|
|
</project>
|