How do i uninstall m2e in eclipse kepler - m2e

I just download eclipse kelper and found out the m2e and m2e-wtp plugins had been installed,and the new m2e plugins has no "package" of the lifecycle,how do i uninstall it?
=================================================
http://m2eclipse.sonatype.org/sites/m2e
this is the update site i used in eclipse juno(now it seems 404 error).

Click Help-> About Eclipse -> Installation Details -> Installed Software
Find out your software
Click uninstall

Download fresh copy of Eclipse Kepler.
If you want m2e, use this link http://eclipse.org/m2e/download/
many other m2e plugins are old and stopped development.

Actually if you wish to get rid of m2e, you need to remove all packages and directories containing m2e string in eclipse installation's plugin folder. Removing them from workspace doesn't do much good (they are recreated if needed).
I tried this out in Luna and all m2e integrations (plugins and features) were removed...
Now if you still wish to use maven (but not m2e plugin), you just need to create external tool entries for each maven operation you wish to use.

You cant download the java EE version , you have to download Eclipse Standard, and use the update site to select java EE plugins you want, in that case you do not select m2e integration

Remove folders:
.metadata.plugins\org.eclipse.m2e.core\
.metadata.plugins\org.eclipse.m2e.logback.configuration\
From this

Related

How to create plugin installer for adobe after effects

Does anyone know how to create an installer for Adobe After Effects plugins, which installs a plugin, directly in the Adobe After Effects plugin folder on the user machine.
Lots of options here, but first: the best place to put plugins is in the Common/MediaCore/ folder, since it will be installed for all AE (and Premiere) versions. This way, you don't have to release a new installer because a new AE version (with a new name) came out. Read more here: https://ae-plugins.docsforadobe.dev/intro/where-installers-should-put-plug-ins.html#intro-where-installers-should-put-plug-ins
Plugins installation is very easy in a sense: It's just a copy of the .plugin or .aex file in the right folder.
I would argue that the AE user community is used to installing files by copy-pasting them in the right location because of the extensive use of Scripts and Plugins in AE. The classic way of distributing your plugin is a PDF or a readme file that tells the user where to put your plugin file.
But if you want to build an installer, (maybe because you have more files and dlls to install), there are a few options, but I had success in the past with InnoSetup. You also have to consider that AE is cross-platform (Mac and Windows), so your installer should also be available in both platforms.

Alfresco Development . Working with All in one Archetype

I have created a multi module project in Alfresco using All-in-one Archetype of the Maven Alfresco SDK. I have selected 1.1.1 archetype version. The project directory was build successfully. But in that directory I couldnt find the wcmqs(Alfresco Web Quick Start) directory which is used to build websites. Can anyone help me hw to get this wcmqs, as I need to work with wcmqs for creating new pages and templetes in wcmqs?
The wcmqs module did used to be in the Maven Alfresco SDK but it never worked very well and caused other problems. It is however unnecessary to use the Maven Alfresco SDK if you wish to get started.
To get started with Alfresco Web Quick Start you just need to download and install the files. You can get the files from Sourceforge: http://sourceforge.net/projects/alfresco/files/Alfresco%204.2.f%20Community/
Installation should be straightforward. You need to install the AMPs on your Alfresco instance and deploy the WARs to a servlet container (like your Tomcat).
If you want to customise Web Quick Start, such as changing the model, that is a different matter. There is a short example here that you can go through to give you an idea of what you need to do:
http://ecmarchitect.com/archives/2011/01/06/1254

Qt5 reference documentation: qch files

I want to view Qt reference documentation inside QtAssistant, but the installation of Qt5 did not come with .qch documentation files for Qt libraries.
I have tried to find them on the http://qt-project.org but could not find them anywhere.
How do I get the Qt5 documentation files ?
I am using Ubuntu 12.10, I have installed the new qt-library sdk from the qt-project website.
Open Assistant (5.0.1/gcc/bin/assistant) and then go to Edit -> Preferences menu.
There's a Documentation tab. If the list is empty, add the .qch files found in the 5.0.1/gcc/doc/ directory.
This is how it looks. This is Ubuntu 12.10 as well.
Qt 5.0.1 installed with the qt-linux-opensource-5.0.1-x86-offline.run package (388Mb).
Yes, the official Ubuntu-documentation for Qt5 is very incomplete. You don't have information about nearly any class.
If you want to use the QtCreator/QtAssistant build from Ubuntu you have to acquire the docs yourself. I did and uploaded these on my personal Mega-account. Here are the docs. I installed the Qt framework with the installer from qt-project.org, grabbed the documentation and inserted it into the software-center-version.
I don't use QtAssistant as a stand-alone program but integrated in QtCreator. To add the docs to QtCreator go to Tools>Options>Help>Documentation and click add. Then select all .qch files, click apply and enjoy. Maybe try the way as mentioned above.
After all, you can just download the necessary *.deb file from the store of the Ubuntu packages, and install it on your system. As they wrote here, this package will install the *.qch files in /usr/share/qt5/doc. The pitfall is that you will have to remember that you have done that, since your Ubuntu will not take any records for you.

I need to set up eclipse with flex plugin

I want to work with flex from eclipse, could you tell me how to install the flex plugin within eclipse:
What version of eclipse do I need?
Where can I download the flex plugin?
Thanks in advance.
I have not tried Flex with Eclipse, I know for sure you can work with NetBeans IDE using FlexBean plugin. You can find the Eclipse/Flex plugin details below.
http://www.darronschall.com/weblog/2005/08/setting-up-eclipse-for-flex.cfm
Hope this helps.
Go to https://www.adobe.com/cfusion/tdrc/index.cfm?product=flash_builder and download the Eclipse Plug-in of Flash Builder 4.
The installer will allow you to install the plugin into an existing Eclipse installation. One of the installation steps lets you select the Eclipse installation folder.
The system requirements state that the plugin works with "Eclipse 3.4.2 or 3.5". However, in my experience it works fine in Eclipse 3.6 too.

How to install a Qt application on a customers system?

I've got a Qt app that I need installed on a customers computer, which I can't assume has Qt installed on it. I'm on a Mac OSX and the computer I will be installing it on some Unix based system. I will be installing it myself so I don't need a GUI installation wizard or anything like that. Ideally I'd like to end up with a script or makefile, along with a folder of all the sources and necessary libraries, I just don't know where to start. References would be much appreciated, I haven't found anything useful after many google searches.
My question lies somewhere between these two:
Can you create a setup.exe in qt to install your app on a client computer?
Create Linux install for Qt application?
I don't need a full-blown install wizard (question 1), but I also won't have my machine at the installation site to just keep copying libraries until all dependencies are met (question 2). Basically I need to have everything on a CD ready to install when I get there. Thanks in advance.
There are two ways to install a Qt application on a system:
1 - You can compile Qt statically. This will allow you to deploy you app without any qt dependencies.
2 - You need to deploy your app with Qt librairy files you need (like qtcore.dll on Windows)
You will find all explications for each platform in the Qt documentation : http://qt-project.org/doc/qt-4.8/deployment.html.
To create installer you can use InstallJammer for Windows and Unix.
For MacOSX you need to create a dmg image. This is very simple. Read the following web page for help : http://www.wikihow.com/Make-a-DMG-File-on-a-Mac. By using apple script you can customize dmg (like an Application folder link into the dmg).
My preference for Win32 installer is NSIS.
Hope that helps!
Not sure why you want to avoid the install wizard. It can also help you create Uninstaller, desktop and start menu shortcuts, etc. As mentioned in the posts you refer to, you could use BitRock InstallBuilder (Nokia uses it for Qt Creator)
If you do not want to use a wizard and don't want to compile statically, then you can bundle Qt libraries in the same folder as the app and setup a shell script that sets the LD_LIBRARY_PATH to that directory

Resources