MVN

org.ow2.weblab.portlets : weblab-portlet

Maven & Gradle

Sep 10, 2011
1 usages

WebLab Portlet · This is a generic WebLab portlet developed for the WebLab platform. It eases development if multiple events need to be handled. Please note that some libraries need to be provided by the portal. Some provided libraries are probably in the portal own libraries (javax.portlet:portlet-api, javax.servlet:servlet-api, javax.servlet:jstl and taglibs:standard). Some other need to be added by your own (for eventing), they are WebLab specific, since we encourage you to only exchange objects of the WebLab model as events (org.weblab-project.core:model, org.weblab-project.core:extended).

<dependency>
    <groupId>org.ow2.weblab.portlets</groupId>
    <artifactId>weblab-portlet</artifactId>
    <version>1.2.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.ow2.weblab.portlets : weblab-portlet to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.2

All Versions

Choose a version of org.ow2.weblab.portlets : weblab-portlet to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
weblab-portlet-1.2.2
weblab-portlet-1.2.2-SNAPSHOT
weblab-portlet-1.2.1-SNAPSHOT
1.2
weblab-portlet-1.2

How to add a dependency to Maven

Add the following org.ow2.weblab.portlets : weblab-portlet maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.ow2.weblab.portlets</groupId>
    <artifactId>weblab-portlet</artifactId>
    <version>1.2.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.ow2.weblab.portlets : weblab-portlet gradle dependency to your build.gradle file:

implementation 'org.ow2.weblab.portlets:weblab-portlet:1.2.2'

Gradle Kotlin DSL: Add the following org.ow2.weblab.portlets : weblab-portlet gradle kotlin dependency to your build.gradle.kts file:

implementation("org.ow2.weblab.portlets:weblab-portlet:1.2.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.ow2.weblab.portlets : weblab-portlet sbt scala dependency to your build.sbt file:

libraryDependencies += "org.ow2.weblab.portlets" % "weblab-portlet" % "1.2.2"