- Added "name" in pom.xml whereever it was missing and aligned the present ones with the artifactid and foldername
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.4 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>versions-maven-plugin</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
| 	<name>versions-maven-plugin</name>
 | |
| 	
 | |
|     <properties>        
 | |
|         <commons-compress-version>1.15</commons-compress-version>
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>commons-io</groupId>
 | |
|             <artifactId>commons-io</artifactId>
 | |
|             <version>2.3</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-collections4</artifactId>
 | |
|             <version>4.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>3.0</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-compress</artifactId>
 | |
|             <version>${commons-compress-version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>commons-beanutils</groupId>
 | |
|             <artifactId>commons-beanutils</artifactId>
 | |
|             <version>1.9.1-SNAPSHOT</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.codehaus.mojo</groupId>
 | |
|                 <artifactId>versions-maven-plugin</artifactId>
 | |
|                 <version>2.7</version>
 | |
|                 <configuration>
 | |
|                     <excludes>
 | |
|                         <exclude>org.apache.commons:commons-collections4</exclude>
 | |
|                     </excludes>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <repositories>
 | |
|         <repository>
 | |
|             <id>apache.snapshots</id>
 | |
|             <name>Apache Development Snapshot Repository</name>
 | |
|             <url>https://repository.apache.org/content/repositories/snapshots/</url>
 | |
|             <releases>
 | |
|                 <enabled>false</enabled>
 | |
|             </releases>
 | |
|             <snapshots>
 | |
|                 <enabled>true</enabled>
 | |
|             </snapshots>
 | |
|         </repository>
 | |
|     </repositories>
 | |
| 
 | |
| </project> |