From df233219a807de179a765cdb81bd70d31f59ab4e Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Wed, 11 Dec 2019 10:09:36 +0100 Subject: [PATCH] second commit --- pom.xml | 191 ++++++++++++++++++ .../org/gcube/portal/removeaccount/App.java | 13 ++ .../remove_account_library/AppTest.java | 38 ++++ target/classes/META-INF/MANIFEST.MF | 15 ++ .../remove-account-library/pom.properties | 7 + .../remove-account-library/pom.xml | 191 ++++++++++++++++++ .../org/gcube/portal/removeaccount/App.class | Bin 0 -> 575 bytes .../org/gcube/portal/removeaccount/App.java | 13 ++ .../remove_account_library/AppTest.class | Bin 0 -> 665 bytes 9 files changed, 468 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/gcube/portal/removeaccount/App.java create mode 100644 src/test/java/org/gcube/portal/remove_account_library/AppTest.java create mode 100644 target/classes/META-INF/MANIFEST.MF create mode 100644 target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.properties create mode 100644 target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.xml create mode 100644 target/classes/org/gcube/portal/removeaccount/App.class create mode 100644 target/classes/org/gcube/portal/removeaccount/App.java create mode 100644 target/test-classes/org/gcube/portal/remove_account_library/AppTest.class diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d080798 --- /dev/null +++ b/pom.xml @@ -0,0 +1,191 @@ + + 4.0.0 + + maven-parent + org.gcube.tools + 1.1.0 + + + + org.gcube.portal + remove-account-library + 0.0.1-SNAPSHOT + jar + + + scm:git:https://code-repo.d4science.org/gCubeSystem/remove-account-library.git + scm:git:https://code-repo.d4science.org/gCubeSystem/remove-account-library.git + https://code-repo.d4science.org/gCubeSystem/remove-account-library + + + + distro + 1.8 + 1.8 + UTF-8 + UTF-8 + + + + + + org.gcube.distribution + maven-portal-bom + 3.6.0 + pom + import + + + + + + org.gcube.portal + social-networking-library + provided + + + org.gcube.portlets.widgets + pickitem-widget + [2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT) + + + org.gcube.portlets.user + gcube-widgets + compile + + + org.gcube.common.portal + portal-manager + provided + + + org.gcube.dvos + usermanagement-core + provided + + + org.gcube.core + common-scope + provided + + + commons-codec + commons-codec + + + + org.slf4j + slf4j-api + provided + + + javax.servlet + javax.servlet-api + provided + + + org.htmlparser + htmlparser + 2.1 + + + + junit + junit + 4.11 + test + + + ch.qos.logback + logback-classic + 1.0.13 + test + + + + + + + src/main/java + + **/*.* + + + + + + maven-compiler-plugin + + 1.7 + 1.8 + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.2 + + + + test-jar + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12 + + true + + + + org.apache.maven.plugins + maven-assembly-plugin + + + descriptor.xml + + + + fully.qualified.MainClass + + + + + + servicearchive + install + + single + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + -Xdoclint:none + + 3.1.0 + + + generate-doc + install + + jar + + + + + + + diff --git a/src/main/java/org/gcube/portal/removeaccount/App.java b/src/main/java/org/gcube/portal/removeaccount/App.java new file mode 100644 index 0000000..bace085 --- /dev/null +++ b/src/main/java/org/gcube/portal/removeaccount/App.java @@ -0,0 +1,13 @@ +package org.gcube.portal.removeaccount; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/org/gcube/portal/remove_account_library/AppTest.java b/src/test/java/org/gcube/portal/remove_account_library/AppTest.java new file mode 100644 index 0000000..3861f28 --- /dev/null +++ b/src/test/java/org/gcube/portal/remove_account_library/AppTest.java @@ -0,0 +1,38 @@ +package org.gcube.portal.remove_account_library; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/target/classes/META-INF/MANIFEST.MF b/target/classes/META-INF/MANIFEST.MF new file mode 100644 index 0000000..74854e7 --- /dev/null +++ b/target/classes/META-INF/MANIFEST.MF @@ -0,0 +1,15 @@ +Manifest-Version: 1.0 +Built-By: massi +Build-Jdk: 1.8.0_222 +Specification-Title: remove-account-library +Specification-Version: 0.0.1-SNAPSHOT +Implementation-Title: remove-account-library +Implementation-Version: 0.0.1-SNAPSHOT +Implementation-Vendor-Id: org.gcube.portal +Build-Time: 20191211-090816 +Created-By: Maven Integration for Eclipse +SCM-Branch: +SCM-Revision: +SCM-Revision-URL: https://code-repo.d4science.org/gCubeSystem/remove-a + ccount-library/commit/${buildNumber} + diff --git a/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.properties b/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.properties new file mode 100644 index 0000000..f6fd228 --- /dev/null +++ b/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.properties @@ -0,0 +1,7 @@ +#Generated by Maven Integration for Eclipse +#Wed Dec 11 10:08:16 CET 2019 +version=0.0.1-SNAPSHOT +groupId=org.gcube.portal +m2e.projectName=remove-account-library +m2e.projectLocation=/Users/massi/workspace/remove-account-library +artifactId=remove-account-library diff --git a/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.xml b/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.xml new file mode 100644 index 0000000..d080798 --- /dev/null +++ b/target/classes/META-INF/maven/org.gcube.portal/remove-account-library/pom.xml @@ -0,0 +1,191 @@ + + 4.0.0 + + maven-parent + org.gcube.tools + 1.1.0 + + + + org.gcube.portal + remove-account-library + 0.0.1-SNAPSHOT + jar + + + scm:git:https://code-repo.d4science.org/gCubeSystem/remove-account-library.git + scm:git:https://code-repo.d4science.org/gCubeSystem/remove-account-library.git + https://code-repo.d4science.org/gCubeSystem/remove-account-library + + + + distro + 1.8 + 1.8 + UTF-8 + UTF-8 + + + + + + org.gcube.distribution + maven-portal-bom + 3.6.0 + pom + import + + + + + + org.gcube.portal + social-networking-library + provided + + + org.gcube.portlets.widgets + pickitem-widget + [2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT) + + + org.gcube.portlets.user + gcube-widgets + compile + + + org.gcube.common.portal + portal-manager + provided + + + org.gcube.dvos + usermanagement-core + provided + + + org.gcube.core + common-scope + provided + + + commons-codec + commons-codec + + + + org.slf4j + slf4j-api + provided + + + javax.servlet + javax.servlet-api + provided + + + org.htmlparser + htmlparser + 2.1 + + + + junit + junit + 4.11 + test + + + ch.qos.logback + logback-classic + 1.0.13 + test + + + + + + + src/main/java + + **/*.* + + + + + + maven-compiler-plugin + + 1.7 + 1.8 + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.2 + + + + test-jar + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12 + + true + + + + org.apache.maven.plugins + maven-assembly-plugin + + + descriptor.xml + + + + fully.qualified.MainClass + + + + + + servicearchive + install + + single + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + -Xdoclint:none + + 3.1.0 + + + generate-doc + install + + jar + + + + + + + diff --git a/target/classes/org/gcube/portal/removeaccount/App.class b/target/classes/org/gcube/portal/removeaccount/App.class new file mode 100644 index 0000000000000000000000000000000000000000..1f6777395968088315d498b5dc76af7ef371c1c9 GIT binary patch literal 575 zcmaixO-sW-5Qg9FSJD`5ZEgM5ws>egn2X?{B8VU!iVBr_@U%^rxFyM!ZBp=O=|RDR zKfoU)PFkT93SMS*X7-(VcJ}+{^9#T!8U|7f4W&KDbK|~nMoLHAceDu9L~z$taTqz5 zqmh9OLvhF_-0^wnId}b`a3hA?xeR4=!H{mYdJLH>H4qlk$lJ&w$580VP~65rU+4$k z_XR_#qg?LyxRy!$m&`=Za?Ehl`JbdsQvxnShHCSvGbidsT83V`)yrcYWdo%J-tNmd z5`m2kRESl@gkG76rE=~`8IfM_plxE4!M+i`uWFA<`-8fLZR{G@VJJ_hEedSxVV}Vm zB|Utisx+5D5j58xJ+ZumnZfF+Si9m{CL1zo-zUi^)IqTHQ9z1Lv{14JMGkpJK70HD z^L1Lb$R=gbg%z^)>;m~!it<=Pfij8sY}$-+Zzz_k@7S6*u&4x*nRWrlxL`s HO`-k^*C~EB literal 0 HcmV?d00001 diff --git a/target/classes/org/gcube/portal/removeaccount/App.java b/target/classes/org/gcube/portal/removeaccount/App.java new file mode 100644 index 0000000..bace085 --- /dev/null +++ b/target/classes/org/gcube/portal/removeaccount/App.java @@ -0,0 +1,13 @@ +package org.gcube.portal.removeaccount; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/target/test-classes/org/gcube/portal/remove_account_library/AppTest.class b/target/test-classes/org/gcube/portal/remove_account_library/AppTest.class new file mode 100644 index 0000000000000000000000000000000000000000..c81a0bd64cbc7e5b4f8240fa82b1a6a49400a658 GIT binary patch literal 665 zcmb7B!EVz)5Pg$4acWEpA!$=6MMxkeMPh~8TTmqwiIde!qDbwf+L$G5aqMWlF5<7? z6a-Q~pdW>pb$qDWUeHRjo_%lLycu8r{e1=C2rqop2qH6cF^`Lx63fh3nFym6*`+#{ zahw&YJx}z^Nb_BMSS}|jw>~^V@1jVx6`ze*Yle;q-F|c-FQrIi zIu~PWbUGgnrUY-4eNqAH*a*=;ldu)(RGk!ynKBbOOIV{FWwA`A(rA}gkDmRabHcmm zKMfBFEz9;!*sGJiV~Wto3vC(f^#{>?lMQ`5A?)4zv~ym)80Jfg?Ld zlcUesF=~8(=E0j4T0i-#hJa&GzIK?|#RJZ_*DQp1$Qkpoi7nRHz#}}av<|8c!5_3w x+q6RG2Q$}tt{<>hYPo)d9rUWYL%to_@P1+UwuM*l@VYDu*QCk<;dv>({|`)!j+Oub literal 0 HcmV?d00001