Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-share-widget@92627 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-04 15:32:35 +00:00 committed by Giancarlo Panichi
parent 18585bb82f
commit 9114c5dc18
5 changed files with 32 additions and 15 deletions

View File

@ -22,15 +22,15 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/tabular-data-share-widget-1.0.0-SNAPSHOT/WEB-INF/classes"/> <classpathentry kind="output" path="target/tabular-data-share-widget-1.0.0-SNAPSHOT/WEB-INF/classes"/>
</classpath> </classpath>

16
pom.xml
View File

@ -14,15 +14,15 @@
<groupId>org.gcube.portlets.user</groupId> <groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-share-widget</artifactId> <artifactId>tabular-data-share-widget</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<name>tabular-data-share-widget</name> <name>tabular-data-share-widget</name>
<description>tabular-data-share-widget allows share tabular resource with other user</description> <description>tabular-data-share-widget allows share tabular resource with other user</description>
<scm> <scm>
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-share-widget</url> <url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-share-widget</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<name>Giancarlo Panichi</name> <name>Giancarlo Panichi</name>
@ -107,6 +107,12 @@
<version>3.0.1</version> <version>3.0.1</version>
</dependency> </dependency>
<!-- workspace-sharing-widget -->
<dependency>
<groupId>org.gcube.portlets.widgets</groupId>
<artifactId>workspace-sharing-widget</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency>
<!-- tabular-data-gwt-service --> <!-- tabular-data-gwt-service -->
<dependency> <dependency>
@ -192,9 +198,9 @@
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<runTarget>ColumnWidget.html</runTarget> <runTarget>ShareWidget.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp> <hostedWebapp>${webappDirectory}</hostedWebapp>
<module>org.gcube.portlets.user.td.columnwidget.ColumnWidget</module> <module>org.gcube.portlets.user.td.sharewidget.ShareWidget</module>
</configuration> </configuration>
</plugin> </plugin>

View File

@ -18,7 +18,7 @@
<inherits name='com.sencha.gxt.ui.GXT' /> <inherits name='com.sencha.gxt.ui.GXT' />
<inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" /> <inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" />
<inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' /> <inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' />
<inherits name="org.gcube.portlets.widgets.workspacesharingwidget.WorkspaceSharingWidget" />
<!-- Specify the app entry point class. --> <!-- Specify the app entry point class. -->

View File

@ -18,7 +18,7 @@
<inherits name='com.sencha.gxt.ui.GXT' /> <inherits name='com.sencha.gxt.ui.GXT' />
<inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" /> <inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" />
<inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' /> <inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' />
<inherits name="org.gcube.portlets.widgets.workspacesharingwidget.WorkspaceSharingWidget" />
<!-- Specify the app entry point class. --> <!-- Specify the app entry point class. -->

View File

@ -6,11 +6,16 @@
<web-app> <web-app>
<!-- Servlets --> <!-- Servlets -->
<servlet>
<servlet-name>workspacesharing</servlet-name>
<servlet-class>org.gcube.portlets.widgets.workspacesharingwidget.server.WorkspaceSharingServiceImpl</servlet-class>
</servlet>
<servlet> <servlet>
<servlet-name>TDGWTService</servlet-name> <servlet-name>TDGWTService</servlet-name>
<servlet-class>org.gcube.portlets.user.td.gwtservice.server.TDGWTServiceImpl</servlet-class> <servlet-class>org.gcube.portlets.user.td.gwtservice.server.TDGWTServiceImpl</servlet-class>
</servlet> </servlet>
<servlet> <servlet>
<servlet-name>jUnitHostImpl</servlet-name> <servlet-name>jUnitHostImpl</servlet-name>
<servlet-class>com.google.gwt.junit.server.JUnitHostImpl</servlet-class> <servlet-class>com.google.gwt.junit.server.JUnitHostImpl</servlet-class>
@ -21,11 +26,17 @@
<servlet-name>TDGWTService</servlet-name> <servlet-name>TDGWTService</servlet-name>
<url-pattern>tdgwtservice/TDGWTService</url-pattern> <url-pattern>tdgwtservice/TDGWTService</url-pattern>
</servlet-mapping> </servlet-mapping>
<servlet-mapping> <servlet-mapping>
<servlet-name>jUnitHostImpl</servlet-name> <servlet-name>workspacesharing</servlet-name>
<url-pattern>SDMXImportWizardTDWidgets/junithost/*</url-pattern> <url-pattern>/ShareWidget/workspacesharing</url-pattern>
</servlet-mapping> </servlet-mapping>
<servlet-mapping>
<servlet-name>jUnitHostImpl</servlet-name>
<url-pattern>/ShareWidget/junithost/*</url-pattern>
</servlet-mapping>
<!-- Default page to serve --> <!-- Default page to serve -->
<welcome-file-list> <welcome-file-list>