m

maven-resources-plugin

The Resources Plugin handles the copying of project resources to the output directory. There are two different kinds of resources: main resources and test resources. The difference is that the main resources are the resources associated with the main source code while the test resources are associated with the test source code. Thus, this allows the separation of resources for the main source code and its unit tests.
Files download
File Operation
maven-resources-plugin-3.3.0.jar download
maven-resources-plugin-3.3.0.pom download
maven-resources-plugin-3.3.0-sources.jar download
Apache Maven
<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-resources-plugin</artifactId>
  <version>3.3.0</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.apache.maven.plugins:maven-resources-plugin:3.3.0'
Gradle Kotlin
implementation("org.apache.maven.plugins:maven-resources-plugin:3.3.0")
Scala SBT
libraryDependencies += "org.apache.maven.plugins" % "maven-resources-plugin" % "3.3.0"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.maven.plugins', module='maven-resources-plugin', version='3.3.0')
)
Apache Ivy
<dependency org="org.apache.maven.plugins" name="maven-resources-plugin" rev="3.3.0" />
Leiningen
[org.apache.maven.plugins/maven-resources-plugin "3.3.0"]
Apache Buildr
'org.apache.maven.plugins:maven-resources-plugin:jar:3.3.0'