29 lines
		
	
	
		
			989 B
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			989 B
		
	
	
	
		
			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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
							 | 
						||
| 
								 | 
							
								    <modelVersion>4.0.0</modelVersion>
							 | 
						||
| 
								 | 
							
								    <artifactId>testing-assertions</artifactId>
							 | 
						||
| 
								 | 
							
								    <version>0.0.1-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <parent>
							 | 
						||
| 
								 | 
							
								        <groupId>com.baeldung</groupId>
							 | 
						||
| 
								 | 
							
								        <artifactId>parent-java</artifactId>
							 | 
						||
| 
								 | 
							
								        <version>0.0.1-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								        <relativePath>../../parent-java</relativePath>
							 | 
						||
| 
								 | 
							
								    </parent>
							 | 
						||
| 
								 | 
							
								    
							 | 
						||
| 
								 | 
							
								    <dependencies>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>ch.qos.logback</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>logback-classic</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>1.2.3</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.assertj</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>assertj-core</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>3.15.0</version>
							 | 
						||
| 
								 | 
							
								            <scope>test</scope>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								    </dependencies>
							 | 
						||
| 
								 | 
							
								</project>
							 |