Creating Nacl Cryptography library project in Eclipse on Ubuntu - eclipse

I want to create an Eclipse project of the NaCl cryptographic library. I have installed it using the commands mentioned on the website, but I don't know how should I properly include all those files in my eclipse project so that I can use it to develop my own main function.
Can anyone help me on this? The githut repository is located at Nacl Github and the project installation details are available at Nacl Install
I am completely new to this and hence have no idea. If you need any further information, please tell me.
Thanks in advance.

Related

How to debug SocialEngine through an IDE

I've downloaded SocialEngine source code, added few plugins to the website I'm testing.
Now, I'm trying to customize the plugins' and SocialEngine's code to fit my use cases.
How can I make a change to the source code of any of these plugins through Eclipse and reflect that on my website? I want to be able to debug the source code from Eclipse.
I understand that I need to create a module through SocialEngine SDK and install it via the package manager tool, but, I've already got the module source code for the plugins I mentioned above. So, speaking of a full development IDE like Eclipse, how can I tweak this code and have it deployed to my website and debug through it as well?
Thanks!
For customizations, you should understand, the plugins releases upgrades and bug fixes. So, you should add your work in such ways, that you merge easily with those updates regularly.
For debugging you should understand and follow zend framework application, on which socialengine is built.
Would be better, if you ask specific issues you are having in development.
Then, you would have better answers with insights.
Maybe this is helpful, for now.

Error when importing Grinder to Eclipse: No marketplace entries found to handle clojure-maven-plugin

I want to import the Grinder(java load testing tool)into eclipse as a new project.
These are my environment:
Win7 64bit
JDK 1.6 32bit
eclipse-java-luna-SR2-win32
These are my steps:
Eclipse--import from git uri ,I used the git link that provided by official
Eclipse--File--Import--Maven--Existing Maven Projects,I use the directory which contain the source files that just downloaded by git
Then Eclipse started to build and handle the dependency,when the process is over,Eclipse gave the error info:
” No marketplace entries found to handle clojure-maven-plugin:1.3.15”
I don’t modify the pom file ,and use the default maven plugin of Eclipse:m2e.I don’t install the maven and other library.
I try to delete “C:\Users\g.m2\repository”,and redo these steps ,however,it doesn't work.
Plz help me,thanks!
Not sure what is the purpose. Are you planning to develop/enhance the grinder tool. If yes, then probably you should connect to its developers in the grinder site.
And if you are planning to use the tool and trying to configure eclipse for the scripting purpose, your should try Grinderstone. Note that it is outdated and works only with the specific version of software. Otherway, you can use pydev in the eclispe for scripting but you can't run there.
Hope it helps..

CA-SCM integration in to eclipse juno

I am Using eclipse juno.I need to integrate Harvest(CA-SCM) plugin into eclipse.I followed the Harvest Documentation but CA-SCM plugin was not integrated properly in eclipse.
Anyone please guide me to integrate CA-SCM with eclipse Juno.
I'm getting the following error in CA-SCM console.
Unable to intialize CA SCM. Please ensure that all required components are installed.
Please help me to resolve the error.
I know this is a little late but maybe it will help anyone else with the same issue. In order to fix this you also need to install the CA SCM Workbench (the standalone tool). The Eclipse plugin looks for certain libraries on your PATH that are only installed with the SCM Workbench.
Problem resolved! I've got a very good answer from the Harvest guys. Those are the 3 possible reasons for the problem- check that:
1) Are scm related variables in the beginning of the path variable?
2) If SCM installed is 32 bit, you have to use 32 bit eclipse and if you have SCM 64 bit, you need to use 64 bit eclipse. (that was my problem)
3) The final one is SCM plugin for eclipse should be the same version as SCM client.
The needed path variables:
are also listed here: https://docops.ca.com/ca-harvest-scm/13-0/en/installing/install-the-ca-harvest-scm-web-interface
but mainly it seems that those 3 are important:
for version 13:
SCM Home : C:\Program Files\CA\SCM
PEC: C:\Program Files (x86)\CA\SharedComponents\PEC\bin;
If you are in r12.6 add the below one also in the beginning of PATH:
ETPKI
Restart the windows ,if possible open eclipse with a new workspace (beware of data loss)

How can I share my android project configuration

Does anyone know how I can do to configurate my project.
I have several librairies but I hava also teammates and they're working on Mac, and Ubuntu, and they're install on different folder.
The project file shouldn't be in your source control.
Take a look on maven, it might help you.

Using Eclipse with HTML5 Boilerplate

I just got my new computer and I'm going to learn an IDE fresh. Everyone suggests Eclipse; therefore, I'll go with that. I downloaded Java EE for I may use it later for java programming also. I don't mind the bloat.
What I want to achieve is that every time I create a new website project that HTML5 Boilerplate also gets created as a template to the project. Anyone know how to achieve this?
Also any additional plugins for web dev or anything to do helpful with web development ideas with eclipse would be most appreciated.
If you are using Java EE eventually, I think the best strategy would be creating a Maven archetype. This way once you have your baseline project definition, you can archetype it and create all your subsequent projects from that.
Apache - Guide to creating archetypes
If you don't have Maven yet, you can get it here.
And the Maven Eclipse plugin can be installed from the update site: http://download.eclipse.org/technology/m2e/releases
Finally, since you are new to Eclipse, you can install plugins from Help > Install New Software. Best of luck! I know that's probably a lot to take in.