Browse Source
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/admin/vre-deploy@82489 82a268e6-3cf1-43bd-a215-b396298e98cfmaster
8 changed files with 146 additions and 0 deletions
@ -0,0 +1,6 @@
|
||||
gCube System - License |
||||
------------------------------------------------------------ |
||||
|
||||
The gCube/gCore software is licensed as Free Open Source software conveying to the EUPL (http://ec.europa.eu/idabc/eupl). |
||||
The software and documentation is provided by its authors/distributors "as is" and no expressed or |
||||
implied warranty is given for its use, quality or fitness for a particular case. |
@ -0,0 +1,5 @@
|
||||
Mantainers |
||||
------- |
||||
|
||||
* Massimiliano Assante (assante@isti.cnr.it), CNR Pisa, |
||||
Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo". |
@ -0,0 +1,53 @@
|
||||
The gCube System - VRE Deploy portlet |
||||
------------------------------------------------------------ |
||||
|
||||
This work is partially funded by the European Commission in the |
||||
context of the D4Science project (www.d4science.eu), under the 1st call of FP7 IST priority. |
||||
|
||||
|
||||
Authors |
||||
------- |
||||
|
||||
* Massimiliano Assante (assante@isti.cnr.it), CNR Pisa, |
||||
Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo". |
||||
|
||||
|
||||
Version and Release Date |
||||
------------------------ |
||||
|
||||
|
||||
|
||||
|
||||
Description |
||||
----------- |
||||
|
||||
|
||||
|
||||
Download information |
||||
-------------------- |
||||
|
||||
Source code is available from SVN: |
||||
https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/admin/vre-deploy |
||||
|
||||
|
||||
Binaries can be downloaded from: |
||||
http://software.d4science.research-infrastructures.eu/ |
||||
|
||||
|
||||
Documentation |
||||
------------- |
||||
|
||||
Documentation is available on-line from the Projects Documentation Wiki: |
||||
|
||||
https://gcube.wiki.gcube-system.org/gcube/index.php/VRE_Administration#VRE_Approval |
||||
|
||||
|
||||
|
||||
Licensing |
||||
--------- |
||||
|
||||
This software is licensed under the terms you may find in the file named "LICENSE" in this directory. |
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,6 @@
|
||||
<ReleaseNotes> |
||||
<Changeset component="org.gcube.portlets-admin.vre-deploy.3-0-0" date="2013-11-19"> |
||||
<Change>Moved to FWS</Change> |
||||
<Change>Added Notification to VRE Designer</Change> |
||||
</Changeset> |
||||
</ReleaseNotes> |
@ -0,0 +1,48 @@
|
||||
<assembly |
||||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
||||
<id>servicearchive</id> |
||||
<formats> |
||||
<format>tar.gz</format> |
||||
</formats> |
||||
<baseDirectory>/</baseDirectory> |
||||
<fileSets> |
||||
<fileSet> |
||||
<directory>${distroDirectory}</directory> |
||||
<outputDirectory>/</outputDirectory> |
||||
<useDefaultExcludes>true</useDefaultExcludes> |
||||
<includes> |
||||
<include>README</include> |
||||
<include>LICENSE</include> |
||||
<include>INSTALL</include> |
||||
<include>MAINTAINERS</include> |
||||
<include>changelog.xml</include> |
||||
</includes> |
||||
<fileMode>755</fileMode> |
||||
<filtered>true</filtered> |
||||
</fileSet> |
||||
<fileSet> |
||||
<directory>target/apidocs</directory> |
||||
<outputDirectory>/${artifactId}/doc/api</outputDirectory> |
||||
<useDefaultExcludes>true</useDefaultExcludes> |
||||
<fileMode>755</fileMode> |
||||
</fileSet> |
||||
</fileSets> |
||||
<files> |
||||
<file> |
||||
<source>${distroDirectory}/profile.xml</source> |
||||
<outputDirectory>./</outputDirectory> |
||||
<filtered>true</filtered> |
||||
</file> |
||||
<file> |
||||
<source>target/${build.finalName}.war</source> |
||||
<outputDirectory>/${artifactId}</outputDirectory> |
||||
</file> |
||||
<file> |
||||
<source>${distroDirectory}/svnpath.txt</source> |
||||
<outputDirectory>/${artifactId}</outputDirectory> |
||||
<filtered>true</filtered> |
||||
</file> |
||||
</files> |
||||
</assembly> |
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<Resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<ID></ID> |
||||
<Type>Service</Type> |
||||
<Profile> |
||||
<Description>${description}</Description> |
||||
<Class>PortletUser</Class> |
||||
<Name>${artifactId}</Name> |
||||
<Version>${version}</Version> |
||||
<Packages> |
||||
<Software> |
||||
<Name>${artifactId}</Name> |
||||
<Version>${version}</Version> |
||||
<MavenCoordinates> |
||||
<groupId>${groupId}</groupId> |
||||
<artifactId>${artifactId}</artifactId> |
||||
<version>${version}</version> |
||||
</MavenCoordinates> |
||||
<Files> |
||||
<File>target/${build.finalName}.war</File> |
||||
</Files> |
||||
</Software> |
||||
</Packages> |
||||
</Profile> |
||||
</Resource> |
Loading…
Reference in new issue