- 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>
 | 
						|
    <artifactId>algorithms-sorting</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>algorithms-sorting</name>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-modules</artifactId>
 | 
						|
        <version>1.0.0-SNAPSHOT</version>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-math3</artifactId>
 | 
						|
            <version>${commons-math3.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-codec</groupId>
 | 
						|
            <artifactId>commons-codec</artifactId>
 | 
						|
            <version>${commons-codec.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.projectlombok</groupId>
 | 
						|
            <artifactId>lombok</artifactId>
 | 
						|
            <version>${lombok.version}</version>
 | 
						|
            <scope>provided</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.assertj</groupId>
 | 
						|
            <artifactId>assertj-core</artifactId>
 | 
						|
            <version>${org.assertj.core.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <pluginManagement>
 | 
						|
            <plugins>
 | 
						|
                <plugin>
 | 
						|
                    <groupId>org.codehaus.mojo</groupId>
 | 
						|
                    <artifactId>exec-maven-plugin</artifactId>
 | 
						|
                    <version>${exec-maven-plugin.version}</version>
 | 
						|
                </plugin>
 | 
						|
            </plugins>
 | 
						|
        </pluginManagement>
 | 
						|
    </build>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <lombok.version>1.16.12</lombok.version>
 | 
						|
        <commons-math3.version>3.6.1</commons-math3.version>
 | 
						|
        <org.assertj.core.version>3.9.0</org.assertj.core.version>
 | 
						|
        <commons-codec.version>1.11</commons-codec.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |