* BAEL-7617: Intro to Apache Commons Configuration * BAEL-7617: Review Comments * BAEL-7617: Review Comments * BAEL-7617: Review Comments
		
			
				
	
	
		
			88 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.4 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>libraries-apache-commons-2</artifactId>
 | |
|     <name>libraries-apache-commons-2</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-compress</artifactId>
 | |
|             <version>${commons-compress.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.ant</groupId>
 | |
|             <artifactId>ant</artifactId>
 | |
|             <version>${ant.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-vfs2</artifactId>
 | |
|             <version>${commons-vfs2.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-text</artifactId>
 | |
|             <version>${apache-commons-text.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>commons-net</groupId>
 | |
|             <artifactId>commons-net</artifactId>
 | |
|             <version>${commons-net.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mockftpserver</groupId>
 | |
|             <artifactId>MockFtpServer</artifactId>
 | |
|             <version>${mockftpserver.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-configuration2</artifactId>
 | |
|             <version>${commons-configuration2.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>commons-beanutils</groupId>
 | |
|             <artifactId>commons-beanutils</artifactId>
 | |
|             <version>${commons-beanutils.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-jexl</artifactId>
 | |
|             <version>${commons-jexl.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.tukaani</groupId>
 | |
|             <artifactId>xz</artifactId>
 | |
|             <version>${xz.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.github.luben</groupId>
 | |
|             <artifactId>zstd-jni</artifactId>
 | |
|             <version>${zstd-jni.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <commons-compress.version>1.26.1</commons-compress.version>
 | |
|         <ant.version>1.10.13</ant.version>
 | |
|         <commons-vfs2.version>2.9.0</commons-vfs2.version>
 | |
|         <apache-commons-text.version>1.10.0</apache-commons-text.version>
 | |
|         <commons-net.version>3.6</commons-net.version>
 | |
|         <mockftpserver.version>2.7.1</mockftpserver.version>
 | |
|         <commons-configuration2.version>2.10.0</commons-configuration2.version>
 | |
|         <commons-beanutils.version>1.9.4</commons-beanutils.version>
 | |
|         <commons-jexl.version>2.1.1</commons-jexl.version>
 | |
|         <xz.version>1.9</xz.version>
 | |
|         <zstd-jni.version>1.5.5-11</zstd-jni.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |