From 44bbd09bc935561a9a001c7b7375ef626389b54d Mon Sep 17 00:00:00 2001 From: Gianpaolo Coro Date: Tue, 19 Mar 2013 09:54:31 +0000 Subject: [PATCH] git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/EcologicalEngineExternalAlgorithms@71530 82a268e6-3cf1-43bd-a215-b396298e98cf --- .classpath | 7 ++ .project | 23 ++++++ .settings/org.eclipse.jdt.core.prefs | 13 ++++ .settings/org.eclipse.m2e.core.prefs | 5 ++ distro/CHANGELOG | 2 + distro/INSTALL | 1 + distro/LICENSE | 8 ++ distro/MAINTAINERS | 2 + distro/README | 42 +++++++++++ distro/changelog.xml | 7 ++ distro/descriptor.xml | 42 +++++++++++ distro/profile.xml | 25 +++++++ distro/svnpath.txt | 1 + pom.xml | 106 +++++++++++++++++++++++++++ 14 files changed, 284 insertions(+) create mode 100644 .classpath create mode 100644 .project create mode 100644 .settings/org.eclipse.jdt.core.prefs create mode 100644 .settings/org.eclipse.m2e.core.prefs create mode 100644 distro/CHANGELOG create mode 100644 distro/INSTALL create mode 100644 distro/LICENSE create mode 100644 distro/MAINTAINERS create mode 100644 distro/README create mode 100644 distro/changelog.xml create mode 100644 distro/descriptor.xml create mode 100644 distro/profile.xml create mode 100644 distro/svnpath.txt create mode 100644 pom.xml diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..956e41e --- /dev/null +++ b/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..1508530 --- /dev/null +++ b/.project @@ -0,0 +1,23 @@ + + + EcologicalEngineExternalAlgorithms + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jdt.core.javanature + + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..3f90a29 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,13 @@ +#Tue Mar 19 10:38:38 CET 2013 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/.settings/org.eclipse.m2e.core.prefs b/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..a0b4984 --- /dev/null +++ b/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,5 @@ +#Tue Mar 19 10:38:24 CET 2013 +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/distro/CHANGELOG b/distro/CHANGELOG new file mode 100644 index 0000000..ce676c1 --- /dev/null +++ b/distro/CHANGELOG @@ -0,0 +1,2 @@ +v. 1.0.0 (19-03-2013) + * First release diff --git a/distro/INSTALL b/distro/INSTALL new file mode 100644 index 0000000..9bcbb15 --- /dev/null +++ b/distro/INSTALL @@ -0,0 +1 @@ +Used as a library in the gCube Framework \ No newline at end of file diff --git a/distro/LICENSE b/distro/LICENSE new file mode 100644 index 0000000..bd0c2b4 --- /dev/null +++ b/distro/LICENSE @@ -0,0 +1,8 @@ +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. diff --git a/distro/MAINTAINERS b/distro/MAINTAINERS new file mode 100644 index 0000000..1f1e62d --- /dev/null +++ b/distro/MAINTAINERS @@ -0,0 +1,2 @@ +Gianpaolo Coro (gianpaolo.coro@isti.cnr.it), CNR Pisa, +Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" \ No newline at end of file diff --git a/distro/README b/distro/README new file mode 100644 index 0000000..3288e37 --- /dev/null +++ b/distro/README @@ -0,0 +1,42 @@ +The gCube System - Ecological Engine Library +------------------------------------------------------------ + +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 +------- + +* Gianpaolo Coro (gianpaolo.coro@isti.cnr.it), CNR Pisa, + Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" + +Version and Release Date +------------------------ + +version 1.0.0 (19-03-2013) + +Description +-------------------- + +Support library for statistics analysis on Time Series data. + + +Download information +-------------------- + +Source code is available from SVN: +http://svn.research-infrastructures.eu/d4science/gcube/trunk/content-management/EcologicalModelling + +Binaries can be downloaded from: +http://software.d4science.research-infrastructures.eu/ + +Documentation +------------- +VREManager documentation is available on-line from the Projects Documentation Wiki: +https://gcube.wiki.gcube-system.org/gcube/index.php/Ecological_Modeling + +Licensing +--------- + +This software is licensed under the terms you may find in the file named "LICENSE" in this directory. diff --git a/distro/changelog.xml b/distro/changelog.xml new file mode 100644 index 0000000..2dad319 --- /dev/null +++ b/distro/changelog.xml @@ -0,0 +1,7 @@ + + + First Release + + \ No newline at end of file diff --git a/distro/descriptor.xml b/distro/descriptor.xml new file mode 100644 index 0000000..21d8c88 --- /dev/null +++ b/distro/descriptor.xml @@ -0,0 +1,42 @@ + + servicearchive + + tar.gz + + / + + + ${distroDirectory} + / + true + + README + LICENSE + INSTALL + MAINTAINERS + changelog.xml + + 755 + true + + + + + ${distroDirectory}/profile.xml + / + true + + + target/${build.finalName}.jar + /${artifactId} + + + ${distroDirectory}/svnpath.txt + /${artifactId} + true + + + \ No newline at end of file diff --git a/distro/profile.xml b/distro/profile.xml new file mode 100644 index 0000000..1a5200d --- /dev/null +++ b/distro/profile.xml @@ -0,0 +1,25 @@ + + + + Library + + Ecological Engine Library + EcologicalEngineExternalAlgorithms + ${artifactId} + 1.0.0 + + + ${artifactId} + ${version} + + ${groupId} + ${artifactId} + ${version} + + + ${build.finalName}.jar + + + + + \ No newline at end of file diff --git a/distro/svnpath.txt b/distro/svnpath.txt new file mode 100644 index 0000000..3f85e8c --- /dev/null +++ b/distro/svnpath.txt @@ -0,0 +1 @@ +https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/EcologicalEngine \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d753bb9 --- /dev/null +++ b/pom.xml @@ -0,0 +1,106 @@ + + 4.0.0 + + maven-parent + org.gcube.tools + 1.0.0 + + + org.gcube.dataanalysis + ecological-engine-external-algorithms + 1.0.0-SNAPSHOT + ecological-engine-external-algorithms + ecological-engine-external-algorithms library + + ${project.basedir}/distro + + + + org.gcube.dataanalysis + ecological-engine + 1.6.1-SNAPSHOT + + + postgresql + postgresql + 8.4-702.jdbc4 + + + org.gcube.common + rapidminer-custom + 1.2.0-SNAPSHOT + + + + + osgeo + Open Source Geospatial Foundation Repository Mirror + http://maven.research-infrastructures.eu/nexus/content/repositories/osgeo// + + + + + + maven-compiler-plugin + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12 + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + + copy-profile + install + + copy-resources + + + target + + + ${distroDirectory} + true + + profile.xml + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + ${distroDirectory}/descriptor.xml + + + + + servicearchive + install + + single + + + + + + + \ No newline at end of file