Rena Tsantouli 2012-08-29 10:51:20 +00:00
parent 8bdba37fc5
commit c070465d35
8 changed files with 146 additions and 0 deletions

1
distro/INSTALL Normal file
View File

@ -0,0 +1 @@

6
distro/LICENSE Normal file
View File

@ -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.

1
distro/MAINTAINERS Normal file
View File

@ -0,0 +1 @@
* Rena Tsantouli (e.tsantoylh@di.uoa.gr), NKUA, Greece

38
distro/README Normal file
View File

@ -0,0 +1,38 @@
The gCube System - ${name}
----------------------
This work has been partially supported by the following European projects: DILIGENT (FP6-2003-IST-2), D4Science (FP7-INFRA-2007-1.2.2),
D4Science-II (FP7-INFRA-2008-1.2.2), iMarine (FP7-INFRASTRUCTURES-2011-2), and EUBrazilOpenBio (FP7-ICT-2011-EU-Brazil).
Authors
-------
* Rena Tsantouli (e.tsantoylh@di.uoa.gr), NKUA, Greece.
Version and Release Date
------------------------
${version}
Description
-----------
${description}
Download information
--------------------
Source code is available from SVN:
${scm.url}
Binaries can be downloaded from:
Documentation
-------------
Documentation is available on-line from the Projects Documentation Wiki:
https://gcube.wiki.gcube-system.org/gcube/index.php/....
Licensing
---------
This software is licensed under the terms you may find in the file named "LICENSE" in this directory.

31
distro/changelog.xml Normal file
View File

@ -0,0 +1,31 @@
<ReleaseNotes>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.2-2-3" date="2010-07-16">
<Change>Removed ASL Session expiration</Change>
<Change>Included declarations for OAI-PMH caches in ehcache configuration file</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.2-3-0" date="2010-09-03">
<Change>Added class ASLGroupModel, used by portlets</Change>
<Change>Added class SchemaFieldPair, used by OAI-PMH extension</Change>
<Change>Added session constants</Change>
<Change>Added new ehcache declaration</Change>
<Change>Added methods in ASLSession for retrieving groupModel infos</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.2-3-1" date="2010-10-21">
<Change>Added check when setting the scope, because of the custom portal handler</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.2-4-0" date="2010-01-14">
<Change>Added method for separating user login through the login portlet from the one from bookmarks</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.2-5-0" date="2010-05-06">
<Change>Added ServiceUtils method for retrieving a service epr.</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.3-1-0" date="2010-05-06">
<Change>Extended API of ASLGroupModel.</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.3-1-2" date="2012-05-04">
<Change>Changed ehCache configuration to disable multicast.</Change>
</Changeset>
<Changeset component="org.gcube.application-support-layer.application-support-layer-core.3-2-0" date="2012-08-29">
<Change>Added methods to session for easy retrieval of user information.</Change>
</Changeset>
</ReleaseNotes>

42
distro/descriptor.xml Normal file
View File

@ -0,0 +1,42 @@
<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>
</fileSets>
<files>
<file>
<source>${distroDirectory}/profile.xml</source>
<outputDirectory>/</outputDirectory>
<filtered>true</filtered>
</file>
<file>
<source>target/${build.finalName}.jar</source>
<outputDirectory>/${artifactId}</outputDirectory>
</file>
<file>
<source>${distroDirectory}/svnpath.txt</source>
<outputDirectory>/${artifactId}</outputDirectory>
<filtered>true</filtered>
</file>
</files>
</assembly>

26
distro/profile.xml Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<Resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ID />
<Type>Service</Type>
<Profile>
<Description>${description}</Description>
<Class>ApplicationSupportLayer</Class>
<Name>${artifactId}</Name>
<Version>1.0.0</Version>
<Packages>
<Software>
<Name>${artifactId}</Name>
<Version>${version}</Version>
<MavenCoordinates>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<version>${version}</version>
</MavenCoordinates>
<Files>
<File>${build.finalName}.jar</File>
</Files>
</Software>
</Packages>
</Profile>
</Resource>

1
distro/svnpath.txt Normal file
View File

@ -0,0 +1 @@
${scm.url}