added scope /gcube to web.xml

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/workspace-explorer-app@131331 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2016-09-13 16:12:35 +00:00
parent af51e4c7c1
commit a1e756f694
3 changed files with 34 additions and 35 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>workspace-explorer-app-TRUNK</name> <name>workspace-explorer-app-TRUNK-1.0.0-SNAPSHOT</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>

62
pom.xml
View File

@ -38,28 +38,28 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties> </properties>
<!-- <dependencyManagement> --> <!-- <dependencyManagement> -->
<!-- <dependencies> --> <!-- <dependencies> -->
<!-- <dependency> --> <!-- <dependency> -->
<!-- <groupId>org.gcube.distribution</groupId> --> <!-- <groupId>org.gcube.distribution</groupId> -->
<!-- <artifactId>maven-portal-bom</artifactId> --> <!-- <artifactId>maven-portal-bom</artifactId> -->
<!-- <version>LATEST</version> --> <!-- <version>LATEST</version> -->
<!-- <type>pom</type> --> <!-- <type>pom</type> -->
<!-- <scope>import</scope> --> <!-- <scope>import</scope> -->
<!-- <exclusions> --> <!-- <exclusions> -->
<!-- <exclusion> --> <!-- <exclusion> -->
<!-- <artifactId>gwt-user</artifactId> --> <!-- <artifactId>gwt-user</artifactId> -->
<!-- <groupId>com.google.gwt</groupId> --> <!-- <groupId>com.google.gwt</groupId> -->
<!-- </exclusion> --> <!-- </exclusion> -->
<!-- <exclusion> --> <!-- <exclusion> -->
<!-- <groupId>com.google.gwt</groupId> --> <!-- <groupId>com.google.gwt</groupId> -->
<!-- <artifactId>gwt-servlet</artifactId> --> <!-- <artifactId>gwt-servlet</artifactId> -->
<!-- </exclusion> --> <!-- </exclusion> -->
<!-- </exclusions> --> <!-- </exclusions> -->
<!-- </dependency> --> <!-- </dependency> -->
<!-- </dependencies> --> <!-- </dependencies> -->
<!-- </dependencyManagement> --> <!-- </dependencyManagement> -->
<dependencies> <dependencies>
@ -67,15 +67,15 @@
<groupId>com.google.gwt</groupId> <groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId> <artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version> <version>${gwtVersion}</version>
<scope>compile</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- <dependency> --> <dependency>
<!-- <groupId>com.google.gwt</groupId> --> <groupId>com.google.gwt</groupId>
<!-- <artifactId>gwt-servlet</artifactId> --> <artifactId>gwt-servlet</artifactId>
<!-- <version>${gwtVersion}</version> --> <version>${gwtVersion}</version>
<!-- <scope>provided</scope> --> <scope>compile</scope>
<!-- </dependency> --> </dependency>
<dependency> <dependency>
<groupId>com.github.gwtbootstrap</groupId> <groupId>com.github.gwtbootstrap</groupId>
@ -136,13 +136,13 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>home-library-model</artifactId> <artifactId>home-library-model</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> <version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
<scope>provided</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>home-library-jcr</artifactId> <artifactId>home-library-jcr</artifactId>
<version>[2.5.0-SNAPSHOT,3.5.0-SNAPSHOT)</version> <version>[2.5.0-SNAPSHOT,3.5.0-SNAPSHOT)</version>
<scope>provided</scope> <scope>compile</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>asm-debug-all</artifactId> <artifactId>asm-debug-all</artifactId>
@ -154,7 +154,7 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>home-library</artifactId> <artifactId>home-library</artifactId>
<version>[2.5.0-SNAPSHOT,3.0.0-SNAPSHOT)</version> <version>[2.5.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
<scope>provided</scope> <scope>compile</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>asm-all</artifactId> <artifactId>asm-all</artifactId>

View File

@ -9,7 +9,8 @@
<context-param> <context-param>
<description>scope for using HL</description> <description>scope for using HL</description>
<param-name>scope</param-name> <param-name>scope</param-name>
<param-value>/d4science.research-infrastructures.eu</param-value> <!-- <param-value>/d4science.research-infrastructures.eu</param-value> -->
<param-value>/gcube</param-value>
</context-param> </context-param>
<servlet> <servlet>
<servlet-name>workspaceExplorerAppServlet</servlet-name> <servlet-name>workspaceExplorerAppServlet</servlet-name>
@ -27,9 +28,7 @@
<servlet-name>DownloadServlet</servlet-name> <servlet-name>DownloadServlet</servlet-name>
<url-pattern>/workspaceexplorerapp/DownloadServlet</url-pattern> <url-pattern>/workspaceexplorerapp/DownloadServlet</url-pattern>
</servlet-mapping> </servlet-mapping>
<display-name>workspace-explorer-app</display-name> <display-name>workspace-explorer-app</display-name>
<welcome-file-list> <welcome-file-list>
<welcome-file>WorkspaceExplorerApp.html</welcome-file> <welcome-file>WorkspaceExplorerApp.html</welcome-file>
</welcome-file-list> </welcome-file-list>