* JAVA-13865 POM Properties Cleanup - Week 28 - 2022 * JAVA-13865 Remove unnecessary white spaces
		
			
				
	
	
		
			75 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?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">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
    <artifactId>algorithms-miscellaneous-2</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <name>algorithms-miscellaneous-2</name>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>algorithms-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.jgrapht</groupId>
 | 
						|
            <artifactId>jgrapht-core</artifactId>
 | 
						|
            <version>${org.jgrapht.core.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.jgrapht</groupId>
 | 
						|
            <artifactId>jgrapht-ext</artifactId>
 | 
						|
            <version>${org.jgrapht.ext.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>pl.allegro.finance</groupId>
 | 
						|
            <artifactId>tradukisto</artifactId>
 | 
						|
            <version>${tradukisto.version}</version>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <reporting>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.codehaus.mojo</groupId>
 | 
						|
                <artifactId>cobertura-maven-plugin</artifactId>
 | 
						|
                <version>${cobertura-maven-plugin.version}</version>
 | 
						|
                <configuration>
 | 
						|
                    <instrumentation>
 | 
						|
                        <ignores>
 | 
						|
                            <ignore>com/baeldung/algorithms/dijkstra/*</ignore>
 | 
						|
                        </ignores>
 | 
						|
                        <excludes>
 | 
						|
                            <exclude>com/baeldung/algorithms/dijkstra/*</exclude>
 | 
						|
                        </excludes>
 | 
						|
                    </instrumentation>
 | 
						|
                </configuration>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </reporting>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <org.jgrapht.core.version>1.0.1</org.jgrapht.core.version>
 | 
						|
        <org.jgrapht.ext.version>1.0.1</org.jgrapht.ext.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |