Bug 900570 (JBPAPP6-1595)
| Summary: | Create source jars for all EAP artifacts. | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Ondřej Žižka <ozizka> |
| Component: | Build | Assignee: | Fernando Nasser <fnasser> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 6.0.1 | CC: | cdewolf, dosoudil, fnasser, ncross, ozizka, pgier, smcgowan, vtunka |
| Target Milestone: | --- | ||
| Target Release: | EAP 6.1.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| URL: | http://jira.jboss.org/jira/browse/JBPAPP6-1595 | ||
| Whiteboard: | javadoc | ||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-03-28 20:52:03 UTC | Type: | Task |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 900571, 900856 | ||
|
Description
Ondřej Žižka
2012-05-31 18:11:46 UTC
Link: Added: This issue is related to AS7-582 Link: Added: This issue is related to JBPAPP-9211 Link: Removed: This issue is related to JBPAPP-9211 Link: Added: This issue is a dependency of JBPAPP-9211 Hi Ondrej, we do not modify upstream builds, so if they produce -sources.jar we include them if not we don't. So you'll probably have to file upstream JIRAs to those components that do not produce that artifacts. You can keep this one and link the JIRAs here so we can incorporate those as they are added to the upstream projects in the next build we do for those. Mind you, there are third-party stuff that is built upstream with Ant and other things (even a bash script!) that will not produce source artifacts. We may need to find another way for you to produce javadocs for those. Hi Fernando,
{quote}
we do not modify upstream builds, so if they produce -sources.jar we include them if not we don't.
{quote}
that is basically what I am asking for :)
We don't need to rely on the upstream build process.
When we already have the sources available, why don't we just zip them, and upload as an artifact? 3 lines in bash, isn't it?
{code}
if [ -f foo-bar-1.2.3-source.jar ] ; then
zip -r foo-bar-1.2.3-source.jar src;
mvn deploy:deploy-file foo-bar-1.2.3-source.jar
fi
{code}
Or something.
Unfortunately is not usually that simple, these weird builds manipulate sources in crazy ways, they are not like well behaved maven builds that follow a convention. But we can try adding that for a few selected ones and see if we succeed (we tried in the past and failed). However, I inspected the 55 missing messages. There are several false positives for things like resources, test artifacts, console export etc. There are duplicates as well, some of the commons appear more than once I don't know why. All the rest are for Apache old projects, things like commons bits, dom4j, jdom, veocity, xom for which I am not sure we should be distributing APIs, maybe Jacorb (which is in there) but that probably requires separating APIs that we should and that we should not ship, which ain't going to be easy. Can you take a look and paste here a list of what you really need? And the smaller the list the easier if becomes for us to try some hack in the ant builds. P.S.: The list of things public and private is a bit fishy, I still cannot understand (nor does Rich Sharples) why we don't want to ship the RESTEasy javadocs. And I myself have serious doubts about us shipping APIs of these old Apache libraries. This sounds like trouble. {quote}But we can try adding that for a few selected ones and see if we succeed (we tried in the past and failed).{quote}
Sounds good. And I will (try to) prepare a list of those which are missing to generate the javadoc for EAP.
{quote}However, I inspected the 55 missing messages. There are several false positives for things like resources, test artifacts, console export etc. There are duplicates as well, some of the commons appear more than once I don't know why.{quote}
Good, could you please consult the details with the maintainer of the job, Rostislav Svoboda - rsvoboda?
{quote}
All the rest are for Apache old projects, things like commons bits, dom4j, jdom, veocity, xom for which I am not sure we should be distributing APIs, maybe Jacorb (which is in there) but that probably requires separating APIs that we should and that we should not ship, which ain't going to be easy.
{quote}
Yep, some of them are not needed for javadoc. But for other purposes, like debugging, having them is, say, convenient, at least.
Resteasy - No idea.
Apache libs and such - +1, we should consider wisely what to include as public.
Hi, do you have the list? Working on it. The list will emerge as a part of work on JBPAPP-9838. Currently, few issues block this as the Javadoc plugin doesn't advance to generating the javadoc. But I will at least check the repo if it has sources for all jars. Link: Added: This issue is a dependency of JBPAPP-9838 {code}
find . -name '*.jar' ! -name '*-sources.jar' ! -name '*-javadoc.jar' ! -wholename '*org/apache/maven*' ! -name '*-maven-plugin*' > ~/tmp/jarList.txt
while read -r LINE ; do
SRC_FILE=`echo "$LINE" | sed 's#.jar$#-sources.jar#'`
if [ ! -f $SRC_FILE ] ; then
echo "Not found: $SRC_FILE";
fi
done < ~/tmp/jarList.txt
{code}
Results:
{code}
Not found: ./net/sf/xslthl/xslthl/2.0.2-redhat-1/xslthl-2.0.2-redhat-1-sources.jar
Not found: ./net/sf/kxml/kxml2/2.2.2/kxml2-2.2.2-sources.jar
Not found: ./net/sf/squirrel-sql/thirdparty-non-maven/java-cup/0.11a-redhat-1/java-cup-0.11a-redhat-1-sources.jar
Not found: ./net/sf/squirrel-sql/thirdparty-non-maven/java-cup/0.11a-redhat-1/java-cup-0.11a-redhat-1-runtime-sources.jar
Not found: ./net/sf/jargs/1.0/jargs-1.0-sources.jar
Not found: ./net/sf/cookxml/cookxml_examples/3.0.1/cookxml_examples-3.0.1-sources.jar
Not found: ./net/sf/cookxml/cookxml/3.0.1/cookxml-3.0.1-sources.jar
Not found: ./net/sf/cookxml/cookswing_examples/1.5.1/cookswing_examples-1.5.1-sources.jar
Not found: ./net/sf/cookxml/cookswing/1.5.1/cookswing-1.5.1-sources.jar
Not found: ./net/sf/cookxml/cookjython_examples/1.3/cookjython_examples-1.3-sources.jar
Not found: ./net/sf/cookxml/cookjython/1.3/cookjython-1.3-sources.jar
Not found: ./net/sf/cookxml/cookjs_examples/1.2/cookjs_examples-1.2-sources.jar
Not found: ./net/sf/cookxml/cookjs/1.2/cookjs-1.2-sources.jar
Not found: ./net/sf/cookxml/cookformlayout_examples/1.1/cookformlayout_examples-1.1-sources.jar
Not found: ./net/sf/cookxml/cookformlayout/1.1/cookformlayout-1.1-sources.jar
Not found: ./net/sf/cookxml/cookbsh_examples/1.3/cookbsh_examples-1.3-sources.jar
Not found: ./net/sf/cookxml/cookbsh/1.3/cookbsh-1.3-sources.jar
Not found: ./net/sf/cookxml/cookbsf_examples/1.2/cookbsf_examples-1.2-sources.jar
Not found: ./net/sf/cookxml/cookbsf/1.2/cookbsf-1.2-sources.jar
Not found: ./net/java/dev/msv/msv-core/2011.1-redhat-2/msv-core-2011.1-redhat-2-tests-sources.jar
Not found: ./net/java/dev/msv/msv-core/2011.1-redhat-1/msv-core-2011.1-redhat-1-tests-sources.jar
Not found: ./net/java/dev/jna/jna/3.2.7/jna-3.2.7-sources.jar
Not found: ./net/java/dev/javacc/javacc/5.0-redhat-1/javacc-5.0-redhat-1-sources.jar
Not found: ./net/jcip/jcip-annotations/1.0-redhat-2/jcip-annotations-1.0-redhat-2-sources.jar
Not found: ./net/jcip/jcip-annotations/1.0-redhat-1/jcip-annotations-1.0-redhat-1-sources.jar
Not found: ./net/sourceforge/nekohtml/nekohtml/1.9.14-redhat-1/nekohtml-1.9.14-redhat-1-sources.jar
Not found: ./net/sourceforge/htmlunit/htmlunit-core-js/2.8-redhat-1/htmlunit-core-js-2.8-redhat-1-sources.jar
Not found: ./net/sourceforge/findbugs/findbugs/1.1.1/findbugs-1.1.1-sources.jar
Not found: ./org/jboss/as/jboss-as-remoting-test/7.1.3.Final-redhat-1/jboss-as-remoting-test-7.1.3.Final-redhat-1-sources.jar
Not found: ./org/jboss/as/jboss-as-client-all/7.1.3.Final-redhat-1/jboss-as-client-all-7.1.3.Final-redhat-1-sources.jar
Not found: ./org/jboss/as/jboss-as-clustering-common/7.1.3.Final-redhat-1/jboss-as-clustering-common-7.1.3.Final-redhat-1-tests-sources.jar
Not found: ./org/jboss/as/jboss-as-spec-api-test/7.1.3.Final-redhat-1/jboss-as-spec-api-test-7.1.3.Final-redhat-1-sources.jar
Not found: ./org/jboss/as/jboss-as-console/1.4.0.Final-redhat-1/jboss-as-console-1.4.0.Final-redhat-1-export-sources.jar
Not found: ./org/jboss/as/jboss-as-console/1.4.0.Final-redhat-1/jboss-as-console-1.4.0.Final-redhat-1-resources-sources.jar
Not found: ./org/jboss/el/jboss-el/1.0_02.CR6-redhat-1/jboss-el-1.0_02.CR6-redhat-1-sources.jar
Not found: ./org/jboss/el/jboss-el/1.0_02.CR6/jboss-el-1.0_02.CR6-sources.jar
Not found: ./org/jboss/ws/cxf/jbossws-cxf-resources/4.0.5.GA-redhat-1/jbossws-cxf-resources-4.0.5.GA-redhat-1-jboss712-sources.jar
Not found: ./org/jboss/ws/native/jbossws-native-resources/4.0.5.GA-redhat-1/jbossws-native-resources-4.0.5.GA-redhat-1-jboss712-sources.jar
Not found: ./org/jboss/shrinkwrap/shrinkwrap-impl-base/1.0.0-redhat-2/shrinkwrap-impl-base-1.0.0-redhat-2-tests-sources.jar
Not found: ./org/jboss/shrinkwrap/shrinkwrap-impl-base/1.0.0/shrinkwrap-impl-base-1.0.0-tests-sources.jar
Not found: ./org/jboss/shrinkwrap/shrinkwrap-api/1.0.0-redhat-2/shrinkwrap-api-1.0.0-redhat-2-tests-sources.jar
Not found: ./org/jboss/shrinkwrap/shrinkwrap-api/1.0.0/shrinkwrap-api-1.0.0-tests-sources.jar
Not found: ./org/jboss/mod_cluster/mod_cluster-container-catalina/1.2.1.Final-redhat-2/mod_cluster-container-catalina-1.2.1.Final-redhat-2-tests-sources.jar
Not found: ./org/jboss/spec/jboss-javaee-all-6.0/3.0.1.Final-redhat-1/jboss-javaee-all-6.0-3.0.1.Final-redhat-1-sources.jar
Not found: ./org/jboss/maven/plugins/maven-injection-plugin/1.0.2-redhat-1/maven-injection-plugin-1.0.2-redhat-1-sources.jar
Not found: ./org/jboss/maven/plugins/maven-jdocbook-plugin/2.2.3-redhat-1/maven-jdocbook-plugin-2.2.3-redhat-1-sources.jar
Not found: ./org/jboss/maven/plugins/maven-jdocbook-style-plugin/2.0.0-redhat-1/maven-jdocbook-style-plugin-2.0.0-redhat-1-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-xmlpublic/2.4.0-redhat-2/xmlbeans-xmlpublic-2.4.0-redhat-2-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-xmlpublic/2.4.0-redhat-1/xmlbeans-xmlpublic-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-qname/2.4.0-redhat-2/xmlbeans-qname-2.4.0-redhat-2-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-qname/2.4.0-redhat-1/xmlbeans-qname-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans/2.4.0-redhat-2/xmlbeans-2.4.0-redhat-2-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans/2.4.0-redhat-1/xmlbeans-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-xpath/2.4.0-redhat-2/xmlbeans-xpath-2.4.0-redhat-2-sources.jar
Not found: ./org/apache/xmlbeans/xmlbeans-xpath/2.4.0-redhat-1/xmlbeans-xpath-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/build-utils/cxf-xml2fastinfoset-plugin/2.4.0-redhat-1/cxf-xml2fastinfoset-plugin-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/build-utils/cxf-xml2fastinfoset-plugin/2.3.2-redhat-1/cxf-xml2fastinfoset-plugin-2.3.2-redhat-1-sources.jar
Not found: ./org/apache/cxf/build-utils/cxf-xml2fastinfoset-test/2.4.0-redhat-1/cxf-xml2fastinfoset-test-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/build-utils/cxf-buildtools/2.4.0-redhat-1/cxf-buildtools-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-codegen-plugin/2.4.6-redhat-1/cxf-codegen-plugin-2.4.6-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-wsdl-validator-plugin/2.4.6-redhat-1/cxf-wsdl-validator-plugin-2.4.6-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-java2ws-plugin/2.4.6-redhat-1/cxf-java2ws-plugin-2.4.6-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-wadl2java-plugin/2.4.6-redhat-1/cxf-wadl2java-plugin-2.4.6-redhat-1-sources.jar
Not found: ./org/apache/cxf/xjcplugins/cxf-xjc-boolean/2.4.0-redhat-1/cxf-xjc-boolean-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/xjcplugins/cxf-xjc-wsdlextension/2.4.0-redhat-1/cxf-xjc-wsdlextension-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/xjcplugins/cxf-xjc-ts/2.4.0-redhat-1/cxf-xjc-ts-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/xjcplugins/cxf-xjc-pl/2.4.0-redhat-1/cxf-xjc-pl-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/xjcplugins/cxf-xjc-dv/2.4.0-redhat-1/cxf-xjc-dv-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-xjc-plugin/2.4.0-redhat-1/cxf-xjc-plugin-2.4.0-redhat-1-sources.jar
Not found: ./org/apache/cxf/cxf-xjc-plugin/2.3.2-redhat-1/cxf-xjc-plugin-2.3.2-redhat-1-sources.jar
Not found: ./org/apache/commons/ssl/not-yet-commons-ssl/0.3.11-redhat-2/not-yet-commons-ssl-0.3.11-redhat-2-sources.jar
Not found: ./org/apache/commons/ssl/not-yet-commons-ssl/0.3.11-redhat-1/not-yet-commons-ssl-0.3.11-redhat-1-sources.jar
Not found: ./org/apache/commons/commons-build-plugin/1.3-redhat-1/commons-build-plugin-1.3-redhat-1-sources.jar
Not found: ./org/apache/commons/transaction/commons-transaction/1.1/commons-transaction-1.1-sources.jar
Not found: ./org/apache/james/apache-mime4j-core/0.7.2-redhat-1/apache-mime4j-core-0.7.2-redhat-1-tests-sources.jar
Not found: ./org/apache/james/apache-mime4j-storage/0.7.2-redhat-1/apache-mime4j-storage-0.7.2-redhat-1-tests-sources.jar
Not found: ./org/apache/felix/org.apache.felix.resolver/0.1.0.Beta3-redhat-1/org.apache.felix.resolver-0.1.0.Beta3-redhat-1-sources.jar
Not found: ./org/apache/felix/org.apache.felix.shell/1.4.2-redhat-1/org.apache.felix.shell-1.4.2-redhat-1-sources.jar
Not found: ./org/apache/felix/org.osgi.service.obr/1.0.2-redhat-1/org.osgi.service.obr-1.0.2-redhat-1-sources.jar
Not found: ./org/apache/felix/org.osgi.foundation/1.2.0/org.osgi.foundation-1.2.0-sources.jar
Not found: ./org/apache/felix/org.osgi.core/1.4.0/org.osgi.core-1.4.0-sources.jar
Not found: ./org/apache/felix/org.osgi.compendium/1.4.0/org.osgi.compendium-1.4.0-sources.jar
Not found: ./org/apache/felix/org.apache.felix.framework/2.0.5-redhat-1/org.apache.felix.framework-2.0.5-redhat-1-sources.jar
Not found: ./org/apache/felix/maven-bundle-plugin/2.3.7-redhat-1/maven-bundle-plugin-2.3.7-redhat-1-sources.jar
Not found: ./org/apache/felix/maven-bundle-plugin/2.3.6-redhat-1/maven-bundle-plugin-2.3.6-redhat-1-sources.jar
Not found: ./org/apache/felix/maven-bundle-plugin/2.3.5-redhat-1/maven-bundle-plugin-2.3.5-redhat-1-sources.jar
Not found: ./org/apache/felix/maven-bundle-plugin/2.3.4-redhat-1/maven-bundle-plugin-2.3.4-redhat-1-sources.jar
Not found: ./org/apache/felix/maven-scr-plugin/1.2.0-redhat-1/maven-scr-plugin-1.2.0-redhat-1-sources.jar
Not found: ./org/apache/httpcomponents/httpclient-osgi/4.1.3-redhat-2/httpclient-osgi-4.1.3-redhat-2-sources.jar
Not found: ./org/apache/httpcomponents/httpclient/4.1.3-redhat-1/httpclient-4.1.3-redhat-1-tests-sources.jar
Not found: ./org/apache/httpcomponents/httpcore-osgi/4.1.4-redhat-2/httpcore-osgi-4.1.4-redhat-2-sources.jar
Not found: ./org/apache/velocity/velocity/1.6.3-redhat-2/velocity-1.6.3-redhat-2-dep-sources.jar
Not found: ./org/apache/velocity/velocity/1.6.3-redhat-1/velocity-1.6.3-redhat-1-sources.jar
Not found: ./org/apache/velocity/velocity/1.5/velocity-1.5-sources.jar
Not found: ./org/apache/xbean/xbean-telnet/3.7/xbean-telnet-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-spring/3.7/xbean-spring-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-naming/3.7/xbean-naming-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-finder/3.7/xbean-finder-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-classpath/3.7/xbean-classpath-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-classloader/3.7/xbean-classloader-3.7-sources.jar
Not found: ./org/apache/xbean/xbean-bundleutils/3.7/xbean-bundleutils-3.7-sources.jar
Not found: ./org/apache/xbean/maven-xbean-plugin/3.7/maven-xbean-plugin-3.7-sources.jar
Not found: ./org/apache/tomcat/tomcat-i18n-es/7.0.27/tomcat-i18n-es-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-util/7.0.27/tomcat-util-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-servlet-api/7.0.27/tomcat-servlet-api-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-jsp-api/7.0.27/tomcat-jsp-api-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-jasper-el/7.0.27/tomcat-jasper-el-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-jasper/7.0.27/tomcat-jasper-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-i18n-ja/7.0.27/tomcat-i18n-ja-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-i18n-fr/7.0.27/tomcat-i18n-fr-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-el-api/7.0.27/tomcat-el-api-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-coyote/7.0.27/tomcat-coyote-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-catalina-ha/7.0.27/tomcat-catalina-ha-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-catalina-ant/7.0.27/tomcat-catalina-ant-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-catalina/7.0.27/tomcat-catalina-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-api/7.0.27/tomcat-api-7.0.27-sources.jar
Not found: ./org/apache/tomcat/tomcat-annotations-api/7.0.27/tomcat-annotations-api-7.0.27-sources.jar
Not found: ./org/apache/tomcat/servlet-api/6.0.35/servlet-api-6.0.35-sources.jar
Not found: ./org/apache/tomcat/juli/6.0.35/juli-6.0.35-sources.jar
Not found: ./org/apache/tomcat/jsp-api/6.0.35/jsp-api-6.0.35-sources.jar
Not found: ./org/apache/tomcat/jasper-el/6.0.35/jasper-el-6.0.35-sources.jar
Not found: ./org/apache/tomcat/jasper/6.0.35/jasper-6.0.35-sources.jar
Not found: ./org/apache/tomcat/el-api/6.0.35/el-api-6.0.35-sources.jar
Not found: ./org/apache/tomcat/coyote/6.0.35/coyote-6.0.35-sources.jar
Not found: ./org/apache/tomcat/catalina/6.0.35/catalina-6.0.35-sources.jar
Not found: ./org/apache/tomcat/annotations-api/6.0.35/annotations-api-6.0.35-sources.jar
Not found: ./org/apache/derby/derbytools/10.8.2.2-redhat-1/derbytools-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbynet/10.8.2.2-redhat-1/derbynet-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyclient/10.8.2.2-redhat-1/derbyclient-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_zh_TW/10.8.2.2-redhat-1/derbyLocale_zh_TW-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_zh_CN/10.8.2.2-redhat-1/derbyLocale_zh_CN-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_ru/10.8.2.2-redhat-1/derbyLocale_ru-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_pt_BR/10.8.2.2-redhat-1/derbyLocale_pt_BR-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_pl/10.8.2.2-redhat-1/derbyLocale_pl-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_ko_KR/10.8.2.2-redhat-1/derbyLocale_ko_KR-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_ja_JP/10.8.2.2-redhat-1/derbyLocale_ja_JP-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_it/10.8.2.2-redhat-1/derbyLocale_it-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_hu/10.8.2.2-redhat-1/derbyLocale_hu-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_fr/10.8.2.2-redhat-1/derbyLocale_fr-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_es/10.8.2.2-redhat-1/derbyLocale_es-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_de_DE/10.8.2.2-redhat-1/derbyLocale_de_DE-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derbyLocale_cs/10.8.2.2-redhat-1/derbyLocale_cs-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/derby/derby/10.8.2.2-redhat-1/derby-10.8.2.2-redhat-1-sources.jar
Not found: ./org/apache/poi/poi-scratchpad/3.6/poi-scratchpad-3.6-sources.jar
Not found: ./org/apache/poi/poi-ooxml-schemas/3.6/poi-ooxml-schemas-3.6-sources.jar
Not found: ./org/apache/poi/poi-ooxml/3.6/poi-ooxml-3.6-sources.jar
Not found: ./org/apache/poi/poi-examples/3.6/poi-examples-3.6-sources.jar
Not found: ./org/apache/poi/poi-contrib/3.6/poi-contrib-3.6-sources.jar
Not found: ./org/apache/poi/poi/3.6/poi-3.6-sources.jar
Not found: ./org/apache/ant/ant-launcher/1.8.1/ant-launcher-1.8.1-sources.jar
Not found: ./org/apache/ant/ant-launcher/1.7.0/ant-launcher-1.7.0-sources.jar
Not found: ./org/apache/ant/ant-junit/1.7.0/ant-junit-1.7.0-sources.jar
Not found: ./org/apache/ant/ant-apache-bsf/1.8.2-redhat-1/ant-apache-bsf-1.8.2-redhat-1-sources.jar
Not found: ./org/apache/ant/ant/1.8.3-redhat-1/ant-1.8.3-redhat-1-javadocs-sources.jar
Not found: ./org/apache/ant/ant/1.8.2-redhat-1/ant-1.8.2-redhat-1-sources.jar
Not found: ./org/apache/ant/ant/1.8.1/ant-1.8.1-sources.jar
Not found: ./org/apache/ant/ant-nodeps/1.7.1/ant-nodeps-1.7.1-sources.jar
Not found: ./org/apache/ant/ant-nodeps/1.8.1/ant-nodeps-1.8.1-sources.jar
Not found: ./org/apache/apache-jar-resource-bundle/1.4-redhat-1/apache-jar-resource-bundle-1.4-redhat-1-sources.jar
Not found: ./org/apache/rat/apache-rat-plugin/0.6-redhat-1/apache-rat-plugin-0.6-redhat-1-sources.jar
Not found: ./org/bouncycastle/bcprov-jdk16/1.46-redhat-2/bcprov-jdk16-1.46-redhat-2-sources.jar
Not found: ./org/bouncycastle/bcprov-jdk16/1.46-redhat-1/bcprov-jdk16-1.46-redhat-1-sources.jar
Not found: ./org/bouncycastle/bctsp-jdk16/1.46-redhat-2/bctsp-jdk16-1.46-redhat-2-sources.jar
Not found: ./org/bouncycastle/bctsp-jdk16/1.46-redhat-1/bctsp-jdk16-1.46-redhat-1-sources.jar
Not found: ./org/bouncycastle/bcpg-jdk16/1.46-redhat-2/bcpg-jdk16-1.46-redhat-2-sources.jar
Not found: ./org/bouncycastle/bcpg-jdk16/1.46-redhat-1/bcpg-jdk16-1.46-redhat-1-sources.jar
Not found: ./org/bouncycastle/bcmail-jdk16/1.46-redhat-2/bcmail-jdk16-1.46-redhat-2-sources.jar
Not found: ./org/bouncycastle/bcmail-jdk16/1.46-redhat-1/bcmail-jdk16-1.46-redhat-1-sources.jar
Not found: ./org/hibernate/common/hibernate-commons-annotations/4.0.1.Final-redhat-2/hibernate-commons-annotations-4.0.1.Final-redhat-2-tests-sources.jar
Not found: ./org/picketlink/distribution/picketlink-jbas7/2.1.3.1-redhat-1/picketlink-jbas7-2.1.3.1-redhat-1-sources.jar
Not found: ./org/picketlink/distribution/picketlink-jbas7/2.1.1.Final-redhat-1/picketlink-jbas7-2.1.1.Final-redhat-1-sources.jar
Not found: ./org/picketlink/picketlink-jbas7-single/2.1.1.Final-redhat-1/picketlink-jbas7-single-2.1.1.Final-redhat-1-sources.jar
Not found: ./org/jvnet/maven-antrun-extended-plugin/maven-antrun-extended-plugin/1.8-redhat-1/maven-antrun-extended-plugin-1.8-redhat-1-sources.jar
Not found: ./org/jvnet/staxex/stax-ex/1.2/stax-ex-1.2-sources.jar
Not found: ./org/jsr-305/proposedAnnotations/0.1-redhat-2/proposedAnnotations-0.1-redhat-2-sources.jar
Not found: ./org/jsr-305/proposedAnnotations/0.1-redhat-1/proposedAnnotations-0.1-redhat-1-sources.jar
Not found: ./org/jsr-305/tcl/0.1-redhat-2/tcl-0.1-redhat-2-sources.jar
Not found: ./org/jsr-305/tcl/0.1-redhat-1/tcl-0.1-redhat-1-sources.jar
Not found: ./org/testng/testng/5.14.10-redhat-1/testng-5.14.10-redhat-1-sources.jar
Not found: ./org/hornetq/jnp-client/2.2.19.Final-redhat-1/jnp-client-2.2.19.Final-redhat-1-sources.jar
Not found: ./org/hornetq/jnp-client/2.2.16.Final-redhat-1/jnp-client-2.2.16.Final-redhat-1-sources.jar
Not found: ./org/codehaus/woodstox/wstx-lgpl/3.2.9-redhat-1/wstx-lgpl-3.2.9-redhat-1-sources.jar
Not found: ./org/codehaus/woodstox/wstx-asl/3.2.9-redhat-1/wstx-asl-3.2.9-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-core-lgpl/1.9.2-redhat-2/jackson-core-lgpl-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-core-lgpl/1.9.2-redhat-1/jackson-core-lgpl-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-xc/1.9.2-redhat-2/jackson-xc-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-xc/1.9.2-redhat-1/jackson-xc-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-core-asl/1.9.2-redhat-2/jackson-core-asl-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-core-asl/1.9.2-redhat-1/jackson-core-asl-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-smile/1.9.2-redhat-2/jackson-smile-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-smile/1.9.2-redhat-1/jackson-smile-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-mrbean/1.9.2-redhat-2/jackson-mrbean-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-mrbean/1.9.2-redhat-1/jackson-mrbean-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-mapper-lgpl/1.9.2-redhat-2/jackson-mapper-lgpl-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-mapper-lgpl/1.9.2-redhat-1/jackson-mapper-lgpl-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-mapper-asl/1.9.2-redhat-2/jackson-mapper-asl-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-mapper-asl/1.9.2-redhat-1/jackson-mapper-asl-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/jackson/jackson-jaxrs/1.9.2-redhat-2/jackson-jaxrs-1.9.2-redhat-2-sources.jar
Not found: ./org/codehaus/jackson/jackson-jaxrs/1.9.2-redhat-1/jackson-jaxrs-1.9.2-redhat-1-sources.jar
Not found: ./org/codehaus/mojo/java-boot-classpath-detector/1.6/java-boot-classpath-detector-1.6-sources.jar
Not found: ./org/codehaus/mojo/animal-sniffer-enforcer-rule/1.6/animal-sniffer-enforcer-rule-1.6-sources.jar
Not found: ./org/codehaus/mojo/animal-sniffer-ant-tasks/1.6/animal-sniffer-ant-tasks-1.6-sources.jar
Not found: ./org/codehaus/mojo/animal-sniffer-annotations/1.6/animal-sniffer-annotations-1.6-sources.jar
Not found: ./org/codehaus/mojo/animal-sniffer/1.6/animal-sniffer-1.6-sources.jar
Not found: ./org/codehaus/izpack/izpack-standalone-compiler/4.3.5/izpack-standalone-compiler-4.3.5-sources.jar
Not found: ./org/codehaus/gmaven/gmaven-mojo-support/1.3/gmaven-mojo-support-1.3-sources.jar
Not found: ./org/codehaus/gmaven/support/filter-plugin/1.3/filter-plugin-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-support/1.3/gmaven-runtime-support-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-loader/1.3/gmaven-runtime-loader-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-api/1.3/gmaven-runtime-api-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-1.7/1.3/gmaven-runtime-1.7-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-1.6/1.3/gmaven-runtime-1.6-1.3-sources.jar
Not found: ./org/codehaus/gmaven/runtime/gmaven-runtime-1.5/1.3/gmaven-runtime-1.5-1.3-sources.jar
Not found: ./org/codehaus/gmaven/gmaven-testsuite/1.3/gmaven-testsuite-1.3-sources.jar
Not found: ./org/codehaus/gmaven/gmaven-plugin/1.3/gmaven-plugin-1.3-sources.jar
Not found: ./org/codehaus/gmaven/gmaven-packaging/1.3/gmaven-packaging-1.3-sources.jar
Not found: ./org/codehaus/gmaven/gmaven-mojo/1.3/gmaven-mojo-1.3-sources.jar
Not found: ./org/codehaus/gmaven/feature/gmaven-feature-support/1.3/gmaven-feature-support-1.3-sources.jar
Not found: ./org/codehaus/gmaven/feature/gmaven-feature-api/1.3/gmaven-feature-api-1.3-sources.jar
Not found: ./org/codehaus/gmaven/archetypes/gmaven-archetype-mojo/1.3/gmaven-archetype-mojo-1.3-sources.jar
Not found: ./org/codehaus/gmaven/archetypes/gmaven-archetype-basic/1.3/gmaven-archetype-basic-1.3-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.5.10-redhat-1/plexus-utils-1.5.10-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/2.1-redhat-1/plexus-utils-2.1-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/2.0.7-redhat-1/plexus-utils-2.0.7-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/3.0-redhat-1/plexus-utils-3.0-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.4.9-redhat-1/plexus-utils-1.4.9-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.5.15-redhat-1/plexus-utils-1.5.15-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.2-redhat-1/plexus-utils-1.2-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.1-redhat-1/plexus-utils-1.1-redhat-1-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6-sources.jar
Not found: ./org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9-sources.jar
Not found: ./org/codehaus/plexus/plexus-interactivity-jline/1.0-alpha-5/plexus-interactivity-jline-1.0-alpha-5-sources.jar
Not found: ./org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6-sources.jar
Not found: ./org/codehaus/plexus/plexus-archiver/1.0-alpha-3/plexus-archiver-1.0-alpha-3-sources.jar
Not found: ./org/codehaus/plexus/plexus-archiver/1.0-alpha-5/plexus-archiver-1.0-alpha-5-sources.jar
Not found: ./org/codehaus/plexus/plexus-io/1.0-alpha-2/plexus-io-1.0-alpha-2-sources.jar
Not found: ./org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2-sources.jar
Not found: ./org/codehaus/cargo/cargo-maven2-plugin/1.0.2-redhat-1/cargo-maven2-plugin-1.0.2-redhat-1-sources.jar
Not found: ./org/python/jython/2.5.2-redhat-2/jython-2.5.2-redhat-2-sources.jar
Not found: ./org/python/jython/2.5.2-redhat-1/jython-2.5.2-redhat-1-sources.jar
Not found: ./org/python/jython-standalone/2.5.2-redhat-2/jython-standalone-2.5.2-redhat-2-sources.jar
Not found: ./org/python/jython-standalone/2.5.2-redhat-1/jython-standalone-2.5.2-redhat-1-sources.jar
Not found: ./org/osgi/org.osgi.compendium/4.2.0-redhat-2/org.osgi.compendium-4.2.0-redhat-2-sources.jar
Not found: ./org/osgi/org.osgi.compendium/4.2.0-redhat-1/org.osgi.compendium-4.2.0-redhat-1-sources.jar
Not found: ./org/osgi/org.osgi.enterprise/4.2.0-redhat-2/org.osgi.enterprise-4.2.0-redhat-2-sources.jar
Not found: ./org/osgi/org.osgi.enterprise/4.2.0-redhat-1/org.osgi.enterprise-4.2.0-redhat-1-sources.jar
Not found: ./org/osgi/org.osgi.core/4.2.0-redhat-2/org.osgi.core-4.2.0-redhat-2-sources.jar
Not found: ./org/osgi/org.osgi.core/4.2.0-redhat-1/org.osgi.core-4.2.0-redhat-1-sources.jar
Not found: ./org/infinispan/infinispan-server-rest/5.1.6.FINAL-redhat-1/infinispan-server-rest-5.1.6.FINAL-redhat-1-classes-sources.jar
Not found: ./org/infinispan/infinispan-server-rest/5.1.4.FINAL-redhat-1/infinispan-server-rest-5.1.4.FINAL-redhat-1-classes-sources.jar
Not found: ./org/infinispan/infinispan-tools/5.1.6.FINAL-redhat-1/infinispan-tools-5.1.6.FINAL-redhat-1-tests-sources.jar
Not found: ./org/infinispan/infinispan-rhq-plugin/5.1.6.FINAL-redhat-1/infinispan-rhq-plugin-5.1.6.FINAL-redhat-1-tests-sources.jar
Not found: ./org/jdom/jdom/1.1.2-redhat-2/jdom-1.1.2-redhat-2-sources.jar
Not found: ./org/jdom/jdom/1.1.2-redhat-1/jdom-1.1.2-redhat-1-sources.jar
Not found: ./org/slf4j/slf4j-api/1.5.3/slf4j-api-1.5.3-tests-sources.jar
Not found: ./org/slf4j/integration/1.6.1/integration-1.6.1-sources.jar
Not found: ./org/projectodd/stilts/stilts-stomp-common/0.1.26-redhat-2/stilts-stomp-common-0.1.26-redhat-2-tests-sources.jar
Not found: ./org/projectodd/stilts/stilts-stomp-api/0.1.26-redhat-2/stilts-stomp-api-0.1.26-redhat-2-tests-sources.jar
Not found: ./org/projectodd/stilts/stilts-stomplet-server-bundle/0.1.26-redhat-2/stilts-stomplet-server-bundle-0.1.26-redhat-2-sources.jar
Not found: ./org/projectodd/stilts/stilts-conduit-server-core/0.1.26-redhat-2/stilts-conduit-server-core-0.1.26-redhat-2-tests-sources.jar
Not found: ./org/projectodd/stilts/stilts-conduit-server-spi/0.1.26-redhat-2/stilts-conduit-server-spi-0.1.26-redhat-2-tests-sources.jar
Not found: ./org/projectodd/stilts/stilts-stomp-server-core/0.1.26-redhat-2/stilts-stomp-server-core-0.1.26-redhat-2-tests-sources.jar
Not found: ./org/sonatype/aether/aether-connector-file/1.13.1/aether-connector-file-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-connector-file/1.11/aether-connector-file-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-util/1.13.1/aether-util-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-util/1.11/aether-util-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-test-util/1.13.1/aether-test-util-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-test-util/1.11/aether-test-util-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-spi/1.13.1/aether-spi-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-spi/1.11/aether-spi-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-impl/1.13.1/aether-impl-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-impl/1.11/aether-impl-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-connector-wagon/1.13.1/aether-connector-wagon-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-connector-wagon/1.11/aether-connector-wagon-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-connector-asynchttpclient/1.13.1/aether-connector-asynchttpclient-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-connector-asynchttpclient/1.11/aether-connector-asynchttpclient-1.11-sources.jar
Not found: ./org/sonatype/aether/aether-api/1.13.1/aether-api-1.13.1-sources.jar
Not found: ./org/sonatype/aether/aether-api/1.11/aether-api-1.11-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-servlet/3.0.3/guice-servlet-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-servlet/3.0.3/guice-servlet-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-throwingproviders/3.0.3/guice-throwingproviders-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-throwingproviders/3.0.3/guice-throwingproviders-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-spring/3.0.3/guice-spring-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-spring/3.0.3/guice-spring-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-persist/3.0.3/guice-persist-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-persist/3.0.3/guice-persist-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-multibindings/3.0.3/guice-multibindings-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-multibindings/3.0.3/guice-multibindings-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-jndi/3.0.3/guice-jndi-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-jndi/3.0.3/guice-jndi-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-jmx/3.0.3/guice-jmx-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-jmx/3.0.3/guice-jmx-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-grapher/3.0.3/guice-grapher-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-grapher/3.0.3/guice-grapher-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-assistedinject/3.0.3/guice-assistedinject-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/inject/guice-assistedinject/3.0.3/guice-assistedinject-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/inject/cglib/2.2.2-redhat-1/cglib-2.2.2-redhat-1-sources.jar
Not found: ./org/sonatype/sisu/sisu-guice/3.0.3/sisu-guice-3.0.3-sources.jar
Not found: ./org/sonatype/sisu/sisu-guice/3.0.3/sisu-guice-3.0.3-tests-sources.jar
Not found: ./org/sonatype/sisu/sisu-guice/3.0.3/sisu-guice-3.0.3-no_deps-sources.jar
Not found: ./org/sonatype/sisu/sisu-guice/3.0.3/sisu-guice-3.0.3-no_aop-sources.jar
Not found: ./org/sonatype/jline/jline/2.5/jline-2.5-sources.jar
Not found: ./org/sonatype/jline/jline/2.5/jline-2.5-tests-sources.jar
Not found: ./org/sonatype/gshell/commands/gshell-standard/2.6.2/gshell-standard-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/commands/gshell-pref/2.6.2/gshell-pref-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/commands/gshell-network/2.6.2/gshell-network-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/commands/gshell-logging/2.6.2/gshell-logging-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/commands/gshell-file/2.6.2/gshell-file-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-core/2.6.2/gshell-core-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-core/2.6.2/gshell-core-2.6.2-tests-sources.jar
Not found: ./org/sonatype/gshell/gshell-bootstrap/2.6.2/gshell-bootstrap-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-util/2.6.2/gshell-util-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-ui/2.6.2/gshell-ui-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-plexus/2.6.2/gshell-plexus-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-personality/2.6.2/gshell-personality-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-launcher/2.6.2/gshell-launcher-2.6.2-sources.jar
Not found: ./org/sonatype/gshell/gshell-gossip/2.6.2/gshell-gossip-2.6.2-sources.jar
Not found: ./org/sonatype/gossip/gossip-slf4j/1.5/gossip-slf4j-1.5-sources.jar
Not found: ./org/sonatype/gossip/gossip-core/1.5/gossip-core-1.5-sources.jar
Not found: ./org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4-tests-sources.jar
Not found: ./org/jacorb/idl/2.3.2-redhat-2/idl-2.3.2-redhat-2-sources.jar
Not found: ./org/jacorb/idl/2.3.2-redhat-1/idl-2.3.2-redhat-1-sources.jar
Not found: ./org/jacorb/jacorb/2.3.2-redhat-2/jacorb-2.3.2-redhat-2-sources.jar
Not found: ./org/jacorb/jacorb/2.3.2-redhat-1/jacorb-2.3.2-redhat-1-sources.jar
Not found: ./org/jacorb/idl_g/2.3.2-redhat-2/idl_g-2.3.2-redhat-2-sources.jar
Not found: ./org/jacorb/idl_g/2.3.2-redhat-1/idl_g-2.3.2-redhat-1-sources.jar
Not found: ./org/jacorb/resources/2.3.2-redhat-2/resources-2.3.2-redhat-2-sources.jar
Not found: ./org/jacorb/resources/2.3.2-redhat-1/resources-2.3.2-redhat-1-sources.jar
Not found: ./org/jacorb/jacorb_g/2.3.2-redhat-2/jacorb_g-2.3.2-redhat-2-sources.jar
Not found: ./org/jacorb/jacorb_g/2.3.2-redhat-1/jacorb_g-2.3.2-redhat-1-sources.jar
Not found: ./org/eclipse/jdt/core/compiler/ecj/3.7.2/ecj-3.7.2-sources.jar
Not found: ./org/eclipse/jdt/core/3.7/core-3.7-sources.jar
Not found: ./org/eclipse/osgi/3.5.0/osgi-3.5.0-sources.jar
Not found: ./org/tmatesoft/svnkit/trilead-ssh2/build213-svnkit-1.3-patch/trilead-ssh2-build213-svnkit-1.3-patch-sources.jar
Not found: ./org/tmatesoft/sqljet/sqljet/1.0.4-redhat-1/sqljet-1.0.4-redhat-1-sources.jar
Not found: ./org/scala-lang/scala-compiler/2.9.1.final-redhat-1/scala-compiler-2.9.1.final-redhat-1-sources.jar
Not found: ./org/scala-lang/scala-compiler/2.9.1-redhat-1/scala-compiler-2.9.1-redhat-1-sources.jar
Not found: ./org/scala-lang/scala-library/2.9.1.final-redhat-1/scala-library-2.9.1.final-redhat-1-sources.jar
Not found: ./org/microemu/microemu-cldc/2.0.4/microemu-cldc-2.0.4-sources.jar
Not found: ./org/json/json/20080425/json-20080425-sources.jar
Not found: ./org/jruby/extras/jffi/1.0.10-redhat-1/jffi-1.0.10-redhat-1-native-sources.jar
Not found: ./org/fusesource/jansi/jansi/1.4/jansi-1.4-sources.jar
Not found: ./org/hamcrest/hamcrest-text/1.1/hamcrest-text-1.1-sources.jar
Not found: ./org/hamcrest/hamcrest-library/1.1/hamcrest-library-1.1-sources.jar
Not found: ./org/hamcrest/hamcrest-integration/1.1/hamcrest-integration-1.1-sources.jar
Not found: ./org/hamcrest/hamcrest-generator/1.1/hamcrest-generator-1.1-sources.jar
Not found: ./org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1-sources.jar
Not found: ./org/hamcrest/hamcrest-all/1.1/hamcrest-all-1.1-sources.jar
Not found: ./org/freemarker/freemarker/2.3.18-redhat-1/freemarker-2.3.18-redhat-1-sources.jar
Not found: ./org/fontbox/fontbox/0.1.0/fontbox-0.1.0-sources.jar
Not found: ./org/powermock/powermock-module-junit4/1.4.11-redhat-1/powermock-module-junit4-1.4.11-redhat-1-sources.jar
Not found: ./org/powermock/powermock-api-mockito/1.4.11-redhat-1/powermock-api-mockito-1.4.11-redhat-1-sources.jar
Not found: ./org/powermock/powermock/1.4.11-redhat-1/powermock-1.4.11-redhat-1-sources.jar
Not found: ./org/scala-tools/maven-scala-plugin/2.15.2-redhat-1/maven-scala-plugin-2.15.2-redhat-1-sources.jar
Not found: ./org/bsc/maven/maven-processor-plugin/2.0.5-redhat-1/maven-processor-plugin-2.0.5-redhat-1-sources.jar
Not found: ./org/twdata/maven/maven-cli-plugin/0.6.3.CR2-redhat-1/maven-cli-plugin-0.6.3.CR2-redhat-1-sources.jar
Not found: ./org/beanshell/bsh-util/2.0b4/bsh-util-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-reflect/2.0b4/bsh-reflect-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-commands/2.0b4/bsh-commands-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-classpath/2.0b4/bsh-classpath-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-classgen/2.0b4/bsh-classgen-2.0b4-sources.jar
Not found: ./org/beanshell/bsh-bsf/2.0b4/bsh-bsf-2.0b4-sources.jar
Not found: ./org/beanshell/bsh/2.0b4/bsh-2.0b4-sources.jar
Not found: ./xerces/xercesImpl/2.9.1-redhat-3/xercesImpl-2.9.1-redhat-3-sources.jar
Not found: ./xerces/xercesImpl/2.9.1-redhat-1/xercesImpl-2.9.1-redhat-1-sources.jar
Not found: ./xerces/xercesImpl/2.9.1-patch-02/xercesImpl-2.9.1-patch-02-sources.jar
Not found: ./com/github/relaxng/relaxngDatatype/2011.1-redhat-3/relaxngDatatype-2011.1-redhat-3-sources.jar
Not found: ./com/github/relaxng/relaxngDatatype/2011.1-redhat-1/relaxngDatatype-2011.1-redhat-1-sources.jar
Not found: ./com/sun/msv/datatype/xsd/xsdlib/2011.1-redhat-2/xsdlib-2011.1-redhat-2-tests-sources.jar
Not found: ./com/sun/msv/datatype/xsd/xsdlib/2011.1-redhat-1/xsdlib-2011.1-redhat-1-tests-sources.jar
Not found: ./com/sun/faces/jsf-impl/2.1.11-redhat-1/jsf-impl-2.1.11-redhat-1-sources.jar
Not found: ./com/sun/faces/jsf-impl/2.1.7-redhat-1/jsf-impl-2.1.7-redhat-1-sources.jar
Not found: ./com/sun/faces/jsf-api/2.1.11-redhat-1/jsf-api-2.1.11-redhat-1-sources.jar
Not found: ./com/sun/faces/jsf-api/2.1.7-redhat-1/jsf-api-2.1.7-redhat-1-sources.jar
Not found: ./com/sun/xml/bind/jaxb-xjc/2.2.5-redhat-2/jaxb-xjc-2.2.5-redhat-2-sources.jar
Not found: ./com/sun/xml/bind/jaxb-xjc/2.2.5-redhat-1/jaxb-xjc-2.2.5-redhat-1-sources.jar
Not found: ./com/sun/xml/bind/jaxb-impl/2.2.5-redhat-2/jaxb-impl-2.2.5-redhat-2-sources.jar
Not found: ./com/sun/xml/bind/jaxb-impl/2.2.5-redhat-1/jaxb-impl-2.2.5-redhat-1-sources.jar
Not found: ./com/sun/xml/stream/sjsxp/1.0.1/sjsxp-1.0.1-sources.jar
Not found: ./com/sun/xml/stream/buffer/streambuffer/0.8/streambuffer-0.8-sources.jar
Not found: ./com/sun/xml/fastinfoset/FastInfosetUtilities/1.2.7-redhat-1/FastInfosetUtilities-1.2.7-redhat-1-sources.jar
Not found: ./com/sun/xml/fastinfoset/FastInfoset/1.2.7-redhat-1/FastInfoset-1.2.7-redhat-1-sources.jar
Not found: ./com/sun/xml/ws/jaxws-tools/2.1.7-redhat-1/jaxws-tools-2.1.7-redhat-1-sources.jar
Not found: ./com/sun/xml/ws/jaxws-rt/2.1.7-redhat-1/jaxws-rt-2.1.7-redhat-1-sources.jar
Not found: ./com/sun/mail/mailapi/1.4.4-redhat-2/mailapi-1.4.4-redhat-2-sources.jar
Not found: ./com/sun/mail/mailapi/1.4.4-redhat-1/mailapi-1.4.4-redhat-1-sources.jar
Not found: ./com/sun/wts/tools/ant/package-rename-task/1.2-SNAPSHOT/package-rename-task-1.2-20110207.225757-1-sources.jar
Not found: ./com/google/guava/guava-tests/11.0.2-redhat-1/guava-tests-11.0.2-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-servlet-deps/2.3.0-redhat-2/gwt-servlet-deps-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-servlet-deps/2.3.0-redhat-1/gwt-servlet-deps-2.3.0-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-user/2.3.0-redhat-2/gwt-user-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-user/2.3.0-redhat-1/gwt-user-2.3.0-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-soyc-vis/2.3.0-redhat-2/gwt-soyc-vis-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-soyc-vis/2.3.0-redhat-1/gwt-soyc-vis-2.3.0-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-servlet/2.3.0-redhat-2/gwt-servlet-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-servlet/2.3.0-redhat-1/gwt-servlet-2.3.0-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-dev/2.3.0-redhat-2/gwt-dev-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-dev/2.3.0-redhat-1/gwt-dev-2.3.0-redhat-1-sources.jar
Not found: ./com/google/gwt/gwt-api-checker/2.3.0-redhat-2/gwt-api-checker-2.3.0-redhat-2-sources.jar
Not found: ./com/google/gwt/gwt-api-checker/2.3.0-redhat-1/gwt-api-checker-2.3.0-redhat-1-sources.jar
Not found: ./com/google/testing/test-libraries-for-java/1.1.1/test-libraries-for-java-1.1.1-sources.jar
Not found: ./com/google/code/gwt-visualization/1.1.1-redhat-1/gwt-visualization-1.1.1-redhat-1-sources.jar
Not found: ./com/google/code/gwt-log/gwt-log/3.1.3-redhat-1/gwt-log-3.1.3-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/jsr305/1.3.9-redhat-1/jsr305-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/jFormatString/1.3.9-redhat-1/jFormatString-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/findbugs-ant/1.3.9-redhat-1/findbugs-ant-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/findbugs/1.3.9-redhat-1/findbugs-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/bcel/1.3.9-redhat-1/bcel-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/findbugs/annotations/1.3.9-redhat-1/annotations-1.3.9-redhat-1-sources.jar
Not found: ./com/google/code/cookcc/cookcc/0.3.3-redhat-1/cookcc-0.3.3-redhat-1-sources.jar
Not found: ./com/google/code/maven-license-plugin/maven-license-plugin/1.4.0-redhat-1/maven-license-plugin-1.4.0-redhat-1-sources.jar
Not found: ./com/google/code/jarjar/1.0/jarjar-1.0-sources.jar
Not found: ./com/google/inject/guice/3.0-redhat-1/guice-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/guice/3.0-redhat-1/guice-3.0-redhat-1-no_deps-sources.jar
Not found: ./com/google/inject/guice/3.0-redhat-1/guice-3.0-redhat-1-no_aop-sources.jar
Not found: ./com/google/inject/extensions/guice-throwingproviders/3.0-redhat-1/guice-throwingproviders-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-spring/3.0-redhat-1/guice-spring-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-servlet/3.0-redhat-1/guice-servlet-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-persist/3.0-redhat-1/guice-persist-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-multibindings/3.0-redhat-1/guice-multibindings-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-jndi/3.0-redhat-1/guice-jndi-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-jmx/3.0-redhat-1/guice-jmx-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-grapher/3.0-redhat-1/guice-grapher-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/inject/extensions/guice-assistedinject/3.0-redhat-1/guice-assistedinject-3.0-redhat-1-tests-sources.jar
Not found: ./com/google/protobuf/protobuf-java/2.3.0/protobuf-java-2.3.0-sources.jar
Not found: ./com/h2database/h2/1.3.161-redhat-1/h2-1.3.161-redhat-1-sources.jar
Not found: ./com/jcraft/jsch/0.1.42-redhat-1/jsch-0.1.42-redhat-1-sources.jar
Not found: ./com/jcraft/jsch/0.1.38/jsch-0.1.38-sources.jar
Not found: ./com/jcraft/jsch/0.1.23/jsch-0.1.23-sources.jar
Not found: ./com/ibm/icu/icu4j/3.4.5-redhat-1/icu4j-3.4.5-redhat-1-sources.jar
Not found: ./com/sleepycat/je/3.3.98-redhat-1/je-3.3.98-redhat-1-sources.jar
Not found: ./com/thoughtworks/qdox/qdox/1.12/qdox-1.12-sources.jar
Not found: ./com/ning/async-http-client/1.6.1/async-http-client-1.6.1-shaded-sources.jar
Not found: ./com/yahoo/platform/yui/yuicompressor/2.4.6/yuicompressor-2.4.6-sources.jar
Not found: ./com/mycila/maven-license-plugin/maven-license-plugin/1.5.0-redhat-1/maven-license-plugin-1.5.0-redhat-1-sources.jar
Not found: ./com/trilead/trilead-ssh2/build213-svnkit-1.3-patch-redhat-1/trilead-ssh2-build213-svnkit-1.3-patch-redhat-1-sources.jar
Not found: ./com/pyx4j/maven-junction-plugin/1.0.3-redhat-1/maven-junction-plugin-1.0.3-redhat-1-sources.jar
Not found: ./com/atlassian/maven/plugins/maven-clover2-plugin/3.0.2-redhat-1/maven-clover2-plugin-3.0.2-redhat-1-sources.jar
Not found: ./com/keyboardsamurais/maven/maven-timestamp-plugin/1.0-redhat-1/maven-timestamp-plugin-1.0-redhat-1-sources.jar
Not found: ./com/tonicsystems/jarjar/jarjar-plugin/@VERSION@/jarjar-plugin-1.0-sources.jar
Not found: ./commons-httpclient/commons-httpclient/3.1-redhat-2/commons-httpclient-3.1-redhat-2-sources.jar
Not found: ./commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1-sources.jar
Not found: ./commons-httpclient/commons-httpclient/3.1-redhat-1/commons-httpclient-3.1-redhat-1-sources.jar
Not found: ./commons-configuration/commons-configuration/1.6-redhat-1/commons-configuration-1.6-redhat-1-sources.jar
Not found: ./commons-logging/commons-logging-tomcat-juli-adapters/1.1.1-redhat-2/commons-logging-tomcat-juli-adapters-1.1.1-redhat-2-sources.jar
Not found: ./commons-logging/commons-logging-tomcat-juli/1.1.1-redhat-2/commons-logging-tomcat-juli-1.1.1-redhat-2-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-2/commons-logging-1.1.1-redhat-2-tests-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-2/commons-logging-1.1.1-redhat-2-api-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-2/commons-logging-1.1.1-redhat-2-adapters-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-1/commons-logging-1.1.1-redhat-1-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-1/commons-logging-1.1.1-redhat-1-tests-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-1/commons-logging-1.1.1-redhat-1-api-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1-redhat-1/commons-logging-1.1.1-redhat-1-adapters-sources.jar
Not found: ./commons-logging/commons-logging/1.0.3/commons-logging-1.0.3-sources.jar
Not found: ./commons-logging/commons-logging/1.0/commons-logging-1.0-sources.jar
Not found: ./commons-logging/commons-logging/1.1.1/commons-logging-1.1.1-sources.jar
Not found: ./commons-logging/commons-logging-api/1.0.4/commons-logging-api-1.0.4-sources.jar
Not found: ./bsf/bsf/2.4.0-redhat-1/bsf-2.4.0-redhat-1-sources.jar
Not found: ./bsf/bsf/2.4.0/bsf-2.4.0-sources.jar
Not found: ./commons-beanutils/commons-beanutils-bean-collections/1.8.3-redhat-2/commons-beanutils-bean-collections-1.8.3-redhat-2-sources.jar
Not found: ./commons-beanutils/commons-beanutils-core/1.8.3-redhat-2/commons-beanutils-core-1.8.3-redhat-2-sources.jar
Not found: ./commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6-sources.jar
Not found: ./dom4j/dom4j-jarjar/1.6.1-redhat-2/dom4j-jarjar-1.6.1-redhat-2-sources.jar
Not found: ./dom4j/dom4j-jarjar/1.6.1-redhat-1/dom4j-jarjar-1.6.1-redhat-1-sources.jar
Not found: ./dom4j/dom4j/1.6.1-redhat-2/dom4j-1.6.1-redhat-2-sources.jar
Not found: ./dom4j/dom4j/1.6.1-redhat-1/dom4j-1.6.1-redhat-1-sources.jar
Not found: ./relaxngcc/relaxngcc/1.12-redhat-2/relaxngcc-1.12-redhat-2-sources.jar
Not found: ./junit/junit/4.10-redhat-1/junit-4.10-redhat-1-sources.jar
Not found: ./javax/jws/jsr181-api/1.0-MR1-redhat-2/jsr181-api-1.0-MR1-redhat-2-sources.jar
Not found: ./javax/jws/jsr181-api/1.0-MR1-redhat-1/jsr181-api-1.0-MR1-redhat-1-sources.jar
Not found: ./javax/faces/jsf-impl/1.2_15-b01-redhat-2/jsf-impl-1.2_15-b01-redhat-2-sources.jar
Not found: ./javax/faces/jsf-impl/1.2_15-b01-redhat-1/jsf-impl-1.2_15-b01-redhat-1-sources.jar
Not found: ./javax/faces/jsf-api/1.2_15-b01-redhat-2/jsf-api-1.2_15-b01-redhat-2-sources.jar
Not found: ./javax/faces/jsf-api/1.2_15-b01-redhat-1/jsf-api-1.2_15-b01-redhat-1-sources.jar
Not found: ./javax/mail/mail/1.4.4-redhat-2/mail-1.4.4-redhat-2-sources.jar
Not found: ./javax/mail/mail/1.4.4-redhat-1/mail-1.4.4-redhat-1-sources.jar
Not found: ./javax/mail/javax.mail-api/1.4.4-redhat-2/javax.mail-api-1.4.4-redhat-2-sources.jar
Not found: ./javax/mail/javax.mail-api/1.4.4-redhat-1/javax.mail-api-1.4.4-redhat-1-sources.jar
Not found: ./javax/xml/ws/jaxws-api/2.1/jaxws-api-2.1-sources.jar
Not found: ./commons-dbcp/commons-dbcp-tomcat/1.4-redhat-1/commons-dbcp-tomcat-1.4-redhat-1-sources.jar
Not found: ./java-cup/java-cup/0.11a-redhat-1/java-cup-0.11a-redhat-1-runtime-sources.jar
Not found: ./java-cup/java-cup/0.11a-redhat-1/java-cup-0.11a-redhat-1-sources.jar
Not found: ./gnu-getopt/getopt/1.0.13-redhat-2/getopt-1.0.13-redhat-2-sources.jar
Not found: ./gnu-getopt/getopt/1.0.13-redhat-1/getopt-1.0.13-redhat-1-sources.jar
Not found: ./xom/xom/1.2.7-redhat-2/xom-1.2.7-redhat-2-sources.jar
Not found: ./xom/xom/1.2.7-redhat-1/xom-1.2.7-redhat-1-sources.jar
Not found: ./ch/qos/cal10n/cal10n-api/0.7.3-redhat-2/cal10n-api-0.7.3-redhat-2-tests-sources.jar
Not found: ./ch/qos/cal10n/plugins/maven-cal10n-plugin/0.7.3-redhat-1/maven-cal10n-plugin-0.7.3-redhat-1-sources.jar
Not found: ./antlr/antlr/2.7.7-redhat-2/antlr-2.7.7-redhat-2-sources.jar
Not found: ./antlr/antlr/2.7.7-redhat-1/antlr-2.7.7-redhat-1-sources.jar
Not found: ./commons-lang/commons-lang/2.4/commons-lang-2.4-sources.jar
Not found: ./commons-lang/commons-lang/2.6-redhat-1/commons-lang-2.6-redhat-1-sources.jar
Not found: ./commons-codec/commons-codec/1.2/commons-codec-1.2-sources.jar
Not found: ./commons-codec/commons-codec/1.4-redhat-1/commons-codec-1.4-redhat-1-sources.jar
Not found: ./asm/asm/3.3.1-redhat-2/asm-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm/3.3.1-redhat-1/asm-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm/3.2/asm-3.2-sources.jar
Not found: ./asm/asm-xml/3.3.1-redhat-2/asm-xml-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-xml/3.3.1-redhat-1/asm-xml-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm-util/3.3.1-redhat-2/asm-util-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-util/3.3.1-redhat-1/asm-util-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm-tree/3.3.1-redhat-2/asm-tree-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-tree/3.3.1-redhat-1/asm-tree-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm-tree/3.2/asm-tree-3.2-sources.jar
Not found: ./asm/asm-commons/3.3.1-redhat-2/asm-commons-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-commons/3.3.1-redhat-1/asm-commons-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm-commons/3.2/asm-commons-3.2-sources.jar
Not found: ./asm/asm-analysis/3.3.1-redhat-2/asm-analysis-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-analysis/3.3.1-redhat-1/asm-analysis-3.3.1-redhat-1-sources.jar
Not found: ./asm/asm-all/3.3.1-redhat-2/asm-all-3.3.1-redhat-2-sources.jar
Not found: ./asm/asm-all/3.3.1-redhat-1/asm-all-3.3.1-redhat-1-sources.jar
Not found: ./commons-digester/commons-digester/1.8.1/commons-digester-1.8.1-sources.jar
Not found: ./commons-collections/commons-collections-tomcat/3.2.1-redhat-2/commons-collections-tomcat-3.2.1-redhat-2-sources.jar
Not found: ./commons-collections/commons-collections/3.2.1-redhat-1/commons-collections-3.2.1-redhat-1-sources.jar
Not found: ./commons-collections/commons-collections/2.0/commons-collections-2.0-sources.jar
Not found: ./commons-collections/commons-collections/3.2.1/commons-collections-3.2.1-sources.jar
Not found: ./commons-cli/commons-cli/1.2-redhat-1/commons-cli-1.2-redhat-1-sources.jar
Not found: ./commons-io/commons-io/1.4/commons-io-1.4-sources.jar
Not found: ./commons-io/commons-io/2.1-redhat-1/commons-io-2.1-redhat-1-sources.jar
Not found: ./commons-io/commons-io/1.3.1/commons-io-1.3.1-javadoc.javadoc-sources.jar
Not found: ./commons-pool/commons-pool/1.3/commons-pool-1.3-sources.jar
Not found: ./commons-pool/commons-pool/1.5.6-redhat-1/commons-pool-1.5.6-redhat-1-sources.jar
Not found: ./commons-pool/commons-pool-tomcat/1.5.6-redhat-2/commons-pool-tomcat-1.5.6-redhat-2-sources.jar
Not found: ./xml-resolver/xml-resolver/1.2-redhat-2/xml-resolver-1.2-redhat-2-sources.jar
Not found: ./xml-resolver/xml-resolver/1.2-redhat-1/xml-resolver-1.2-redhat-1-sources.jar
Not found: ./xml-resolver/xml-resolver/1.2/xml-resolver-1.2-sources.jar
Not found: ./xpp3/xpp3_min/1.1.4c-redhat-1/xpp3_min-1.1.4c-redhat-1-sources.jar
Not found: ./xpp3/xpp3_xpath/1.1.4c-redhat-1/xpp3_xpath-1.1.4c-redhat-1-sources.jar
Not found: ./xmlunit/xmlunit/1.3-redhat-1/xmlunit-1.3-redhat-1-sources.jar
Not found: ./xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04-sources.jar
Not found: ./xml-apis/xml-apis/1.3.04/xml-apis-1.3.04-sources.jar
Not found: ./jaxme/jaxmexs/0.5.1/jaxmexs-0.5.1-sources.jar
Not found: ./jaxme/jaxmepm/0.5.1/jaxmepm-0.5.1-sources.jar
Not found: ./jaxme/jaxmejs/0.5.1/jaxmejs-0.5.1-sources.jar
Not found: ./jaxme/jaxmeapi/0.5.1/jaxmeapi-0.5.1-sources.jar
Not found: ./jaxme/jaxme2-rt/0.5.1/jaxme2-rt-0.5.1-sources.jar
Not found: ./jaxme/jaxme2/0.5.1/jaxme2-0.5.1-sources.jar
Not found: ./struts/struts/1.2.9/struts-1.2.9-sources.jar
Not found: ./pdfbox/pdfbox/0.7.3/pdfbox-0.7.3-sources.jar
Not found: ./junit-addons/junit-addons/1.4-redhat-1/junit-addons-1.4-redhat-1-sources.jar
Not found: ./jdiff/jdiff/1.1.1/jdiff-1.1.1-sources.jar
Not found: ./jdepend/jdepend/2.9.1/jdepend-2.9.1-sources.jar
Not found: ./apache-slide/jakarta-slide-webdavlib/2.1/jakarta-slide-webdavlib-2.1-sources.jar
Not found: ./apache-slide/webdavlib/2.0/webdavlib-2.0-sources.jar
Not found: ./commons-daemon/commons-daemon/1.0.10-redhat-1/commons-daemon-1.0.10-redhat-1-sources.jar
Not found: ./concurrent/concurrent/1.3.4-jboss-update1/concurrent-1.3.4-jboss-update1-sources.jar
Not found: ./sunlabs/brazil/brazil/2.3/brazil-2.3-sources.jar
Not found: ./commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1-sources.jar
Not found: ./maven/maven-jdiff-plugin/1.5-redhat-1/maven-jdiff-plugin-1.5-redhat-1-sources.jar
Not found: ./maven/maven-xdoc-plugin/1.9.2-redhat-1/maven-xdoc-plugin-1.9.2-redhat-1-sources.jar
Not found: ./nekohtml/xercesMinimal/1.9.6.2/xercesMinimal-1.9.6.2-sources.jar
Not found: ./checkstyle/checkstyle/5.0/checkstyle-5.0-sources.jar
Not found: ./pmd/pmd-jdk14/4.2.2/pmd-jdk14-4.2.2-sources.jar
Not found: ./plexus/plexus-utils/1.0.2/plexus-utils-1.0.2-sources.jar
Not found: ./plexus/plexus-utils/1.0.1/plexus-utils-1.0.1-sources.jar
Not found: ./plexus/plexus-compiler-api/1.5/plexus-compiler-api-1.5-sources.jar
Not found: ./commons-validator/commons-validator/1.3.1/commons-validator-1.3.1-sources.jar
Not found: ./classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2-sources.jar
Not found: ./oro/oro/2.0.7/oro-2.0.7-sources.jar
Not found: ./oro/oro/2.0.8/oro-2.0.8-sources.jar
Not found: ./doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4-sources.jar
Not found: ./doxia/doxia-core/1.0-alpha-4/doxia-core-1.0-alpha-4-sources.jar
Not found: ./apache-httpclient/commons-httpclient/2.0.2/commons-httpclient-2.0.2-sources.jar
Not found: ./biz/aQute/bndlib/0.0.357/bndlib-0.0.357-sources.jar
Not found: ./xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1-sources.jar
Not found: ./ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3-sources.jar
Not found: ./ant/ant-launcher/1.6.5/ant-launcher-1.6.5-sources.jar
Not found: ./aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3-sources.jar
Not found: ./apache-avalon-logkit/logkit/1.2/logkit-1.2-sources.jar
Not found: ./apache-xerces/xml-apis/2.9.1-patch-02/xml-apis-2.9.1-patch-02-sources.jar
Not found: ./apache-xerces/resolver/2.9.1-patch-02/resolver-2.9.1-patch-02-sources.jar
Not found: ./stax/stax-api/1.0.1/stax-api-1.0.1-sources.jar
Not found: ./stax/stax/1.1.2/stax-1.1.2-sources.jar
Not found: ./stax/stax/1.2.0/stax-1.2.0-sources.jar
Not found: ./pull-parser/pull-parser/2.1.10/pull-parser-2.1.10-sources.jar
Not found: ./de/zeigermann/xml/xml-im-exporter/1.1/xml-im-exporter-1.1-sources.jar
Not found: ./rhino/js/1.7R2/js-1.7R2-sources.jar
Not found: ./rhino/js/1.6R7/js-1.6R7-sources.jar
Not found: ./taglibrarydoc/tlddoc/1.3/tlddoc-1.3-sources.jar
Not found: ./regexp/regexp/1.5/regexp-1.5-sources.jar
Not found: ./mx4j/mx4j-tools-extra/3.0.1/mx4j-tools-extra-3.0.1-sources.jar
Not found: ./mx4j/mx4j-tools/3.0.1/mx4j-tools-3.0.1-sources.jar
Not found: ./mx4j/mx4j-rjmx-boa/3.0.1/mx4j-rjmx-boa-3.0.1-sources.jar
Not found: ./mx4j/mx4j-rjmx/3.0.1/mx4j-rjmx-3.0.1-sources.jar
Not found: ./mx4j/mx4j-rimpl-boa/3.0.1/mx4j-rimpl-boa-3.0.1-sources.jar
Not found: ./mx4j/mx4j-rimpl/3.0.1/mx4j-rimpl-3.0.1-sources.jar
Not found: ./mx4j/mx4j-remote-boa/3.0.1/mx4j-remote-boa-3.0.1-sources.jar
Not found: ./mx4j/mx4j-remote/3.0.1/mx4j-remote-3.0.1-sources.jar
Not found: ./mx4j/mx4j-jmx/3.0.1/mx4j-jmx-3.0.1-sources.jar
Not found: ./mx4j/mx4j-impl/3.0.1/mx4j-impl-3.0.1-sources.jar
Not found: ./mx4j/mx4j/3.0.1/mx4j-3.0.1-sources.jar
Not found: ./mockobjects/mockobjects-httpclient/0.09/mockobjects-httpclient-0.09-sources.jar
Not found: ./mockobjects/mockobjects-core/0.09/mockobjects-core-0.09-sources.jar
Not found: ./mockobjects/mockobjects-alt-httpclient/0.09/mockobjects-alt-httpclient-0.09-sources.jar
Not found: ./commons-modeler/commons-modeler/2.0/commons-modeler-2.0-sources.jar
Not found: ./commons-launcher/commons-launcher/1.1/commons-launcher-1.1-sources.jar
Not found: ./i18nlog/i18nlog/1.0.10/i18nlog-1.0.10-sources.jar
Not found: ./commons-chain/commons-chain/1.2/commons-chain-1.2-sources.jar
Not found: ./isorelax/isorelax/20050331/isorelax-20050331-sources.jar
Not found: ./wutka-dtdparser/dtdparser/1.21/dtdparser-1.21-sources.jar
Not found: ./apache-avalon/avalon-framework/4.1.5/avalon-framework-4.1.5-sources.jar
Not found: ./bcel/bcel/5.2/bcel-5.2-sources.jar
Not found: ./aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar
{code}
(Run in /mnt/redhat/brewroot/repos/jb-eap-6-rhel-6-build/latest/maven ) The list has been updated. Pls review. Except for JBoss projects that we control and some selected third party ones that use maven for building and that adding a source goal works this is very hard to fix and maintain. Modifying third party build mechanisms (which vary from Ant to make or even just shell scripts) to generate the equivalent of source artifacts is very hard to do and maintain on upgrades. For the ones that are really important to have, please open a JIRA for each individual case so they can be picked by individual people and scheduled over time. Docs QE Status: Removed: NEW Link: Added: This issue is a dependency of JBPAPP-10222 Fernando, any progress on this? Fernando, taking whatever SRPM's are made from and create a -sources.jar out of it is not an option? Hmm, I can imagine how the jar's are assembled, I've seen e.g. Tomcat 5.x build. The problem is that JavaDoc plugin fails if some -sources.jar is not present for any dependency. IIRC this can't be overcame, but I will check once we have the JBoss bits. Could we perhaps create the source jars just for the EAP release? Not for CVEs etc. Just for the sake of JavaDoc. Probably not worth the special effort, just asking if it could be done once per minor release, along the way with your team's normal work. Closing because there is a separate issue to deal with this for EAP 6.1 https://bugzilla.redhat.com/show_bug.cgi?id=908741 |