Skip to content

ramonnteixeira/maven-dependency-analizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven dependency analizer

this plugin is to avoid duplicate classes by maven dependencies with different groupID

  • To integrate
	<plugin>
		<groupId>com.github.ramonnteixeira</groupId>
		<artifactId>dependency-analize-plugin</artifactId>
		<version>1.0.0</version>
		<executions>
			<execution>
				<goals>
					<goal>duplicated-class</goal>
				</goals>
			</execution>
		</executions>			
	</plugin>
  • It is possible to configure the exceptions list will be ignored for the plugin.
	<plugin>
		<groupId>com.github.ramonnteixeira</groupId>
		<artifactId>dependency-analize-plugin</artifactId>
		<version>1.0.0</version>
		<executions>
			<execution>
				<goals>
					<goal>duplicated-class</goal>
				</goals>
			</execution>
			<configuration>
				<exceptions>
					<exception>
						<dependency1>artifact-version.jar</dependency1>
						<dependency2>otherartifact-version.jar</dependency2>
					</exception>
				</exceptions>
			</configuration>	
		</executions>			
	</plugin>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages