diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..0dc4891 --- /dev/null +++ b/.classpath @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..a26f6fe --- /dev/null +++ b/.project @@ -0,0 +1,53 @@ + + + tabular-data-statistical-widget + + + + + + org.eclipse.wst.jsdt.core.javascriptValidator + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + com.google.gdt.eclipse.core.webAppProjectValidator + + + + + com.google.gwt.eclipse.core.gwtProjectValidator + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + com.google.gwt.eclipse.core.gwtNature + org.eclipse.wst.jsdt.core.jsNature + + diff --git a/StatisticalWidget.launch b/StatisticalWidget.launch new file mode 100644 index 0000000..2cdb7b9 --- /dev/null +++ b/StatisticalWidget.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..1436def --- /dev/null +++ b/pom.xml @@ -0,0 +1,319 @@ + + + + + maven-parent + org.gcube.tools + 1.0.0 + + + + + 4.0.0 + org.gcube.portlets.user + tabular-data-statistical-widget + 1.0.0-SNAPSHOT + + + tabular-data-statistical-widget + tabular-data-statistical-widget allows to access to statistical informations + + + https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-statistical-widget + + + + + Giancarlo Panichi + g.panichi@isti.cnr.it + CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" + + architect + developer + + + + + + ${project.basedir}/distro + ${project.build.directory}/${project.build.finalName} + 2014-09-12 + https://gcube.wiki.gcube-system.org/gcube/index.php + templates + distro + config + + + 2.5.1 + + ${env.KEYS} + + + UTF-8 + UTF-8 + + + + + + + localRun + + + org.gcube.common + home-library + + + org.slf4j + slf4j-api + compile + + + ch.qos.logback + logback-classic + 1.0.1 + runtime + + + + + + + + + com.google.gwt + gwt-servlet + + + com.google.gwt + gwt-user + + + + + javax.validation + validation-api + 1.0.0.GA + test + + + javax.validation + validation-api + 1.0.0.GA + sources + test + + + + com.sencha.gxt + gxt + 3.0.1 + + + + org.gcube.common + home-library + + provided + + + + + + org.gcube.portlets.user + tabular-data-gwt-service + [2.0.0-SNAPSHOT,3.0.0-SNAPSHOT) + provided + + + + + org.gcube.portlets.user + tabular-data-widget-common-event + [1.0.0-SNAPSHOT,2.0.0-SNAPSHOT) + provided + + + + + + + com.allen-sauer.gwt.log + gwt-log + 3.2.1 + provided + + + + org.slf4j + slf4j-api + + + + + + junit + junit + 4.8.1 + test + + + + + + + + + + ${webappDirectory}/WEB-INF/classes + + + src/main/resources + + **/*.* + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.16 + + true + + + + + org.apache.maven.surefire + surefire-junit47 + 2.16 + + + + + + + org.codehaus.mojo + gwt-maven-plugin + ${gwtVersion} + + + + resources + + + + + StatisticalWidget.html + ${webappDirectory} + org.gcube.portlets.user.td.statisticalwidget.StatisticalWidget + + + + + + maven-resources-plugin + 2.6 + + + copy-profile + process-resources + + copy-resources + + + ${configDirectory} + + + ${templatesDirectory} + + profile.xml + + true + + + + + + copy-distro-resources + process-resources + + copy-resources + + + ${distroDirectory} + + + ${templatesDirectory} + + profile.xml + descriptor.xml + + true + + + + + + + + maven-clean-plugin + 2.5 + + + + ${distroDirectory} + + ** + + false + + + ${configDirectory} + + ** + + false + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + ${templatesDirectory}/descriptor.xml + + + + + servicearchive + package + + single + + + + + + + + + + + + + org.gcube.distribution + maven-portal-bom + LATEST + pom + import + + + + diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidget.gwt.xml b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidget.gwt.xml new file mode 100644 index 0000000..3627200 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidget.gwt.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidget.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidget.java new file mode 100644 index 0000000..b59486c --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidget.java @@ -0,0 +1,32 @@ +package org.gcube.portlets.user.td.statisticalwidget.client; + +import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; + +import com.allen_sauer.gwt.log.client.Log; +import com.google.web.bindery.event.shared.EventBus; + +/** + * + * Statistical Widget + * + * + * @author "Giancarlo Panichi" g.panichi@isti.cnr.it + * + */ +public class StatisticalWidget { + protected EventBus eventBus; + protected TRId trId; + + /** + * + * @param trId + * @param eventBus + */ + public StatisticalWidget(TRId trId, EventBus eventBus) { + this.trId = trId; + this.eventBus = eventBus; + Log.debug("Statistical Widget: " + trId); + + } +} diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidgetEntry.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidgetEntry.java new file mode 100644 index 0000000..fcbae3f --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/StatisticalWidgetEntry.java @@ -0,0 +1,35 @@ +package org.gcube.portlets.user.td.statisticalwidget.client; + + + +import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; + +import com.allen_sauer.gwt.log.client.Log; +import com.google.gwt.core.client.EntryPoint; +import com.google.web.bindery.event.shared.EventBus; +import com.google.web.bindery.event.shared.SimpleEventBus; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public class StatisticalWidgetEntry implements EntryPoint { + + + public void onModuleLoad() { + EventBus eventBus= new SimpleEventBus(); + + + TRId trId=new TRId(); + //For example Tabular Resource 7 and table 402 + trId.setId("7"); + trId.setTableId("402"); + + new StatisticalWidget(trId,eventBus); + + + Log.info("Hello!"); + } +} diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css new file mode 100644 index 0000000..d44d232 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css @@ -0,0 +1,3 @@ +@CHARSET "UTF-8"; + + diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/DialogCSS.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/DialogCSS.java new file mode 100644 index 0000000..20ce9b4 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/DialogCSS.java @@ -0,0 +1,19 @@ +/** + * + */ +package org.gcube.portlets.user.td.statisticalwidget.client.resources; + +import com.google.gwt.resources.client.CssResource; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public interface DialogCSS extends CssResource { + + + + +} diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/ResourceBundle.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/ResourceBundle.java new file mode 100644 index 0000000..b922a0b --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/ResourceBundle.java @@ -0,0 +1,26 @@ +package org.gcube.portlets.user.td.statisticalwidget.client.resources; + + +import com.google.gwt.core.client.GWT; +import com.google.gwt.resources.client.ClientBundle; +import com.google.gwt.resources.client.ImageResource; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public interface ResourceBundle extends ClientBundle { + + public static final ResourceBundle INSTANCE=GWT.create(ResourceBundle.class); + + @Source("Dialog.css") + DialogCSS dialogCSS(); + + @Source("information.png") + ImageResource information(); + + +} + \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png new file mode 100644 index 0000000..12cd1ae Binary files /dev/null and b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png differ diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/Constants.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/Constants.java new file mode 100644 index 0000000..b7deff2 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/Constants.java @@ -0,0 +1,7 @@ +package org.gcube.portlets.user.td.statisticalwidget.client.utils; + +public class Constants { + + + +} diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/InfoMessageBox.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/InfoMessageBox.java new file mode 100644 index 0000000..d5a93e3 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/InfoMessageBox.java @@ -0,0 +1,28 @@ +package org.gcube.portlets.user.td.statisticalwidget.client.utils; + +import com.sencha.gxt.widget.core.client.box.MessageBox; + +/** + * + * @author "Giancarlo Panichi" + * g.panichi@isti.cnr.it + * + */ +public class InfoMessageBox extends MessageBox { + + /** + * Creates a message box with an info icon and the specified title and + * message. + * + * @param title + * the message box title + * @param message + * the message displayed in the message box + */ + public InfoMessageBox(String title, String message) { + super(title, message); + + setIcon(ICONS.info()); + } + +} \ No newline at end of file diff --git a/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/UtilsGXT3.java b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/UtilsGXT3.java new file mode 100644 index 0000000..da19ef4 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/td/statisticalwidget/client/utils/UtilsGXT3.java @@ -0,0 +1,78 @@ +package org.gcube.portlets.user.td.statisticalwidget.client.utils; + +import com.google.gwt.core.client.Callback; +import com.google.gwt.user.client.Element; +import com.sencha.gxt.core.client.dom.XElement; +import com.sencha.gxt.widget.core.client.Component; +import com.sencha.gxt.widget.core.client.box.AlertMessageBox; +import com.sencha.gxt.widget.core.client.event.HideEvent; +import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler; + +/** + * + * @author "Giancarlo Panichi" g.panichi@isti.cnr.it + * + */ +public class UtilsGXT3 { + public static void mask(Element element) { + XElement el = element. cast(); + el.mask("Loading..."); + } + + public static void umask(Element element) { + element. cast().unmask(); + } + + public static void alert(String title, String message) { + final AlertMessageBox d = new AlertMessageBox(title, message); + d.addHideHandler(new HideHandler() { + + public void onHide(HideEvent event) { + + } + }); + d.show(); + + } + + public static void alert(String title, String message, + final Callback callback) { + final AlertMessageBox d = new AlertMessageBox(title, message); + d.addHideHandler(new HideHandler() { + + public void onHide(HideEvent event) { + Component comp = event.getSource(); + callback.onSuccess(comp); + } + }); + d.show(); + } + + public static void info(String title, String message) { + final InfoMessageBox d = new InfoMessageBox(title, message); + d.addHideHandler(new HideHandler() { + + public void onHide(HideEvent event) { + + } + }); + d.show(); + + } + + public static void info(String title, String message, + final Callback callback) { + final InfoMessageBox d = new InfoMessageBox(title, message); + d.addHideHandler(new HideHandler() { + + public void onHide(HideEvent event) { + Component comp = event.getSource(); + callback.onSuccess(comp); + } + }); + d.show(); + + } + +} diff --git a/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/ResourcesWidget.gwt.xml b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/ResourcesWidget.gwt.xml new file mode 100644 index 0000000..89555c0 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/ResourcesWidget.gwt.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages.properties b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages.properties new file mode 100644 index 0000000..c222555 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages.properties @@ -0,0 +1,2 @@ +sendButton = Send +nameField = Enter your name \ No newline at end of file diff --git a/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages_fr.properties b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages_fr.properties new file mode 100644 index 0000000..b4a7627 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/Messages_fr.properties @@ -0,0 +1,2 @@ +sendButton = Envoyer +nameField = Entrez votre nom \ No newline at end of file diff --git a/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css new file mode 100644 index 0000000..d44d232 --- /dev/null +++ b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/Dialog.css @@ -0,0 +1,3 @@ +@CHARSET "UTF-8"; + + diff --git a/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png new file mode 100644 index 0000000..12cd1ae Binary files /dev/null and b/src/main/resources/org/gcube/portlets/user/td/statisticalwidget/client/resources/information.png differ diff --git a/src/main/webapp/StatisticalWidget.css b/src/main/webapp/StatisticalWidget.css new file mode 100644 index 0000000..7aca7ac --- /dev/null +++ b/src/main/webapp/StatisticalWidget.css @@ -0,0 +1,34 @@ +/** Add css rules here for your application. */ + + +/** Example rules used by the template application (remove for your app) */ +h1 { + font-size: 2em; + font-weight: bold; + color: #777777; + margin: 40px 0px 70px; + text-align: center; +} + +.sendButton { + display: block; + font-size: 16pt; +} + +/** Most GWT widgets already have a style name defined */ +.gwt-DialogBox { + width: 400px; +} + +.dialogVPanel { + margin: 5px; +} + +.serverResponseLabelError { + color: red; +} + +/** Set ids using widget.getElement().setId("idOfElement") */ +#closeButton { + margin: 15px 6px 6px; +} diff --git a/src/main/webapp/StatisticalWidget.html b/src/main/webapp/StatisticalWidget.html new file mode 100644 index 0000000..1ba248f --- /dev/null +++ b/src/main/webapp/StatisticalWidget.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + Web Application Starter Project + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..b4e9699 --- /dev/null +++ b/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,35 @@ + + + + + + + + TDGWTService + org.gcube.portlets.user.td.gwtservice.server.TDGWTServiceImpl + + + + jUnitHostImpl + com.google.gwt.junit.server.JUnitHostImpl + + + + + TDGWTService + ResourcesWidget/TDGWTService + + + jUnitHostImpl + ResourcesWidget/junithost/* + + + + + + StatisticalWidget.html + + + diff --git a/src/test/java/org/gcube/portlets/user/td/statisticalwidget/client/GwtTestStatisticalWidget.java b/src/test/java/org/gcube/portlets/user/td/statisticalwidget/client/GwtTestStatisticalWidget.java new file mode 100644 index 0000000..93183fe --- /dev/null +++ b/src/test/java/org/gcube/portlets/user/td/statisticalwidget/client/GwtTestStatisticalWidget.java @@ -0,0 +1,64 @@ +package org.gcube.portlets.user.td.statisticalwidget.client; + + + +import com.google.gwt.junit.client.GWTTestCase; + +/** + * GWT JUnit integration tests must extend GWTTestCase. + * Using "GwtTest*" naming pattern exclude them from running with + * surefire during the test phase. + * + * If you run the tests using the Maven command line, you will have to + * navigate with your browser to a specific url given by Maven. + * See http://mojo.codehaus.org/gwt-maven-plugin/user-guide/testing.html + * for details. + */ +public class GwtTestStatisticalWidget extends GWTTestCase { + + /** + * Must refer to a valid module that sources this class. + */ + public String getModuleName() { + return "org.gcube.portlets.user.td.resourceswidget.ResourcesWidgetJUnit"; + } + + + /** + * This test will send a request to the server using the greetServer method in + * GreetingService and verify the response. + */ + public void testGreetingService() { + // Create the service that we will test. + //GreetingServiceAsync greetingService = GWT.create(GreetingService.class); + //ServiceDefTarget target = (ServiceDefTarget) greetingService; + //target.setServiceEntryPoint(GWT.getModuleBaseURL() + "SDMXImportWizardTD/greet"); + + // Since RPC calls are asynchronous, we will need to wait for a response + // after this test method returns. This line tells the test runner to wait + // up to 10 seconds before timing out. + //delayTestFinish(10000); + + // Send a request to the server. + /* greetingService.greetServer("GWT User", new AsyncCallback() { + public void onFailure(Throwable caught) { + // The request resulted in an unexpected error. + fail("Request failure: " + caught.getMessage()); + } + + + public void onSuccess(String result) { + // Verify that the response is correct. + assertTrue(result.startsWith("Hello, GWT User!")); + + // Now that we have received a response, we need to tell the test runner + // that the test is complete. You must call finishTest() after an + // asynchronous test finishes successfully, or the test will time out. + finishTest(); + } + });*/ + + } + + +} diff --git a/src/test/resources/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidgetJUnit.gwt.xml b/src/test/resources/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidgetJUnit.gwt.xml new file mode 100644 index 0000000..e7c160e --- /dev/null +++ b/src/test/resources/org/gcube/portlets/user/td/statisticalwidget/StatisticalWidgetJUnit.gwt.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/INSTALL b/templates/INSTALL new file mode 100644 index 0000000..e69de29 diff --git a/templates/LICENSE b/templates/LICENSE new file mode 100644 index 0000000..cc51139 --- /dev/null +++ b/templates/LICENSE @@ -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. \ No newline at end of file diff --git a/templates/MAINTAINERS b/templates/MAINTAINERS new file mode 100644 index 0000000..0bc9be3 --- /dev/null +++ b/templates/MAINTAINERS @@ -0,0 +1 @@ +Giancarlo Panichi (giancarlo.panichi@isti.cnr.it), CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" diff --git a/templates/README b/templates/README new file mode 100644 index 0000000..7e3ad55 --- /dev/null +++ b/templates/README @@ -0,0 +1,48 @@ +The gCube System - ${name} +------------------------------------------------------------ + +This work has been supported by the following European projects: iMarine (FP7-INFRASTRUCTURES-2011-2) + +Authors +------- + +Giancarlo Panichi (giancarlo.panichi@isti.cnr.it), CNR Pisa, +Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" + + +Version and Release Date +------------------------ + +v. ${version} (${release.date}) + + +Description +----------- + +${project.description} + + +Download information +-------------------- +Source code is available from SVN: + ${scm.url} + +Binaries can be downloaded from: + http://software.d4science.research-infrastructures.eu/ + + +Documentation +------------- + +${project.description} + +Documentation is available on-line from the Projects Documentation Wiki: + ${wikiurl} + + +Licensing +--------- + +This software is licensed under the terms you may find in the file named "LICENSE" in this directory. + + diff --git a/templates/changelog.xml b/templates/changelog.xml new file mode 100644 index 0000000..4d09efc --- /dev/null +++ b/templates/changelog.xml @@ -0,0 +1,6 @@ + + + First Release + + \ No newline at end of file diff --git a/templates/descriptor.xml b/templates/descriptor.xml new file mode 100644 index 0000000..b978636 --- /dev/null +++ b/templates/descriptor.xml @@ -0,0 +1,39 @@ + + servicearchive + + tar.gz + + / + + + ${distroDirectory} + / + true + + README + LICENSE + INSTALL + MAINTAINERS + changelog.xml + + 755 + + + + + ${distroDirectory}/svnpath.txt + /${artifactId} + + + ${configDirectory}/profile.xml + / + + + target/${build.finalName}.${packaging} + /${artifactId} + + + \ No newline at end of file diff --git a/templates/profile.xml b/templates/profile.xml new file mode 100644 index 0000000..19ed5bc --- /dev/null +++ b/templates/profile.xml @@ -0,0 +1,29 @@ + + + + Service + + ${project.description} + PortletsUser + ${project.name} + ${version} + + + ${project.description} + ${project.name} + ${version} + + ${project.groupId} + ${project.artifactId} + ${project.version} + + library + + ${project.build.finalName}.${project.packaging} + + + + + + + diff --git a/templates/svnpath.txt b/templates/svnpath.txt new file mode 100644 index 0000000..dcd0d22 --- /dev/null +++ b/templates/svnpath.txt @@ -0,0 +1 @@ +${scm.url} \ No newline at end of file