2 Tests fails on windows while building Teiid 7.5 Final from source
by Sanjay Chaudhuri
While building Teiid 7.5 Final from source in windows, I found couple of
tests failed on Windows:
1.
*testHasCorrectExtension(org.teiid.rhq.plugin.util.TestDeploymentUtils)
*>> assertFalse(DeploymentUtils.hasCorrectExtension("My.VDB", null)); FAILS,
because the expression
new File(extension).equals(new File(expectedExtension)) on line 49 in
org.teiid.rhq.plugin.util.DeploymentUtils.hasCorrectExtension(...) returns
TRUE on windows for the strings '.VDB" and '.vdb'
2.
*testRelativeSchemas(org.teiid.query.metadata.TestTransformationMetadata)
*>> assertEquals(1, tm.getXMLSchemas(tm.getGroupID("x1.doc")).size());
FAILS, because the variable
'parentPath' in line 826 for function getXMLSchemas(...) in
org.teiid.query.metadata.TransformationMetadata should be modified to using
'/' instead of '\' to take of windows platform as well using:
if (File.separatorChar != '/') {
parentPath = parentPath.replace(File.separatorChar, '/');
}
Thanks
Sanjay
13 years, 4 months
Missing maven artifacts
by Larry O'Leary
It was brought to my attention that using the information provided in
http://community.jboss.org/wiki/TeiidEclipseDevEnvironmentSetUpAndBuildin...
... along with the settings.xml file which is attached to the document,
building of Teiid fails due to missing dependencies such as jaas and
trove.
So, I attempted to build from rev3413 and had no problems. I then
removed my local maven repo and tried the build and sure enough, the
build failed due a few missing artifacts such as jaas and trove.
Upon further investigation, it appears that we are expecting to find
some of these (if not all) artifacts on Nexus. For example:
https://repository.jboss.org/nexus/content/groups/developer/javax/securit...
It appears the JAR is simply missing here. I also noticed this same
thing in the apache maven repo. The JAR seems to be missing from many of
the common repos.
Was there a change we should have made to the maven settings.xml to find
these artifacts?
--
Larry O'Leary <loleary(a)redhat.com>
Red Hat, Inc.
13 years, 4 months
7.5/7.6 status
by Steven Hawkins
Hello all,
Since 7.6 development was in parallel with 7.5, we have several features that are in along with many good fixes. I was thinking that we would post Alpha1 as soon as next week. Some consideration should be given as well to proving an updated 7.5 release version to address TEIID-1730 and possibly the other criticals as well. Any thoughts?
Steve
13 years, 4 months