Detailed tutorial on using the tomcat8-maven-plugin plugin in Maven

Detailed tutorial on using the tomcat8-maven-plugin plugin in Maven

I searched a lot of articles online but didn't find a solution. I only found the plugin for tomcat7-maven-plugin, as follows:

<plugin>
 <groupId>org.apache.tomcat.maven</groupId>
 <artifactId>tomcat7-maven-plugin</artifactId>
 <version>2.2</version>
</plugin>

The tomcat8-maven-plugin plugin was not found. There is no such plugin in Maven's central repository:

https://repository.apache.org/content/repositories/snapshots/org/apache/tomcat/maven/

Found a repository in mvnrepository

When adding the above dependency to POM.XML, it either prompts that the dependency cannot be found, or it cannot be downloaded. After searching for a long time, I found a solution, which is to use <pluginRepositories> in Maven. <pluginRepositories> is used to configure the plugin address. Because all functions of Maven are implemented using plugins, the plugin package needs to be downloaded from a specific address.

Add the following to POM.XML

 <pluginRepositories>  
	 <pluginRepository>  
		<id>alfresco-public</id>  
		<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>  
	 </pluginRepository>  
	 <pluginRepository>  
		<id>alfresco-public-snapshots</id>  
		<url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>  
		<snapshots>  
		 <enabled>true</enabled>  
		 <updatePolicy>daily</updatePolicy>  
		</snapshots>  
	 </pluginRepository>  
	 <pluginRepository>  
		<id>beardedgeeks-releases</id>  
		<url>http://beardedgeeks.googlecode.com/svn/repository/releases</url>  
	 </pluginRepository>  
 </pluginRepositories>

Add tomcat8-maven-plugin dependency

 <plugin>
     <groupId>org.apache.tomcat.maven</groupId>
     <artifactId>tomcat8-maven-plugin</artifactId>
     <version>3.0-r1655215</version>
    </plugin>

Then you can use the tomcat8-maven-plugin plug-in.

Then I found several repositories with this plugin on the Internet:

http://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat8-maven-plugin/3.0-r1655215

https://svn.apache.org/repos/asf/tomcat/maven-plugin/branches/tc8.x/

https://github.com/apache/tomcat-maven-plugin

This is the end of this article about the detailed tutorial on how to use the tomcat8-maven-plugin plugin with Maven. For more information about how to use the tomcat8-maven-plugin plugin with Maven, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • dockerfile-maven-plugin minimalist tutorial (recommended)
  • Detailed explanation of the role of the spring-boot-maven-plugin plugin

<<:  JavaScript to achieve the effect of tab bar switching

>>:  Several ways to connect tables in MySQL

Recommend

Detailed explanation of MySQL high availability architecture

Table of contents introduction MySQL High Availab...

CSS beginner tutorial: background image fills the entire screen

If you want the entire interface to have a backgr...

What is this in JavaScript point by point series

Understand this Perhaps you have seen this in oth...

Solution to mysql failure to start due to insufficient disk space in ubuntu

Preface Recently, I added two fields to a table i...

How to migrate mysql storage location to a new disk

1. Prepare a new disk and format it with the same...

How to mount a data disk on Tencent Cloud Server Centos

First, check whether the hard disk device has a d...

Velocity.js implements page scrolling switching effect

Today I will introduce a small Javascript animati...

Detailed explanation of redundant and duplicate indexes in MySQL

MySQL allows you to create multiple indexes on th...

In-depth understanding of JavaScript event execution mechanism

Table of contents Preface The principle of browse...

js realizes the function of clicking to switch cards

This article example shares the specific code of ...

Detailed explanation of MySQL startup options and system variables examples

Table of contents Boot Options Command Line Long ...

Pure js to achieve typewriter effect

This article example shares the specific code of ...

How to export and import .sql files under Linux command

This article describes how to export and import ....

Linux/Mac MySQL forgotten password command line method to change the password

All prerequisites require root permissions 1. End...