Pages enfant
  • Désactivation des modules complémentaires (esup 4)

Règles générales

Cette section décrit la marche à suivre afin de facilement supprimer les modules complémentaires livrés nativement avec le package ESUP/uPortal. Il s'agit de supprimer toute référence à ces modules dans les fichiers "uportal-ear/pom.xml" et "uportal-portlets-overlay/pom.xml" afin que ceux-ci ne soient plus déployés par la commande "ant deploy-ear".

Voici la listes des modules complémentaires qui peuvent être désactivés :

Pour chaque module, ce sont les lignes à supprimer ou à commenter qui sont affichées dans la section.

BookmarksPortlet ?

uportal-portlets-overlay/pom.xml
<module>BookmarksPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>BookmarksPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

 

FunctionalTestsPortlet ?

uportal-portlets-overlay/pom.xml
<module>FunctionalTestsPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>FunctionalTestsPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

 

NewsReaderPortlet ?

uportal-portlets-overlay/pom.xml
<module>NewsReaderPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>NewsReaderPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

 

NotificationPortlet ?

uportal-portlets-overlay/pom.xml
<module>NotificationPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>NotificationPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

WeatherPortlet ?

uportal-portlets-overlay/pom.xml
<module>WeatherPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>WeatherPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

WebProxyPortlet ?

uportal-portlets-overlay/pom.xml
<module>WebProxyPortlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>WebProxyPortlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

cas ?

uportal-portlets-overlay/pom.xml
<module>cas</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>cas</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

cas-proxy-test-portlet ?

uportal-portlets-overlay/pom.xml
<module>cas-proxy-test-portlet</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>cas-proxy-test-portlet</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

email-preview ?

uportal-portlets-overlay/pom.xml
<module>email-preview</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>email-preview</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...

pluto-testsuite ?

uportal-portlets-overlay/pom.xml
<module>pluto-testsuite</module>
uportal-ear/pom.xml
...
<dependency>
    <groupId>org.jasig.portal.portlets-overlay</groupId>
    <artifactId>pluto-testsuite</artifactId>
    <version>${project.version}</version>
    <type>war</type>
</dependency>
...
  • Aucune étiquette