Merge pull request #13789 from dkapil/task/JAVA-19536_efgh
JAVA-19536 Formatting of pom.xml
This commit is contained in:
		
						commit
						25d45b36aa
					
				| @ -1,7 +1,7 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <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> | ||||
|     <groupId>com.baeldung.ethereum</groupId> | ||||
|     <artifactId>ethereum</artifactId> | ||||
| @ -113,7 +113,8 @@ | ||||
|             <scope>test</scope> | ||||
|             <version>${spring.boot.version}</version> | ||||
|             <exclusions> | ||||
|                 <!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine included in parent-modules. --> | ||||
|                 <!-- junit4 dependency is excluded as it should to be resolved from junit-vintage-engine  | ||||
|                     included in parent-modules. --> | ||||
|                 <exclusion> | ||||
|                     <groupId>junit</groupId> | ||||
|                     <artifactId>junit</artifactId> | ||||
| @ -195,4 +196,5 @@ | ||||
|         <spring-boot-maven-plugin.version>2.0.4.RELEASE</spring-boot-maven-plugin.version> | ||||
|         <compiler.plugin.version>3.1</compiler.plugin.version> | ||||
|     </properties> | ||||
| 
 | ||||
| </project> | ||||
| @ -3,7 +3,6 @@ | ||||
|     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.baeldung.feign</groupId> | ||||
|     <artifactId>feign</artifactId> | ||||
|     <name>feign</name> | ||||
| 
 | ||||
|  | ||||
| @ -1,48 +1,51 @@ | ||||
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|   <modelVersion>4.0.0</modelVersion> | ||||
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <artifactId>gcp-firebase</artifactId> | ||||
| 
 | ||||
|     <parent> | ||||
|         <groupId>com.baeldung</groupId> | ||||
|         <artifactId>parent-boot-2</artifactId> | ||||
|         <version>0.0.1-SNAPSHOT</version> | ||||
|         <relativePath>../parent-boot-2</relativePath> | ||||
|     </parent> | ||||
|   <artifactId>gcp-firebase</artifactId> | ||||
| 
 | ||||
|   <properties> | ||||
|     <firebase-admin.version>9.1.1</firebase-admin.version> | ||||
|   </properties> | ||||
| 
 | ||||
|   <dependencies> | ||||
|     <dependency> | ||||
|       <groupId>com.google.firebase</groupId> | ||||
|       <artifactId>firebase-admin</artifactId> | ||||
|       <version>${firebase-admin.version}</version> | ||||
|     </dependency> | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>com.google.firebase</groupId> | ||||
|             <artifactId>firebase-admin</artifactId> | ||||
|             <version>${firebase-admin.version}</version> | ||||
|         </dependency> | ||||
| 
 | ||||
| 
 | ||||
|     <dependency> | ||||
|       <groupId>org.springframework.boot</groupId> | ||||
|       <artifactId>spring-boot-starter-web</artifactId> | ||||
|     </dependency> | ||||
|     <dependency> | ||||
|       <groupId>org.springframework.boot</groupId> | ||||
|       <artifactId>spring-boot-starter-test</artifactId> | ||||
|       <scope>test</scope> | ||||
|     </dependency> | ||||
|     <dependency> | ||||
|         <groupId>org.springframework.boot</groupId> | ||||
|         <artifactId>spring-boot-configuration-processor</artifactId> | ||||
|         <optional>true</optional> | ||||
|     </dependency> | ||||
|   </dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-web</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-test</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-configuration-processor</artifactId> | ||||
|             <optional>true</optional> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 
 | ||||
|     <build> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.springframework.boot</groupId> | ||||
|                 <artifactId>spring-boot-maven-plugin</artifactId> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| 
 | ||||
|     <properties> | ||||
|         <firebase-admin.version>9.1.1</firebase-admin.version> | ||||
|     </properties> | ||||
| 
 | ||||
|   <build> | ||||
|     <plugins> | ||||
|       <plugin> | ||||
|         <groupId>org.springframework.boot</groupId> | ||||
|         <artifactId>spring-boot-maven-plugin</artifactId> | ||||
|       </plugin> | ||||
|     </plugins> | ||||
|   </build> | ||||
| </project> | ||||
| @ -4,10 +4,8 @@ | ||||
|     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> | ||||
|     <artifactId>geotools</artifactId> | ||||
|     <version>0.0.1-SNAPSHOT</version> | ||||
|     <name>geotools</name> | ||||
|     <packaging>jar</packaging> | ||||
|     <url>http://maven.apache.org</url> | ||||
| 
 | ||||
|     <parent> | ||||
|         <groupId>com.baeldung</groupId> | ||||
| @ -15,14 +13,6 @@ | ||||
|         <version>1.0.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 
 | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>osgeo-release</id> | ||||
