- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			28 lines
		
	
	
		
			964 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			964 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>annotation-processing</artifactId>
 | |
|     <name>annotation-processing</name>
 | |
|     
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|         <artifactId>annotations</artifactId>
 | |
|         <relativePath>../</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.google.auto.service</groupId>
 | |
|             <artifactId>auto-service</artifactId>
 | |
|             <version>${auto-service.version}</version>
 | |
|             <scope>provided</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <auto-service.version>1.0-rc2</auto-service.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |