mirror of
				https://github.com/DependencyTrack/dependency-track.git
				synced 2025-10-31 05:30:55 +00:00 
			
		
		
		
	
		
			
	
	
		
			22 lines
		
	
	
	
		
			798 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
	
		
			798 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|   | --- | ||
|  | title: Deploying the Executable WAR | ||
|  | category: Getting Started | ||
|  | chapter: 1 | ||
|  | order: 2 | ||
|  | --- | ||
|  | 
 | ||
|  | An executable WAR is a traditional Java Web Archive (WAR) that is packaged in a way where it can executed from  | ||
|  | the command-line. Unlike traditional WARs which require a Servlet container already installed and  | ||
|  | configured, executable WARs fast-track this process by bundling a Servlet container specifically configured to  | ||
|  | execute the bundled application. | ||
|  | 
 | ||
|  | The Dependency-Track executable WAR is delivered ready-to-run. To use the executable WAR, the only requirement  | ||
|  | is to have Java 8u101 (or higher) installed and execute: | ||
|  | 
 | ||
|  | ```bash | ||
|  | java -Xmx4G -jar dependency-track-embedded.war | ||
|  | ``` | ||
|  | 
 | ||
|  | For users with Java already installed on their machines, this method of execution may provide the fastest path | ||
|  | forward. |