|             <name>OSGeo Repository</name> | ||||
|             <url>https://repo.osgeo.org/repository/release/</url> | ||||
|         </repository> | ||||
|     </repositories> | ||||
| 
 | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.geotools</groupId> | ||||
| @ -41,6 +31,14 @@ | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 
 | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>osgeo-release</id> | ||||
|             <name>OSGeo Repository</name> | ||||
|             <url>https://repo.osgeo.org/repository/release/</url> | ||||
|         </repository> | ||||
|     </repositories> | ||||
| 
 | ||||
|     <properties> | ||||
|         <geotools.version>28.1</geotools.version> | ||||
|         <geotools-swing.version>28.1</geotools-swing.version> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>google-cloud</artifactId> | ||||
|     <version>0.1-SNAPSHOT</version> | ||||
|     <name>google-cloud</name> | ||||
|     <packaging>jar</packaging> | ||||
|     <description>Google Cloud Tutorials</description> | ||||
| @ -24,7 +23,6 @@ | ||||
|         <dependency> | ||||
|             <groupId>org.projectlombok</groupId> | ||||
|             <artifactId>lombok</artifactId> | ||||
|             <!-- Check for the most recent available version: https://projectlombok.org/changelog.html --> | ||||
|             <version>${lombok.version}</version> | ||||
|             <scope>provided</scope> | ||||
|         </dependency> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>graphql-dgs</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <name>graphql-dgs</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>graphql-java</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <name>graphql-java</name> | ||||
| 
 | ||||
|     <parent> | ||||
| @ -13,21 +12,6 @@ | ||||
|         <version>1.0.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 
 | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>jitpack.io</id> | ||||
|             <url>https://jitpack.io</url> | ||||
|         </repository> | ||||
|         <repository> | ||||
|             <snapshots> | ||||
|                 <enabled>false</enabled> | ||||
|             </snapshots> | ||||
|             <id>central</id> | ||||
|             <name>Central Repository</name> | ||||
|             <url>https://repo.maven.apache.org/maven2</url> | ||||
|         </repository> | ||||
|     </repositories> | ||||
| 
 | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>com.graphql-java</groupId> | ||||
| @ -143,6 +127,13 @@ | ||||
|         </plugins> | ||||
|     </build> | ||||
| 
 | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>jitpack.io</id> | ||||
|             <url>https://jitpack.io</url> | ||||
|         </repository> | ||||
|     </repositories> | ||||
| 
 | ||||
|     <properties> | ||||
|         <graphql-java.version>11.0</graphql-java.version> | ||||
|         <graphql-java-tools.version>5.2.4</graphql-java-tools.version> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>graphql-spqr-boot-starter</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <name>graphql-spqr-boot-starter</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>graphql-spqr</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <name>graphql-spqr</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -5,7 +5,6 @@ | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <groupId>com.baeldung.graphql</groupId> | ||||
|     <artifactId>graphql-modules</artifactId> | ||||
|     <version>1.0.0-SNAPSHOT</version> | ||||
|     <name>graphql-modules</name> | ||||
|     <packaging>pom</packaging> | ||||
| 
 | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>grpc</artifactId> | ||||
|     <version>0.0.1-SNAPSHOT</version> | ||||
|     <name>grpc</name> | ||||
|     <packaging>jar</packaging> | ||||
| 
 | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-18</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-18</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-19</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-19</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-21</artifactId> | ||||
|     <version>1.0-SNAPSHOT</version> | ||||
|     <name>guava-21</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-collections-list</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-collections-list</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -5,7 +5,6 @@ | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <groupId>com.baeldung.guava</groupId> | ||||
|     <artifactId>guava-collections-map</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-collections-map</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-collections-set</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-collections-set</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-collections</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-collections</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-core</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-core</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-io</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-io</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>guava-utilities</artifactId> | ||||
|     <version>0.1.0-SNAPSHOT</version> | ||||
|     <name>guava-utilities</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     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> | ||||
|     <artifactId>hazelcast</artifactId> | ||||
|     <version>0.0.1-SNAPSHOT</version> | ||||
|     <name>hazelcast</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
| @ -1,10 +1,9 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <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> | ||||
|     <artifactId>httpclient-simple</artifactId> | ||||
|     <version>0.1-SNAPSHOT</version> | ||||
|     <name>httpclient-simple</name> | ||||
|     <packaging>war</packaging> | ||||
| 
 | ||||
|  | ||||
| @ -4,7 +4,6 @@ | ||||
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <artifactId>hystrix</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <name>hystrix</name> | ||||
| 
 | ||||
|     <parent> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user