maintenance: Update Spacing of XML (#1863)

PR Set 1 of 4
This commit is contained in:
Subhrodip Mohanta 2021-10-19 23:19:46 +05:30 committed by GitHub
parent d9dae3ae6a
commit 37d9ff3342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
44 changed files with 883 additions and 983 deletions

View File

@ -23,42 +23,40 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <modelVersion>4.0.0</modelVersion>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <artifactId>abstract-document</artifactId>
</parent> <dependencies>
<artifactId>abstract-document</artifactId> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies> <plugins>
<build> <!-- Maven assembly plugin is invoked with default setting which we have
<plugins>
<!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.abstractdocument.App</mainClass> <mainClass>com.iluwatar.abstractdocument.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,43 +23,40 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>abstract-factory</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>abstract-factory</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <!-- Maven assembly plugin is invoked with default setting which we have
<build>
<plugins>
<!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.abstractfactory.App</mainClass> <mainClass>com.iluwatar.abstractfactory.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,43 +23,40 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>active-object</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>active-object</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <!-- Maven assembly plugin is invoked with default setting which we have
<build>
<plugins>
<!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.activeobject.App</mainClass> <mainClass>com.iluwatar.activeobject.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -22,53 +23,47 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <modelVersion>4.0.0</modelVersion>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent>
<modelVersion>4.0.0</modelVersion> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>acyclic-visitor</artifactId>
<version>1.25.0-SNAPSHOT</version> <properties>
</parent> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<artifactId>acyclic-visitor</artifactId> <maven.compiler.target>1.8</maven.compiler.target>
</properties>
<properties> <dependencies>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
<maven.compiler.source>1.8</maven.compiler.source> <dependency>
<maven.compiler.target>1.8</maven.compiler.target> <groupId>org.assertj</groupId>
</properties> <artifactId>assertj-core</artifactId>
<version>3.9.1</version>
<dependencies> <scope>test</scope>
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core --> </dependency>
<dependency> <!-- https://mvnrepository.com/artifact/uk.org.lidalia/slf4j-test -->
<groupId>org.assertj</groupId> <dependency>
<artifactId>assertj-core</artifactId> <groupId>uk.org.lidalia</groupId>
<version>3.9.1</version> <artifactId>slf4j-test</artifactId>
<scope>test</scope> <version>1.2.0</version>
</dependency> <scope>test</scope>
<!-- https://mvnrepository.com/artifact/uk.org.lidalia/slf4j-test --> </dependency>
<dependency> <dependency>
<groupId>uk.org.lidalia</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>slf4j-test</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<version>1.2.0</version> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>org.mockito</groupId>
<groupId>org.junit.jupiter</groupId> <artifactId>mockito-all</artifactId>
<artifactId>junit-jupiter-engine</artifactId> <version>1.10.19</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> </dependencies>
<groupId>org.mockito</groupId> <build>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins> <plugins>
<!-- Maven assembly plugin is invoked with default setting which we have <!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,48 +23,45 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>adapter</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>adapter</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> <dependency>
<scope>test</scope> <groupId>org.mockito</groupId>
</dependency> <artifactId>mockito-core</artifactId>
<dependency> <scope>test</scope>
<groupId>org.mockito</groupId> </dependency>
<artifactId>mockito-core</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <!-- Maven assembly plugin is invoked with default setting which we have
<build>
<plugins>
<!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.adapter.App</mainClass> <mainClass>com.iluwatar.adapter.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -23,68 +23,65 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>aggregator-microservices</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>aggregator-microservices</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>aggregator-service</artifactId>
<modelVersion>4.0.0</modelVersion> <packaging>jar</packaging>
<artifactId>aggregator-service</artifactId> <dependencies>
<packaging>jar</packaging> <dependency>
<dependencies> <groupId>org.springframework</groupId>
<dependency> <artifactId>spring-webmvc</artifactId>
<groupId>org.springframework</groupId> </dependency>
<artifactId>spring-webmvc</artifactId> <dependency>
</dependency> <groupId>org.springframework.boot</groupId>
<dependency> <artifactId>spring-boot-starter-web</artifactId>
<groupId>org.springframework.boot</groupId> </dependency>
<artifactId>spring-boot-starter-web</artifactId> <dependency>
</dependency> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.mockito</groupId>
<dependency> <artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId> <scope>test</scope>
<artifactId>mockito-core</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies> <plugins>
<plugin>
<build> <groupId>org.springframework.boot</groupId>
<plugins> <artifactId>spring-boot-maven-plugin</artifactId>
<plugin> <executions>
<groupId>org.springframework.boot</groupId> <execution>
<artifactId>spring-boot-maven-plugin</artifactId> <goals>
<executions> <goal>repackage</goal>
<execution> </goals>
<goals> </execution>
<goal>repackage</goal> </executions>
</goals> </plugin>
</execution> <!-- Maven assembly plugin is invoked with default setting which we have
</executions>
</plugin>
<!-- Maven assembly plugin is invoked with default setting which we have
in parent pom and specifying the class having main method --> in parent pom and specifying the class having main method -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.aggregator.microservices.App</mainClass> <mainClass>com.iluwatar.aggregator.microservices.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -23,63 +23,58 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>aggregator-microservices</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>aggregator-microservices</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>information-microservice</artifactId>
<modelVersion>4.0.0</modelVersion> <packaging>jar</packaging>
<dependencies>
<artifactId>information-microservice</artifactId> <dependency>
<packaging>jar</packaging> <groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<dependencies> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-webmvc</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>junit-jupiter-engine</artifactId>
</dependency> <scope>test</scope>
<dependency> </dependency>
<groupId>org.junit.jupiter</groupId> </dependencies>
<artifactId>junit-jupiter-engine</artifactId> <build>
<scope>test</scope> <plugins>
</dependency> <plugin>
</dependencies> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<build> <executions>
<plugins> <execution>
<plugin> <goals>
<groupId>org.springframework.boot</groupId> <goal>repackage</goal>
<artifactId>spring-boot-maven-plugin</artifactId> </goals>
<executions> </execution>
<execution> </executions>
<goals> </plugin>
<goal>repackage</goal> <plugin>
</goals> <groupId>org.apache.maven.plugins</groupId>
</execution> <artifactId>maven-assembly-plugin</artifactId>
</executions> <executions>
</plugin> <execution>
<plugin> <configuration>
<groupId>org.apache.maven.plugins</groupId> <archive>
<artifactId>maven-assembly-plugin</artifactId> <manifest>
<executions> <mainClass>com.iluwatar.information.microservices.InformationApplication</mainClass>
<execution> </manifest>
<configuration> </archive>
<archive> </configuration>
<manifest> </execution>
<mainClass>com.iluwatar.information.microservices.InformationApplication</mainClass> </executions>
</manifest> </plugin>
</archive> </plugins>
</configuration> </build>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -23,62 +23,58 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>aggregator-microservices</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>aggregator-microservices</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>inventory-microservice</artifactId>
<modelVersion>4.0.0</modelVersion> <packaging>jar</packaging>
<artifactId>inventory-microservice</artifactId> <dependencies>
<dependency>
<packaging>jar</packaging> <groupId>org.springframework</groupId>
<dependencies> <artifactId>spring-webmvc</artifactId>
<dependency> </dependency>
<groupId>org.springframework</groupId> <dependency>
<artifactId>spring-webmvc</artifactId> <groupId>org.springframework.boot</groupId>
</dependency> <artifactId>spring-boot-starter-web</artifactId>
<dependency> </dependency>
<groupId>org.springframework.boot</groupId> <dependency>
<artifactId>spring-boot-starter-web</artifactId> <groupId>org.junit.jupiter</groupId>
</dependency> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<groupId>org.springframework.boot</groupId>
<build> <artifactId>spring-boot-maven-plugin</artifactId>
<plugins> <executions>
<plugin> <execution>
<groupId>org.springframework.boot</groupId> <goals>
<artifactId>spring-boot-maven-plugin</artifactId> <goal>repackage</goal>
<executions> </goals>
<execution> </execution>
<goals> </executions>
<goal>repackage</goal> </plugin>
</goals> <plugin>
</execution> <groupId>org.apache.maven.plugins</groupId>
</executions> <artifactId>maven-assembly-plugin</artifactId>
</plugin> <executions>
<plugin> <execution>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-assembly-plugin</artifactId> <archive>
<executions> <manifest>
<execution> <mainClass>com.iluwatar.inventory.microservices.InventoryApplication</mainClass>
<configuration> </manifest>
<archive> </archive>
<manifest> </configuration>
<mainClass>com.iluwatar.inventory.microservices.InventoryApplication</mainClass> </execution>
</manifest> </executions>
</archive> </plugin>
</configuration> </plugins>
</execution> </build>
</executions>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -23,20 +23,18 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>aggregator-microservices</artifactId>
<modelVersion>4.0.0</modelVersion> <packaging>pom</packaging>
<artifactId>aggregator-microservices</artifactId> <modules>
<packaging>pom</packaging> <module>information-microservice</module>
<modules> <module>aggregator-service</module>
<module>information-microservice</module> <module>inventory-microservice</module>
<module>aggregator-service</module> </modules>
<module>inventory-microservice</module>
</modules>
</project> </project>

View File

@ -23,40 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>ambassador</artifactId>
<modelVersion>4.0.0</modelVersion> <dependencies>
<artifactId>ambassador</artifactId> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies> <plugins>
<build> <plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <executions>
<artifactId>maven-assembly-plugin</artifactId> <execution>
<executions> <configuration>
<execution> <archive>
<configuration> <manifest>
<archive> <mainClass>com.iluwatar.ambassador.App</mainClass>
<manifest> </manifest>
<mainClass>com.iluwatar.ambassador.App</mainClass> </archive>
</manifest> </configuration>
</archive> </execution>
</configuration> </executions>
</execution> </plugin>
</executions> </plugins>
</plugin> </build>
</plugins>
</build>
</project> </project>

View File

@ -23,9 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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">
<parent> <parent>
<artifactId>api-gateway</artifactId> <artifactId>api-gateway</artifactId>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
@ -54,7 +52,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -23,9 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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">
<parent> <parent>
<artifactId>api-gateway</artifactId> <artifactId>api-gateway</artifactId>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
@ -49,7 +47,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -23,9 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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">
<parent> <parent>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -23,19 +23,15 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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">
<parent> <parent>
<artifactId>api-gateway</artifactId> <artifactId>api-gateway</artifactId>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>price-microservice</artifactId> <artifactId>price-microservice</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
@ -51,7 +47,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@ -23,16 +23,13 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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">
<parent> <parent>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>arrange-act-assert</artifactId> <artifactId>arrange-act-assert</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
@ -41,4 +38,4 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,46 +23,43 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>async-method-invocation</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>async-method-invocation</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> <dependency>
<scope>test</scope> <groupId>org.mockito</groupId>
</dependency> <artifactId>mockito-core</artifactId>
<dependency> <scope>test</scope>
<groupId>org.mockito</groupId> </dependency>
<artifactId>mockito-core</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<build> <groupId>org.apache.maven.plugins</groupId>
<plugins> <artifactId>maven-assembly-plugin</artifactId>
<plugin> <executions>
<groupId>org.apache.maven.plugins</groupId> <execution>
<artifactId>maven-assembly-plugin</artifactId> <configuration>
<executions> <archive>
<execution> <manifest>
<configuration> <mainClass>com.iluwatar.async.method.invocation.App</mainClass>
<archive> </manifest>
<manifest> </archive>
<mainClass>com.iluwatar.async.method.invocation.App</mainClass> </configuration>
</manifest> </execution>
</archive> </executions>
</configuration> </plugin>
</execution> </plugins>
</executions> </build>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -23,41 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>balking</artifactId>
<modelVersion>4.0.0</modelVersion> <dependencies>
<dependency>
<artifactId>balking</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<build> <groupId>org.apache.maven.plugins</groupId>
<plugins> <artifactId>maven-assembly-plugin</artifactId>
<plugin> <executions>
<groupId>org.apache.maven.plugins</groupId> <execution>
<artifactId>maven-assembly-plugin</artifactId> <configuration>
<executions> <archive>
<execution> <manifest>
<configuration> <mainClass>com.iluwatar.balking.App</mainClass>
<archive> </manifest>
<manifest> </archive>
<mainClass>com.iluwatar.balking.App</mainClass> </configuration>
</manifest> </execution>
</archive> </executions>
</configuration> </plugin>
</execution> </plugins>
</executions> </build>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,30 +23,27 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>bridge</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>bridge</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> <dependency>
<scope>test</scope> <groupId>org.mockito</groupId>
</dependency> <artifactId>mockito-core</artifactId>
<dependency> <scope>test</scope>
<groupId>org.mockito</groupId> </dependency>
<artifactId>mockito-core</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency>
</dependencies>
<build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,25 +23,22 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>builder</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>builder</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency>
</dependencies>
<build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,46 +23,43 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" <parent>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <groupId>com.iluwatar</groupId>
<modelVersion>4.0.0</modelVersion> <artifactId>java-design-patterns</artifactId>
<parent> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<artifactId>java-design-patterns</artifactId> <artifactId>business-delegate</artifactId>
<version>1.25.0-SNAPSHOT</version> <dependencies>
</parent> <dependency>
<artifactId>business-delegate</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> <dependency>
<scope>test</scope> <groupId>org.mockito</groupId>
</dependency> <artifactId>mockito-core</artifactId>
<dependency> <scope>test</scope>
<groupId>org.mockito</groupId> </dependency>
<artifactId>mockito-core</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<build> <groupId>org.apache.maven.plugins</groupId>
<plugins> <artifactId>maven-assembly-plugin</artifactId>
<plugin> <executions>
<groupId>org.apache.maven.plugins</groupId> <execution>
<artifactId>maven-assembly-plugin</artifactId> <configuration>
<executions> <archive>
<execution> <manifest>
<configuration> <mainClass>com.iluwatar.business.delegate.App</mainClass>
<archive> </manifest>
<manifest> </archive>
<mainClass>com.iluwatar.business.delegate.App</mainClass> </configuration>
</manifest> </execution>
</archive> </executions>
</configuration> </plugin>
</execution> </plugins>
</executions> </build>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -23,43 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>bytecode</artifactId>
<modelVersion>4.0.0</modelVersion> <dependencies>
<dependency>
<artifactId>bytecode</artifactId> <groupId>org.junit.jupiter</groupId>
<dependencies> <artifactId>junit-jupiter-engine</artifactId>
<dependency> <scope>test</scope>
<groupId>org.junit.jupiter</groupId> </dependency>
<artifactId>junit-jupiter-engine</artifactId> </dependencies>
<scope>test</scope> <build>
</dependency> <plugins>
</dependencies> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<build> <artifactId>maven-assembly-plugin</artifactId>
<plugins> <executions>
<plugin> <execution>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-assembly-plugin</artifactId> <archive>
<executions> <manifest>
<execution> <mainClass>com.iluwatar.bytecode.App</mainClass>
<configuration> </manifest>
<archive> </archive>
<manifest> </configuration>
<mainClass>com.iluwatar.bytecode.App</mainClass> </execution>
</manifest> </executions>
</archive> </plugin>
</configuration> </plugins>
</execution> </build>
</executions> </project>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -23,11 +23,10 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions> <suppressions>
<suppress checks="AvoidStarImport" files="[\\/]src[\\/]test[\\/]java[\\/]"/> <suppress checks="AvoidStarImport" files="[\\/]src[\\/]test[\\/]java[\\/]" />
<suppress checks="[a-zA-Z0-9]*" files="[\\/]src[\\/]test[\\/]resources[\\/]"/> <suppress checks="[a-zA-Z0-9]*" files="[\\/]src[\\/]test[\\/]resources[\\/]" />
<suppress checks="[a-zA-Z0-9]*" files="[\\/]build[\\/]generated-sources[\\/]"/> <suppress checks="[a-zA-Z0-9]*" files="[\\/]build[\\/]generated-sources[\\/]" />
<suppress checks="[a-zA-Z0-9]*" files="[\\/]src[\\/]main[\\/]resources[\\/]"/> <suppress checks="[a-zA-Z0-9]*" files="[\\/]src[\\/]main[\\/]resources[\\/]" />
</suppressions> </suppressions>

View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,21 +24,21 @@
--> -->
<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"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>circuit-breaker</artifactId> <artifactId>circuit-breaker</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>

View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,15 +23,13 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>combinator</artifactId> <artifactId>combinator</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
@ -40,5 +38,4 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -55,7 +56,7 @@
</configuration> </configuration>
</execution> </execution>
<execution> <execution>
<id>Message</id> <id>Message</id>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>

View File

@ -23,41 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion>
</parent> <artifactId>composite-entity</artifactId>
<modelVersion>4.0.0</modelVersion> <dependencies>
<artifactId>composite-entity</artifactId> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies> <plugins>
<build> <plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <executions>
<artifactId>maven-assembly-plugin</artifactId> <execution>
<executions> <configuration>
<execution> <archive>
<configuration> <manifest>
<archive> <mainClass>com.iluwatar.composite-entity.com.iluwatar.compositeentity.App</mainClass>
<manifest> </manifest>
<mainClass>com.iluwatar.composite-entity.com.iluwatar.compositeentity.App</mainClass> </archive>
</manifest> </configuration>
</archive> </execution>
</configuration> </executions>
</execution> </plugin>
</executions> </plugins>
</plugin> </build>
</plugins> </project>
</build>
</project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>

View File

@ -23,28 +23,26 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <parent>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <artifactId>java-design-patterns</artifactId>
<parent> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <version>1.25.0-SNAPSHOT</version>
<groupId>com.iluwatar</groupId> </parent>
<version>1.25.0-SNAPSHOT</version> <artifactId>converter</artifactId>
</parent> <modelVersion>4.0.0</modelVersion>
<artifactId>converter</artifactId> <dependencies>
<modelVersion>4.0.0</modelVersion> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>com.google.guava</groupId>
<dependency> <artifactId>guava</artifactId>
<groupId>com.google.guava</groupId> </dependency>
<artifactId>guava</artifactId> </dependencies>
</dependency> <build>
</dependencies>
<build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -63,5 +61,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,43 +23,41 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
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>
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <parent>
<modelVersion>4.0.0</modelVersion> <groupId>com.iluwatar</groupId>
<parent> <artifactId>java-design-patterns</artifactId>
<groupId>com.iluwatar</groupId> <version>1.25.0-SNAPSHOT</version>
<artifactId>java-design-patterns</artifactId> </parent>
<version>1.25.0-SNAPSHOT</version> <artifactId>cqrs</artifactId>
</parent> <dependencies>
<artifactId>cqrs</artifactId> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>com.h2database</groupId>
<dependency> <artifactId>h2</artifactId>
<groupId>com.h2database</groupId> </dependency>
<artifactId>h2</artifactId> <dependency>
</dependency> <groupId>org.hibernate</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>org.hibernate</groupId> </dependency>
<artifactId>hibernate-core</artifactId> <dependency>
</dependency> <groupId>com.sun.xml.bind</groupId>
<dependency> <artifactId>jaxb-impl</artifactId>
<groupId>com.sun.xml.bind</groupId> <version>2.1.17</version>
<artifactId>jaxb-impl</artifactId> <scope>test</scope>
<version>2.1.17</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>javax.xml.bind</groupId>
<dependency> <artifactId>jaxb-api</artifactId>
<groupId>javax.xml.bind</groupId> <scope>test</scope>
<artifactId>jaxb-api</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies>
<build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -78,5 +76,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,17 +23,15 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<!DOCTYPE hibernate-configuration SYSTEM <!DOCTYPE hibernate-configuration SYSTEM "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <hibernate-configuration>
<session-factory> <session-factory>
<property name="dialect">org.hibernate.dialect.H2Dialect</property> <property name="dialect">org.hibernate.dialect.H2Dialect</property>
<property name="connection.driver_class">org.h2.Driver</property> <property name="connection.driver_class">org.h2.Driver</property>
<property name="connection.url">jdbc:h2:mem:test</property> <property name="connection.url">jdbc:h2:mem:test</property>
<property name="connection.username">sa</property> <property name="connection.username">sa</property>
<property name="hbm2ddl.auto">create</property> <property name="hbm2ddl.auto">create</property>
<mapping class="com.iluwatar.cqrs.domain.model.Author" /> <mapping class="com.iluwatar.cqrs.domain.model.Author" />
<mapping class="com.iluwatar.cqrs.domain.model.Book" /> <mapping class="com.iluwatar.cqrs.domain.model.Book" />
</session-factory> </session-factory>
</hibernate-configuration> </hibernate-configuration>

View File

@ -24,14 +24,12 @@
--> -->
<configuration> <configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder> <encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</pattern> </encoder>
</encoder> </appender>
</appender> <root level="info">
<appender-ref ref="STDOUT" />
<root level="info"> </root>
<appender-ref ref="STDOUT" />
</root>
</configuration> </configuration>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,17 +23,15 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<!DOCTYPE hibernate-configuration SYSTEM <!DOCTYPE hibernate-configuration SYSTEM "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration> <hibernate-configuration>
<session-factory> <session-factory>
<property name="dialect">org.hibernate.dialect.H2Dialect</property> <property name="dialect">org.hibernate.dialect.H2Dialect</property>
<property name="connection.driver_class">org.h2.Driver</property> <property name="connection.driver_class">org.h2.Driver</property>
<property name="connection.url">jdbc:h2:mem:test</property> <property name="connection.url">jdbc:h2:mem:test</property>
<property name="connection.username">sa</property> <property name="connection.username">sa</property>
<property name="hbm2ddl.auto">create</property> <property name="hbm2ddl.auto">create</property>
<mapping class="com.iluwatar.cqrs.domain.model.Author" /> <mapping class="com.iluwatar.cqrs.domain.model.Author" />
<mapping class="com.iluwatar.cqrs.domain.model.Book" /> <mapping class="com.iluwatar.cqrs.domain.model.Book" />
</session-factory> </session-factory>
</hibernate-configuration> </hibernate-configuration>

View File

@ -24,14 +24,12 @@
--> -->
<configuration> <configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder> <encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</pattern> </encoder>
</encoder> </appender>
</appender> <root level="info">
<appender-ref ref="STDOUT" />
<root level="info"> </root>
<appender-ref ref="STDOUT" />
</root>
</configuration> </configuration>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,9 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project <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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
@ -33,7 +31,6 @@
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>dao</artifactId> <artifactId>dao</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,45 +23,43 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" <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">
xmlns="http://maven.apache.org/POM/4.0.0" <modelVersion>4.0.0</modelVersion>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <parent>
<modelVersion>4.0.0</modelVersion> <groupId>com.iluwatar</groupId>
<parent> <artifactId>java-design-patterns</artifactId>
<groupId>com.iluwatar</groupId> <version>1.25.0-SNAPSHOT</version>
<artifactId>java-design-patterns</artifactId> </parent>
<version>1.25.0-SNAPSHOT</version> <artifactId>data-bus</artifactId>
</parent> <dependencies>
<artifactId>data-bus</artifactId> <dependency>
<dependencies> <groupId>org.junit.jupiter</groupId>
<dependency> <artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId> <scope>test</scope>
<artifactId>junit-jupiter-engine</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.mockito</groupId>
<dependency> <artifactId>mockito-core</artifactId>
<groupId>org.mockito</groupId> <scope>test</scope>
<artifactId>mockito-core</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency> <build>
</dependencies> <plugins>
<build> <plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <executions>
<artifactId>maven-assembly-plugin</artifactId> <execution>
<executions> <configuration>
<execution> <archive>
<configuration> <manifest>
<archive> <mainClass>com.iluwatar.databus.App</mainClass>
<manifest> </manifest>
<mainClass>com.iluwatar.databus.App</mainClass> </archive>
</manifest> </configuration>
</archive> </execution>
</configuration> </executions>
</execution> </plugin>
</executions> </plugins>
</plugin> </build>
</plugins>
</build>
</project> </project>

View File

@ -23,9 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
@ -33,7 +31,6 @@
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>data-locality</artifactId> <artifactId>data-locality</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
@ -60,4 +57,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,38 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>data-mapper</artifactId> <artifactId>data-mapper</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.datamapper.App</mainClass> <mainClass>com.iluwatar.datamapper.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,38 +23,38 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.25.0-SNAPSHOT</version> <version>1.25.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>data-transfer-object</artifactId> <artifactId>data-transfer-object</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
<mainClass>com.iluwatar.datatransfer.App</mainClass> <mainClass>com.iluwatar.datatransfer.App</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -1,4 +1,4 @@
<?xml version="1.0"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
The MIT License The MIT License
@ -23,8 +23,7 @@
THE SOFTWARE. THE SOFTWARE.
--> -->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" <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">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.iluwatar</groupId> <groupId>com.iluwatar</groupId>