* feat: Simple test with Junit Pioneer * feat: Simple test for PATH env variable * feat: Test for getting all the environment variables * feat: Guardrails for an environment test * feat: Fixed the test * feat: Test for reflexive access to the environment * feat: Renamed a test * feat: Renamed a utility method * feat: Removed unused import * feat: Renamed a test class * feat: Child process runner * feat: Method and tag rename * feat: Docker example * feat: Testcontainer example * feat: Cleanup and renames * feat: Cleanup and renames * feat: Prevent Docker test from running * feat: Change assertion to JUnit to prevent adding assertj into the container * feat: Renamed constants * feat: Fixed the naming problem * feat: Changed conditional execution * feat: Changed conditional execution * feat: Changed conditional execution
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			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>
 | 
						|
 | 
						|
    <groupId>com.baeldung.core-java-modules</groupId>
 | 
						|
    <artifactId>core-java-lang-6</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.testcontainers</groupId>
 | 
						|
            <artifactId>testcontainers</artifactId>
 | 
						|
            <version>${testcontainers.junit.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.testcontainers</groupId>
 | 
						|
            <artifactId>junit-jupiter</artifactId>
 | 
						|
            <version>${testcontainers.junit.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.junit.jupiter</groupId>
 | 
						|
            <artifactId>junit-jupiter-api</artifactId>
 | 
						|
            <version>5.10.1</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.junit.jupiter</groupId>
 | 
						|
            <artifactId>junit-jupiter-engine</artifactId>
 | 
						|
            <version>5.10.1</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <testcontainers.junit.version>1.19.3</testcontainers.junit.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
</project> |