| Categories | 
                CategoriesJetty Container Application Servers CLI User Interface | 
        
|---|---|
| GroupId | GroupIdorg.eclipse.jetty | 
    
| ArtifactId | ArtifactIdjetty-webapp | 
    
| Version | Version10.0.0-alpha0 | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.eclipse.jetty/jetty-webapp/ -->
<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-webapp</artifactId>
    <version>10.0.0-alpha0</version>
</dependency>
                // https://jarcasting.com/artifacts/org.eclipse.jetty/jetty-webapp/
implementation 'org.eclipse.jetty:jetty-webapp:10.0.0-alpha0'
                // https://jarcasting.com/artifacts/org.eclipse.jetty/jetty-webapp/
implementation ("org.eclipse.jetty:jetty-webapp:10.0.0-alpha0")
                'org.eclipse.jetty:jetty-webapp:jar:10.0.0-alpha0'
                <dependency org="org.eclipse.jetty" name="jetty-webapp" rev="10.0.0-alpha0">
  <artifact name="jetty-webapp" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.eclipse.jetty', module='jetty-webapp', version='10.0.0-alpha0')
)
                libraryDependencies += "org.eclipse.jetty" % "jetty-webapp" % "10.0.0-alpha0"
                [org.eclipse.jetty/jetty-webapp "10.0.0-alpha0"]