Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@96959 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
24090e5b38
commit
9926fb910a
7
pom.xml
7
pom.xml
|
@ -332,6 +332,13 @@
|
|||
<artifactId>tabular-data-template</artifactId>
|
||||
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT]</version>
|
||||
</dependency>
|
||||
|
||||
<!-- tabular-data-column-operation-widget -->
|
||||
<dependency>
|
||||
<groupId>org.gcube-portlets.user.tdcolumnoperation</groupId>
|
||||
<artifactId>tabular-data-column-operation</artifactId>
|
||||
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
|
||||
<!-- LOGGING -->
|
||||
<dependency>
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
<inherits name='org.gcube.portlets.user.td.taskswidget.TdTasksWidget' />
|
||||
<inherits name="org.gcube.portlets.user.tdtemplate.TabularDataTemplate" />
|
||||
|
||||
<inherits name="org.gcube.portlets.user.tdcolumnoperation.TdColumnOperation"/>
|
||||
|
||||
<inherits name='org.gcube.portlets.widgets.sessionchecker.SessionChecker' />
|
||||
|
||||
|
|
|
@ -45,7 +45,9 @@
|
|||
|
||||
<inherits name='org.gcube.portlets.user.td.taskswidget.TdTasksWidget' />
|
||||
<inherits name="org.gcube.portlets.user.tdtemplate.TabularDataTemplate" />
|
||||
|
||||
<inherits name="org.gcube.portlets.user.tdcolumnoperation.TdColumnOperation"/>
|
||||
|
||||
|
||||
<inherits name='org.gcube.portlets.widgets.sessionchecker.SessionChecker' />
|
||||
|
||||
<!-- Specify the app entry point class. -->
|
||||
|
|
|
@ -58,6 +58,12 @@
|
|||
<servlet-class>org.gcube.portlets.user.tdtemplate.server.TdTemplateServiceImpl</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<!-- TD Column Operation -->
|
||||
<servlet>
|
||||
<servlet-name>TdColumnOperationServlet</servlet-name>
|
||||
<servlet-class>org.gcube.portlets.user.tdcolumnoperation.server.TdColumnOperationServiceImpl</servlet-class>
|
||||
</servlet>
|
||||
|
||||
|
||||
|
||||
<!-- CSV IMPORT WIZARD -->
|
||||
|
@ -176,8 +182,12 @@
|
|||
<servlet-name>tdTemplateServiceImpl</servlet-name>
|
||||
<url-pattern>/tabulardataportlet/tdtemplate</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
|
||||
|
||||
<!-- TD Column Operation -->
|
||||
<servlet-mapping>
|
||||
<servlet-name>TdColumnOperationServlet</servlet-name>
|
||||
<url-pattern>/tabulardataportlet/TdColumnOperationServlet</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- CSV IMPORT WIZARD -->
|
||||
<servlet-mapping>
|
||||
|
|
Loading…
Reference in New Issue