29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			1.1 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> | ||
|  |     <artifactId>algorithms-modules</artifactId> | ||
|  |     <name>algorithms-modules</name> | ||
|  |     <packaging>pom</packaging> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-modules</artifactId> | ||
|  |         <version>1.0.0-SNAPSHOT</version> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <modules> | ||
|  |         <module>algorithms-genetic</module> | ||
|  |         <module>algorithms-miscellaneous-1</module> | ||
|  |         <module>algorithms-miscellaneous-2</module> | ||
|  |         <module>algorithms-miscellaneous-3</module> | ||
|  |         <module>algorithms-miscellaneous-4</module> | ||
|  |         <module>algorithms-miscellaneous-5</module> | ||
|  |         <module>algorithms-miscellaneous-6</module> | ||
|  |         <module>algorithms-searching</module> | ||
|  |         <module>algorithms-sorting</module> | ||
|  |         <module>algorithms-sorting-2</module> | ||
|  |     </modules> | ||
|  | 
 | ||
|  | </project> |