I found next artifact in repo that am using.
artifact contains in
/com
+/company
++/web-services
+++/wsdls
++++/1.0.0-SNAPSHOT
+++++/wsdls-1.0.0-20121119.140914-5-wsdl.zip
strange -wsdl in artifact name
I try use
<groupId>com.company.web-services</groupId>
<artifactId>wsdls</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>zip</type>
but this search artifact wsdls-1.0.0-20121119.140914-5.zip in repo but not wsdls-1.0.0-20121119.140914-5-wsdl.zip.
How can I get this artifact?
PS. maven-metadata.xml
<metadata>
<groupId>com.company.web-services</groupId>
<artifactId>wsdls</artifactId>
<version>1.0.0-SNAPSHOT</version>
<versioning>
<snapshot>
<timestamp>20121119.140914</timestamp>
<buildNumber>5</buildNumber>
</snapshot>
<lastUpdated>20121119140914</lastUpdated>
</versioning>
</metadata>