25 lines
1.4 KiB
Groovy
25 lines
1.4 KiB
Groovy
repositories {
|
|
mavenCentral()
|
|
maven { url "https://maven.research-infrastructures.eu/nexus/content/repositories/gcube-releases/" }
|
|
maven { url "https://maven.research-infrastructures.eu/nexus/content/repositories/gcube-snapshots/" }
|
|
maven { url "https://maven.research-infrastructures.eu/nexus/content/repositories/gcube-externals/" }
|
|
maven { url "https://maven.research-infrastructures.eu/nexus/content/groups/public/" }
|
|
maven { url "https://nexus.d4science.org/nexus/content/repositories/gcube-snapshots-java21-javax" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform("org.gcube.distribution:maven-portal-bom-javax:5.0.0-SNAPSHOT")
|
|
compileOnly group: "com.liferay.portal", name: "com.liferay.portal.kernel"
|
|
compileOnly group: "com.liferay.portal", name: "release.portal.api"
|
|
implementation group: 'com.liferay', name: 'com.liferay.petra.string'
|
|
compileOnly group: "com.liferay", name: "com.liferay.product.navigation.control.menu.api"
|
|
compileOnly group: "com.liferay", name: "com.liferay.product.navigation.taglib"
|
|
compileOnly group: "javax.servlet", name: "javax.servlet-api"
|
|
compileOnly group: "javax.portlet", name: "portlet-api"
|
|
compileOnly group: "org.osgi", name: "org.osgi.service.component.annotations"
|
|
implementation group: "javax.servlet", name: "jstl"
|
|
|
|
implementation project(":modules:portal-manager-core")
|
|
implementation project(":modules:portal-usermanagement-core")
|
|
}
|