Looking at GitHub, how do I download the jars for the PayPal Classic API? The docs say to copy from the lib folder but I can only find the src? I must be downloading from the wrong place? But I can't find the right place.
Check the SDK Index, there is a download link at the bottom. It is a zip file that contains all of the JAR files needed.
Related
I have NopCommerce source code and I cannot see any payment methods which used to come default with nopcommerce. It says download from Marketplace but I cant find PayPal Standard plugin on the marketplace
In the root plugin folder I can see the plugin Nop.Plugin.Payments.PayPalStandard which has some files. I believe this is a source code of the plugin. Then I can also see an empty folder of Payments.PayPalStandard
I can see the plugin in action on the demo nopcommerce site so I believe it is still relevant and available.
Am I missing something? Where can I find the plugin and how can I install it on my application
Please download no source code from github.
Refer this link for download deployed code.
It's not possible that any payment plugin not there into plugin folder.
So please dowload from given link and check there are many payment plugins inbuilt.
Currently I have downoad nopCommerce_4.20_NoSource_SelfContained.rar and checked Payments.PayPalStandard is there.
Docs:
\Plugins is a Visual Studio solution folder that contains plugin projects. Physically it's located in the root of your solution. But plugins DLLs are automatically copied in \Presentation\Nop.Web\Plugins\ directory which is used for already deployed plugins because the build output paths of all plugins are set to ..\..\Presentation\Nop.Web\Plugins\{Group}.{Name}\. This allows plugins to contain some external files, such as static content (CSS or JS files) without having to copy files between projects to be able to run the project.
You need to build the project Nop.Plugin.Payments.PayPalStandard, to publish the binary files in the output directory of \Presentation\Nop.Web project. Then run the project and complete the installation process of the plug-in in the administrative panel.
According to the documentation it can be downloaded from https://code.google.com/hosting/moved?project=gdata-java-client but this page redirects me to a github project at https://github.com/google/gdata-java-client
Now, when I download the zip from that project, in the lib directory the jar I can only see is gdata-spreadsheet-1.0.jar.
Is it that I have to build the project myself? Isn't there anywhere from where the built library can be downloaded?
Found the solution to this one. "1-0" is the version of the client library and not the version of the API it supports (I know, it's confusing).
A look at the version.properties file, this client library should work with v3 of the Spreadsheet API.
I want to add google analytics package/jar to a scala project with SBT. However I cannot find the URL of the project on http://mvnrepository.com/
I've also tried looking for it on google forums but to no avail.
I'm thinking of downloading the jar and adding it to sbt as an unmanaged jar. I think a jar is found at https://code.google.com/p/google-api-java-client/source/browse/com/google/apis/google-api-services-analytics/v3-1.3.3-beta?repo=mavenrepo&r=5f31c0ad06088b1762f414890cef93ba177ad4b8
but this is a maven repository. Now, instead of downloading the jar, I'd like to let SBT handle downloading of libs, but for this I need the URL of the maven repository that I just posted the link to where the google code is.
Question
Is there a way to figure out the URL to the maven repository where google analytics jar is stored (from the URL above)? Any other repository that has a copy of google analytics will also do.
I think this is what you want: http://mvnrepository.com/artifact/com.google.apis/google-api-services-analytics
In this case I just googled the artifact name ("google-api-services-analytics") but the structure of maven repositories tends to be very predictable. If you go one level up in the google code page you linked and check out maven-metadata.xml, that will tell you the group and artifact to look for in a repository.
I have never used Weka, but for my GAE Project I'm going to need it. I checked jar files on Weka website to use in Eclipse but I'm not sure which one should be downloaded. So I checked another web site and there are lots of jar files about Weka. I'm looking for a basic version of it. Could you please tell me which one is best for me. Here the links for download:
http://grepcode.com/snapshot/repo1.maven.org/maven2/nz.ac.waikato.cms.weka/weka-dev/3.7.5
http://www.cms.waikato.ac.nz/ml/weka/
All files of Weka:
http://sourceforge.net/projects/weka/files/
Thank you.
You should download all project, then build it by maven.
You can use SVN to checkout code from this link:
https://svn.cms.waikato.ac.nz/svn/weka/trunk/weka
I am compiling an app which is a sample app that uses an api. The api contains interface files (java files) and aidl files. Now I have problem in one of the interface file it cannot recognize the one of these aidl files exists in my project.
I have linked the whole api to the build path.
Does anyone has any idea ??
I had the same error, but it was fixed when I cleaned and rebuilded the project.
Projects -> clean project so it can automatically rebuild.
Look closely at your manifest file, check that the package etc are
spelled as you'd expect.
Also dont forget to paste the server's *.aidl and parcelable implementation (java) to your client project. These files has to have the same name and package as they were in the server project.
Here is some similar posts which might help:
ITelephony.aidl not compiling in eclipse
There are basically two possibilities.
(most likely) you need to make the folder that contains aidl files source folder. if you haven't done so, please do it.
You need a clean build.