kopia lustrzana https://github.com/jameshball/osci-render
				
				
				
			
		
			
	
	
		
			72 wiersze
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
		
		
			
		
	
	
			72 wiersze
		
	
	
		
			2.5 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>sh.ball</groupId> | ||
|  |     <artifactId>osci-render</artifactId> | ||
|  |     <version>1.0</version> | ||
|  |     <build> | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.openjfx</groupId> | ||
|  |                 <artifactId>javafx-maven-plugin</artifactId> | ||
|  |                 <version>0.0.5</version> | ||
|  |                 <configuration> | ||
|  |                     <mainClass>osci-render/gui.Gui</mainClass> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-compiler-plugin</artifactId> | ||
|  |                 <version>3.8.1</version> | ||
|  |                 <configuration> | ||
|  |                     <source>15</source> | ||
|  |                     <target>15</target> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  |     <repositories> | ||
|  |         <repository> | ||
|  |             <id>jitpack.io</id> | ||
|  |             <name>jitpack</name> | ||
|  |             <url>https://jitpack.io</url> | ||
|  |         </repository> | ||
|  |     </repositories> | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.openjfx</groupId> | ||
|  |             <artifactId>javafx-controls</artifactId> | ||
|  |             <version>15.0.1</version> | ||
|  |         </dependency> | ||
|  |         <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.jsoup</groupId> | ||
|  |             <artifactId>jsoup</artifactId> | ||
|  |             <version>1.13.1</version> | ||
|  |         </dependency> | ||
|  |         <!-- https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.jgrapht</groupId> | ||
|  |             <artifactId>jgrapht-core</artifactId> | ||
|  |             <version>1.5.0</version> | ||
|  |         </dependency> | ||
|  |         <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna --> | ||
|  |         <dependency> | ||
|  |             <groupId>net.java.dev.jna</groupId> | ||
|  |             <artifactId>jna</artifactId> | ||
|  |             <version>5.6.0</version> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>com.github.mokiat</groupId> | ||
|  |             <artifactId>java-data-front</artifactId> | ||
|  |             <version>2.0.0</version> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  | 
 | ||
|  | </project> |