61 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.1 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>
 | |
| 
 | |
|     <groupId>com.r11.xsd</groupId>
 | |
|     <artifactId>xsd</artifactId>
 | |
|     <version>1.0</version>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source>11</maven.compiler.source>
 | |
|         <maven.compiler.target>11</maven.compiler.target>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-api</artifactId>
 | |
|             <version>5.9.0</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-engine</artifactId>
 | |
|             <version>5.9.0</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.eclipse.jgit</groupId>
 | |
|             <artifactId>org.eclipse.jgit</artifactId>
 | |
|             <version>6.3.0.202209071007-r</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Jsch from jgit dependency is not supported [RSA 2048] so we need use mwiede fork. -->
 | |
|         <dependency>
 | |
|             <groupId>org.eclipse.jgit</groupId>
 | |
|             <artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
 | |
|             <version>6.3.0.202209071007-r</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <groupId>com.jcraft</groupId>
 | |
|                     <artifactId>jsch</artifactId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.github.mwiede</groupId>
 | |
|             <artifactId>jsch</artifactId>
 | |
|             <version>0.2.4</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.eclipse.jgit</groupId>
 | |
|             <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
 | |
|             <version>6.3.0.202209071007-r</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| </project> | 
