Merge branch 'master' of https://github.com/iluwatar/java-design-patterns
This commit is contained in:
71
pom.xml
71
pom.xml
@ -1,13 +1,39 @@
|
||||
<?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.11.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>
|
||||
@ -93,7 +119,12 @@
|
||||
<module>publish-subscribe</module>
|
||||
<module>delegation</module>
|
||||
<module>event-driven-architecture</module>
|
||||
<<<<<<< HEAD
|
||||
<module>factory-kit</module>
|
||||
=======
|
||||
<module>feature-toggle</module>
|
||||
<module>value-object</module>
|
||||
>>>>>>> f1122f78e32c4db99b42bc224344651dba9b0757
|
||||
</modules>
|
||||
|
||||
<dependencyManagement>
|
||||
@ -173,8 +204,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 +261,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 +359,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 +395,5 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
|
||||
</project>
|
||||
|
Reference in New Issue
Block a user