Merge branch 'master' of https://github.com/iluwatar/java-design-patterns into 297
Conflicts: pom.xml
This commit is contained in:
78
pom.xml
78
pom.xml
@ -1,13 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
The MIT License
|
||||
Copyright (c) 2014 Ilkka Seppälä
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
-->
|
||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
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>com.iluwatar</groupId>
|
||||
<artifactId>java-design-patterns</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<version>1.12.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<inceptionYear>2014</inceptionYear>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<hibernate.version>5.0.1.Final</hibernate.version>
|
||||
@ -24,6 +45,7 @@
|
||||
<guava.version>19.0</guava.version>
|
||||
<systemrules.version>1.15.1</systemrules.version>
|
||||
<mockito.version>1.10.19</mockito.version>
|
||||
<hierarchical-junit-runner-version>4.12.1</hierarchical-junit-runner-version>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>abstract-factory</module>
|
||||
@ -35,6 +57,7 @@
|
||||
<module>bridge</module>
|
||||
<module>composite</module>
|
||||
<module>dao</module>
|
||||
<module>data-mapper</module>
|
||||
<module>decorator</module>
|
||||
<module>facade</module>
|
||||
<module>flyweight</module>
|
||||
@ -94,6 +117,13 @@
|
||||
<module>delegation</module>
|
||||
<module>event-driven-architecture</module>
|
||||
<module>api-gateway</module>
|
||||
<module>factory-kit</module>
|
||||
<module>feature-toggle</module>
|
||||
<module>value-object</module>
|
||||
<module>monad</module>
|
||||
<module>mute-idiom</module>
|
||||
<module>mutex</module>
|
||||
<module>semaphore</module>
|
||||
</modules>
|
||||
|
||||
<dependencyManagement>
|
||||
@ -166,6 +196,12 @@
|
||||
<version>${systemrules.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.bechte.junit</groupId>
|
||||
<artifactId>junit-hierarchicalcontextrunner</artifactId>
|
||||
<version>${hierarchical-junit-runner-version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
@ -173,8 +209,8 @@
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!-- This plugin's configuration is used to store Eclipse m2e settings
|
||||
only. It has no influence on the Maven build itself. TODO: Remove when the
|
||||
<!-- This plugin's configuration is used to store Eclipse m2e settings
|
||||
only. It has no influence on the Maven build itself. TODO: Remove when the
|
||||
m2e plugin can correctly bind to Maven lifecycle -->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
@ -230,10 +266,10 @@
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>${jacoco.version}</version>
|
||||
<!-- The following exclude configuration was added because error occurred
|
||||
<!-- The following exclude configuration was added because error occurred
|
||||
when executing "mvn clean test jacoco:report coveralls:report" -->
|
||||
<!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report
|
||||
(default-cli) on project java-design-patterns: I/O operation failed: No source
|
||||
<!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report
|
||||
(default-cli) on project java-design-patterns: I/O operation failed: No source
|
||||
found for domainapp/dom/modules/simple/QSimpleObject.java -> [Help 1] -->
|
||||
<configuration>
|
||||
<excludes>
|
||||
@ -328,8 +364,30 @@
|
||||
<excludeFromFailureFile>exclude-pmd.properties</excludeFromFailureFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>com.mycila</groupId>
|
||||
<artifactId>license-maven-plugin</artifactId>
|
||||
<version>2.11</version>
|
||||
<configuration>
|
||||
<header>com/mycila/maven/plugin/license/templates/MIT.txt</header>
|
||||
<properties>
|
||||
<owner>Ilkka Seppälä</owner>
|
||||
</properties>
|
||||
<skipExistingHeaders>true</skipExistingHeaders>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>install-format</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>format</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
@ -342,5 +400,5 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
</project>
|
||||
|
||||
</project>
|
Reference in New Issue
Block a user