- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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>
 | |
|     <groupId>com.baeldung</groupId>
 | |
|     <artifactId>greeter-spring-boot-starter</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
| 	<name>greeter-spring-boot-starter</name>
 | |
| 
 | |
|     <parent>
 | |
|         <artifactId>spring-boot-custom-starter</artifactId>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../spring-boot-custom-starter</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter</artifactId>
 | |
|             <version>${spring-boot.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.baeldung</groupId>
 | |
|             <artifactId>greeter-spring-boot-autoconfigure</artifactId>
 | |
|             <version>${project.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.baeldung</groupId>
 | |
|             <artifactId>greeter-library</artifactId>
 | |
|             <version>${greeter.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>${maven-compiler-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <source>${java.version}</source>
 | |
|                     <target>${java.version}</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <greeter.version>0.0.1-SNAPSHOT</greeter.version>
 | |
|         <spring-boot.version>1.5.2.RELEASE</spring-boot.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |