Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit37d9ff3

Browse files
authored
maintenance: Update Spacing of XML (iluwatar#1863)
PR Set 1 of 4
1 parentd9dae3a commit37d9ff3

File tree

44 files changed

+883
-983
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+883
-983
lines changed

‎abstract-document/pom.xml

Lines changed: 35 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -23,42 +23,40 @@
2323
THE SOFTWARE.
2424
2525
-->
26-
<projectxmlns="http://maven.apache.org/POM/4.0.0"
27-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
29-
<modelVersion>4.0.0</modelVersion>
30-
<parent>
31-
<artifactId>java-design-patterns</artifactId>
32-
<groupId>com.iluwatar</groupId>
33-
<version>1.25.0-SNAPSHOT</version>
34-
</parent>
35-
<artifactId>abstract-document</artifactId>
36-
<dependencies>
37-
<dependency>
38-
<groupId>org.junit.jupiter</groupId>
39-
<artifactId>junit-jupiter-engine</artifactId>
40-
<scope>test</scope>
41-
</dependency>
42-
</dependencies>
43-
<build>
44-
<plugins>
45-
<!-- Maven assembly plugin is invoked with default setting which we have
26+
<projectxmlns="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">
27+
<modelVersion>4.0.0</modelVersion>
28+
<parent>
29+
<artifactId>java-design-patterns</artifactId>
30+
<groupId>com.iluwatar</groupId>
31+
<version>1.25.0-SNAPSHOT</version>
32+
</parent>
33+
<artifactId>abstract-document</artifactId>
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter-engine</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
</dependencies>
41+
<build>
42+
<plugins>
43+
<!-- Maven assembly plugin is invoked with default setting which we have
4644
in parent pom and specifying the class having main method-->
47-
<plugin>
48-
<groupId>org.apache.maven.plugins</groupId>
49-
<artifactId>maven-assembly-plugin</artifactId>
50-
<executions>
51-
<execution>
52-
<configuration>
53-
<archive>
54-
<manifest>
55-
<mainClass>com.iluwatar.abstractdocument.App</mainClass>
56-
</manifest>
57-
</archive>
58-
</configuration>
59-
</execution>
60-
</executions>
61-
</plugin>
62-
</plugins>
63-
</build>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-assembly-plugin</artifactId>
48+
<executions>
49+
<execution>
50+
<configuration>
51+
<archive>
52+
<manifest>
53+
<mainClass>com.iluwatar.abstractdocument.App</mainClass>
54+
</manifest>
55+
</archive>
56+
</configuration>
57+
</execution>
58+
</executions>
59+
</plugin>
60+
</plugins>
61+
</build>
6462
</project>

‎abstract-factory/pom.xml

Lines changed: 36 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
44
The MIT License
@@ -23,43 +23,40 @@
2323
THE SOFTWARE.
2424
2525
-->
26-
<project
27-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
28-
xmlns="http://maven.apache.org/POM/4.0.0"
29-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
30-
<modelVersion>4.0.0</modelVersion>
31-
<parent>
32-
<groupId>com.iluwatar</groupId>
33-
<artifactId>java-design-patterns</artifactId>
34-
<version>1.25.0-SNAPSHOT</version>
35-
</parent>
36-
<artifactId>abstract-factory</artifactId>
37-
<dependencies>
38-
<dependency>
39-
<groupId>org.junit.jupiter</groupId>
40-
<artifactId>junit-jupiter-engine</artifactId>
41-
<scope>test</scope>
42-
</dependency>
43-
</dependencies>
44-
<build>
45-
<plugins>
46-
<!-- Maven assembly plugin is invoked with default setting which we have
26+
<projectxmlns="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">
27+
<modelVersion>4.0.0</modelVersion>
28+
<parent>
29+
<groupId>com.iluwatar</groupId>
30+
<artifactId>java-design-patterns</artifactId>
31+
<version>1.25.0-SNAPSHOT</version>
32+
</parent>
33+
<artifactId>abstract-factory</artifactId>
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter-engine</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
</dependencies>
41+
<build>
42+
<plugins>
43+
<!-- Maven assembly plugin is invoked with default setting which we have
4744
in parent pom and specifying the class having main method-->
48-
<plugin>
49-
<groupId>org.apache.maven.plugins</groupId>
50-
<artifactId>maven-assembly-plugin</artifactId>
51-
<executions>
52-
<execution>
53-
<configuration>
54-
<archive>
55-
<manifest>
56-
<mainClass>com.iluwatar.abstractfactory.App</mainClass>
57-
</manifest>
58-
</archive>
59-
</configuration>
60-
</execution>
61-
</executions>
62-
</plugin>
63-
</plugins>
64-
</build>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-assembly-plugin</artifactId>
48+
<executions>
49+
<execution>
50+
<configuration>
51+
<archive>
52+
<manifest>
53+
<mainClass>com.iluwatar.abstractfactory.App</mainClass>
54+
</manifest>
55+
</archive>
56+
</configuration>
57+
</execution>
58+
</executions>
59+
</plugin>
60+
</plugins>
61+
</build>
6562
</project>

‎active-object/pom.xml

Lines changed: 36 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
44
The MIT License
@@ -23,43 +23,40 @@
2323
THE SOFTWARE.
2424
2525
-->
26-
<project
27-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
28-
xmlns="http://maven.apache.org/POM/4.0.0"
29-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
30-
<modelVersion>4.0.0</modelVersion>
31-
<parent>
32-
<groupId>com.iluwatar</groupId>
33-
<artifactId>java-design-patterns</artifactId>
34-
<version>1.25.0-SNAPSHOT</version>
35-
</parent>
36-
<artifactId>active-object</artifactId>
37-
<dependencies>
38-
<dependency>
39-
<groupId>org.junit.jupiter</groupId>
40-
<artifactId>junit-jupiter-engine</artifactId>
41-
<scope>test</scope>
42-
</dependency>
43-
</dependencies>
44-
<build>
45-
<plugins>
46-
<!-- Maven assembly plugin is invoked with default setting which we have
26+
<projectxmlns="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">
27+
<modelVersion>4.0.0</modelVersion>
28+
<parent>
29+
<groupId>com.iluwatar</groupId>
30+
<artifactId>java-design-patterns</artifactId>
31+
<version>1.25.0-SNAPSHOT</version>
32+
</parent>
33+
<artifactId>active-object</artifactId>
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter-engine</artifactId>
38+
<scope>test</scope>
39+
</dependency>
40+
</dependencies>
41+
<build>
42+
<plugins>
43+
<!-- Maven assembly plugin is invoked with default setting which we have
4744
in parent pom and specifying the class having main method-->
48-
<plugin>
49-
<groupId>org.apache.maven.plugins</groupId>
50-
<artifactId>maven-assembly-plugin</artifactId>
51-
<executions>
52-
<execution>
53-
<configuration>
54-
<archive>
55-
<manifest>
56-
<mainClass>com.iluwatar.activeobject.App</mainClass>
57-
</manifest>
58-
</archive>
59-
</configuration>
60-
</execution>
61-
</executions>
62-
</plugin>
63-
</plugins>
64-
</build>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-assembly-plugin</artifactId>
48+
<executions>
49+
<execution>
50+
<configuration>
51+
<archive>
52+
<manifest>
53+
<mainClass>com.iluwatar.activeobject.App</mainClass>
54+
</manifest>
55+
</archive>
56+
</configuration>
57+
</execution>
58+
</executions>
59+
</plugin>
60+
</plugins>
61+
</build>
6562
</project>

‎acyclic-visitor/pom.xml

Lines changed: 42 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<!--
23
34
The MIT License
@@ -22,53 +23,47 @@
2223
THE SOFTWARE.
2324
2425
-->
25-
<projectxmlns="http://maven.apache.org/POM/4.0.0"
26-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28-
<modelVersion>4.0.0</modelVersion>
29-
30-
<parent>
31-
<groupId>com.iluwatar</groupId>
32-
<artifactId>java-design-patterns</artifactId>
33-
<version>1.25.0-SNAPSHOT</version>
34-
</parent>
35-
36-
<artifactId>acyclic-visitor</artifactId>
37-
38-
<properties>
39-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40-
<maven.compiler.source>1.8</maven.compiler.source>
41-
<maven.compiler.target>1.8</maven.compiler.target>
42-
</properties>
43-
44-
<dependencies>
45-
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core-->
46-
<dependency>
47-
<groupId>org.assertj</groupId>
48-
<artifactId>assertj-core</artifactId>
49-
<version>3.9.1</version>
50-
<scope>test</scope>
51-
</dependency>
52-
<!-- https://mvnrepository.com/artifact/uk.org.lidalia/slf4j-test-->
53-
<dependency>
54-
<groupId>uk.org.lidalia</groupId>
55-
<artifactId>slf4j-test</artifactId>
56-
<version>1.2.0</version>
57-
<scope>test</scope>
58-
</dependency>
59-
<dependency>
60-
<groupId>org.junit.jupiter</groupId>
61-
<artifactId>junit-jupiter-engine</artifactId>
62-
<scope>test</scope>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.mockito</groupId>
66-
<artifactId>mockito-all</artifactId>
67-
<version>1.10.19</version>
68-
<scope>test</scope>
69-
</dependency>
70-
</dependencies>
71-
<build>
26+
<projectxmlns="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">
27+
<modelVersion>4.0.0</modelVersion>
28+
<parent>
29+
<groupId>com.iluwatar</groupId>
30+
<artifactId>java-design-patterns</artifactId>
31+
<version>1.25.0-SNAPSHOT</version>
32+
</parent>
33+
<artifactId>acyclic-visitor</artifactId>
34+
<properties>
35+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36+
<maven.compiler.source>1.8</maven.compiler.source>
37+
<maven.compiler.target>1.8</maven.compiler.target>
38+
</properties>
39+
<dependencies>
40+
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core-->
41+
<dependency>
42+
<groupId>org.assertj</groupId>
43+
<artifactId>assertj-core</artifactId>
44+
<version>3.9.1</version>
45+
<scope>test</scope>
46+
</dependency>
47+
<!-- https://mvnrepository.com/artifact/uk.org.lidalia/slf4j-test-->
48+
<dependency>
49+
<groupId>uk.org.lidalia</groupId>
50+
<artifactId>slf4j-test</artifactId>
51+
<version>1.2.0</version>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.junit.jupiter</groupId>
56+
<artifactId>junit-jupiter-engine</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.mockito</groupId>
61+
<artifactId>mockito-all</artifactId>
62+
<version>1.10.19</version>
63+
<scope>test</scope>
64+
</dependency>
65+
</dependencies>
66+
<build>
7267
<plugins>
7368
<!-- Maven assembly plugin is invoked with default setting which we have
7469
in parent pom and specifying the class having main method-->

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp