Yesterday, I configured the Maven environment directly on the machine, and today IDE environments such as Eclipse are configured.
There are many ways to install IDE Plugins. First: Install online, enter the HTTP address to install through Help-->Install New Software. It is simple and easy to operate, but it also has the advantages and disadvantages. It is that the download speed is slow, or sometimes you can't simply search for the plug-in to be installed. Use the first method to install, enter the http address: http://m2eclipse.sonatype.org/sites/m2e, check the option, and wait for it to download and install, and restart eclipse after it is completed.
Second: Use offline plug-in packages. One is to install plug-ins through link files, and the other is a rough but straightforward way (directly copy the relevant files to the corresponding folder).
Link method (custom method):
1. Create two folders in the root directory of your eclipse installation: links and mavenPlugins (the folder name can be customized), and place the features and plugins folders of eclipse-maven3-plugin.7z decompressed in the mavenPlugins folder (this must be done, pay attention to the nesting of the decompressed folders).
3. Create a maven.link (file name can be customized) file in the links directory, open and enter: path=mavenPlugins folder absolute path (note that the folder path is "/" or "//" instead of "/").
4. Restart eclipse. After starting, you open Window --->Preferences and you will find that there is one more option Maven, which means that the installation is successful.
Direct and rough way:
Import the unzipped subfolder features and plugins jar package files into the features and plugins folders in the Eclipse installation directory, and then restart Eclipse to see the Maven option in Preferences. That is, the Maven plug-in configuration is successful.
Installation of eclipse plug-in link file method
1. My eclipse path is eclipse_Home, and I create a folder MyPlugins under the eclipse folder.
2. Download the plugin and unzip theXXX folder containing features and plugins.
3. After completing the copying and creating folders, as shown below
${eclipse_Home}/MyPlugins/theXXX/eclipse/features and ../plugins folders.
4. Create a links folder under eclipse_Home and create a p1_xxx.link file.
The content is path=${eclipse_Home}/MyPlugins/Designer_v4.3.0_for_Eclipse3.1
[Note: 1 is "/" or "//" instead of "/"
2 ${eclipse_Home} is replaced with the actual absolute address: such as D://eclipse//MyPlugins//quantum303
3. Read all the files eclipse in the link directory, be careful!
4 There should be eclipse file added below the path, instead of setting the path to the eclipse folder, so that there are two directories: plugins and features below the path
]
5. Delete the org.eclipse.update directory in ${eclipse_Home}/configuration.
6. Restart eclipse, ok. In fact, this is how myeclipse plug-in installation is operated.
The above is all the content of this article. I hope it will be helpful to everyone's learning and I hope everyone will support Wulin.com more.