[
https://issues.apache.org/jira/browse/CXF-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12755419#action_12755419
]
Trygve Laugstøl commented on CXF-2275:
--------------------------------------
Yes, it does only look at the groupId+artifactId+version.
To create a build with several projects you need a structure like this:
pom.xml
+-- client/pom.xml
+-- api/pom.xml
+-- server/pom.xml
Where the root pom is something like this:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>client</module>
<module>server</module>
<module>api</module>
</modules>
</project>
Then just run "mvn install" from the root and it will find all 4 projects which
should be built in order (put the api module last to see that it will order the
projects correctly).
> Maven plugins: Support reading WSDLs from Maven repository
> ----------------------------------------------------------
>
> Key: CXF-2275
> URL: https://issues.apache.org/jira/browse/CXF-2275
> Project: CXF
> Issue Type: New Feature
> Components: Tooling
> Affects Versions: 2.2.2
> Reporter: Trygve Laugstøl
> Assignee: Christian Schneider
> Fix For: 2.3
>
>
> The Maven plugins should support reading WSDL files directly from a Maven
> repository to make it easier to consume WSDLs in a repository. Currently it
> is required to use the dependency plugin or similar to copy the WSDL from the
> repository to target/ to process it.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.