本文介紹了用于從托管項目加載類的Maven mojo插件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我有一個加載類的自定義插件,例如
Class<?> clazz = Class.forName(NAME_OF_CLASS_FROM_HOST_DEPENDENCIES);
NAME_OF_CLASS_FROM_HOST_Dependors-是使用此插件的項目依賴項中存在的類。
托管項目pom時,我這樣調(diào)用plugin:
<plugin>
<groupId>com.plugins</groupId>
<artifactId>the_plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>do</id>
<phase>process-classes</phase>
<goals>
<goal>do</goal>
</goals>
</execution>
</executions>
</plugin>
獲取ClassNotFoundException
重要的是,這些依賴項在POM中定義為
<scope>provided</scope>
推薦答案
以下列內(nèi)容結(jié)束。
List<URL> listUrl = new ArrayList<URL>();
Set<Artifact> deps = project.getDependencyArtifacts();
for (Artifact artifact : deps) {
final URL url = artifact.getFile().toURI().toURL();
listUrl.add(url);
}
newClassLoader = new URLClassLoader(listUrl.toArray(new URL[listUrl.size()]), Thread.currentThread().getContextClassLoader());
這篇關(guān)于用于從托管項目加載類的Maven mojo插件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,