Maven Dependency jface >> 3.0m7

In this page we are giving Maven Dependency of swt >> jface version3.0m7

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of swt >> jface version3.0m7 in your project.

In this page we are going to discuss about jface version 3.0m7 maven dependencies. Maven tool is project management tool which you use to manage your project and easily use jface version 3.0m7 dependency by just including the code discussed here in pom.xml file of your Maven project.

Maven dependency automatically download dependent library of jface version 3.0m7 and include the necessary jar files in the project.

Code given here should be included inside <dependencies> ...... </dependencies> tag in the Maven configuration file pom.xml.

We also explained you dependency code of different build system like Gradle Dependency, SBT Dependency, Ivy Dependency, Grape Dependency etc...

Maven dependency of jface version 3.0m7

Maven dependency of jface version 3.0m7:

<dependency>
	<groupId>swt</groupId>
	<artifactId>jface</artifactId>
	<version>3.0m7</version>
</dependency>

Gradle Dependency of jface version 3.0m7

compile group: 'swt', name: 'jface', version: '3.0m7'

SBT Dependency of jface version 3.0m7

libraryDependencies += "swt" % "jface" % "3.0m7"

Ivy Dependency of jface version 3.0m7

<dependency org="swt" name="jface" rev="3.0m7"/>

Grape Dependency of jface version 3.0m7

@Grapes(
    @Grab(group='swt', module='jface', version='3.0m7')
)

Leiningen Dependency of jface version 3.0m7

[swt/jface "3.0m7"]

Buildr Dependency of jface version 3.0m7

'swt:jface:jar:3.0m7'

Advertisements