[Bug 786881] New: 'cat: command not found' in install.log file after installation
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: 'cat: command not found' in install.log file after installation
https://bugzilla.redhat.com/show_bug.cgi?id=786881
Summary: 'cat: command not found' in install.log file after
installation
Product: Fedora
Version: 16
Platform: x86_64
OS/Version: Linux
Status: NEW
Severity: low
Priority: unspecified
Component: plexus-interpolation
AssignedTo: sochotni(a)redhat.com
ReportedBy: liebundartig(a)freenet.de
QAContact: extras-qa(a)fedoraproject.org
CC: sochotni(a)redhat.com,
java-sig-commits(a)lists.fedoraproject.org,
jcapik(a)redhat.com
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Created attachment 559082
--> https://bugzilla.redhat.com/attachment.cgi?id=559082
anaconda kickstart and install.log files
Description of problem:
after installation of f16 using attached kickstart file
there is an error message in
/root/install.log
Not sure if that is a problem, though.
Version-Release number of selected component (if applicable):
date of writing: 02. February 2012
How reproducible:
100%
Steps to Reproduce:
1. install fedora 16 with attached kickstart file
2. review /root/install.log
Actual results:
22:46:08 Installing plexus-interpolation-1.14-1.fc16.noarch
/var/tmp/rpm-tmp.FbugDW: line 4: cat: command not found
Expected results:
plexus-interpolation should install without the message
or
if the error message is not important, should state that the message is not
important
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
10 years, 3 months
[Bug 784816] New: Maven uses the wrong xerces version
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Maven uses the wrong xerces version
https://bugzilla.redhat.com/show_bug.cgi?id=784816
Summary: Maven uses the wrong xerces version
Product: Fedora
Version: 16
Platform: Unspecified
OS/Version: All
Status: NEW
Severity: unspecified
Priority: unspecified
Component: maven
AssignedTo: sochotni(a)redhat.com
ReportedBy: cdewolf(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: akurtako(a)redhat.com, sochotni(a)redhat.com,
java-sig-commits(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Created attachment 557637
--> https://bugzilla.redhat.com/attachment.cgi?id=557637
upstream vs installed
Description of problem:
When developing a Maven extension that uses DOM you run into trouble if you do
not load the default installed extension libraries.
/usr/share/maven/lib/ext contains xml-commons-apis.jar to hide the fact that
/usr/share/maven/lib/xerces-j2.jar is not the same as xercesMinimal-1.9.6.2.jar
which comes with the upstream distribution.
Version-Release number of selected component (if applicable):
maven-3.0.3-15.fc16.x86_64
How reproducible:
Always.
Steps to Reproduce:
1. Write an extension that does not incorporate the default lib/ext
2. Use the extension
Actual results:
Observe the java.lang.ClassNotFoundException: org.w3c.dom.ElementTraversal
Expected results:
A working extension.
Additional info:
In the attachment there is a diff between a run with upstream and a run with
installed maven.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
10 years, 3 months
[Bug 759470] New: resolver - latest vs. LATEST
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: resolver - latest vs. LATEST
https://bugzilla.redhat.com/show_bug.cgi?id=759470
Summary: resolver - latest vs. LATEST
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: ASSIGNED
Severity: unspecified
Priority: unspecified
Component: maven
AssignedTo: sochotni(a)redhat.com
ReportedBy: sochotni(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: akurtako(a)redhat.com, sochotni(a)redhat.com,
java-sig-commits(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Description of problem:
mvn-rpmbuild has problems with some dependencies when returning "latest" as
available versions. "LATEST" works though.
See if this change makes sense in the code and make a fix
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
10 years, 3 months
[Bug 870395] New: maven: fails to resolve versioned artifacts
by Red Hat Bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=870395
Bug ID: 870395
QA Contact: extras-qa(a)fedoraproject.org
Severity: unspecified
Version: rawhide
Priority: unspecified
CC: akurtako(a)redhat.com,
java-sig-commits(a)lists.fedoraproject.org,
mizdebsk(a)redhat.com, sochotni(a)redhat.com
Assignee: sochotni(a)redhat.com
Summary: maven: fails to resolve versioned artifacts
Regression: ---
Story Points: ---
Classification: Fedora
OS: Unspecified
Reporter: mizdebsk(a)redhat.com
Type: Bug
Documentation: ---
Hardware: Unspecified
Mount Type: ---
Status: ASSIGNED
Component: maven
Product: Fedora
Description of problem:
maven fails to resolve versioned artifacts if dependency version doesn't match
exactly version specified in JPP depmap, even if the artifact file suffix
matches version of the dependency.
Version-Release number of selected component (if applicable):
maven-3.0.4-14.fc19.noarch
How reproducible:
Pseudo-randomly (depends on depmap order)
Steps to Reproduce:
mvn-rpmbuild example:example:1.0:foo
pom.xml contains:
> <dependency>
> <groupId>example</groupId>
> <artifactId>example</artifactId>
> <version>1.0</version>
> </dependency>
depmap.xml contains:
> <dependency>
> <maven>
> <groupId>example</groupId>
> <artifactId>example</artifactId>
> <version>1.0-Final</version>
> </maven>
> <jpp>
> <groupId>JPP/example1</groupId>
> <artifactId>example</artifactId>
> <version>1.0-Final</version>
> </jpp>
> </dependency>
> <dependency>
> <maven>
> <groupId>example</groupId>
> <artifactId>example</artifactId>
> <version>2.0-Final</version>
> </maven>
> <jpp>
> <groupId>JPP/example</groupId>
> <artifactId>example</artifactId>
> <version>2.0-Final</version>
> </jpp>
> </dependency>
File system contains:
> /usr/share/java/example1/example-1.0.jar
> /usr/share/java/example/example.jar
Actual results:
maven resolves either of 2 jars (depeding on semi-random factors).
In the above case /usr/share/java/example/example.jar is resolved.
Expected results:
maven resolves /usr/share/java/example1/example-1.0.jar
Additional info:
--
You are receiving this mail because:
You are on the CC list for the bug.
10 years, 3 months
[Bug 847900] New: Tomcat 7.0.29 needs tomcat-native 1.1.4
by Red Hat Bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=847900
Bug ID: 847900
QA Contact: extras-qa(a)fedoraproject.org
Severity: medium
Version: 17
Priority: unspecified
CC: akurtako(a)redhat.com, ivan.afonichev(a)gmail.com,
java-sig-commits(a)lists.fedoraproject.org,
kdaniel(a)redhat.com
Assignee: ivan.afonichev(a)gmail.com
Summary: Tomcat 7.0.29 needs tomcat-native 1.1.4
Regression: ---
Story Points: ---
Classification: Fedora
OS: Linux
Reporter: andreasg123(a)gmail.com
Type: Bug
Documentation: ---
Hardware: x86_64
Mount Type: ---
Status: NEW
Component: tomcat
Product: Fedora
Description of problem:
After the update to Tomcat 7.0.29, the Apache Tomcat Native library is
imcompatible.
Version-Release number of selected component (if applicable):
tomcat 7.0.29
tomcat-native 1.1.23
How reproducible:
Always
Steps to Reproduce:
1. Install tomcat-7.0.29 and tomcat-native-1.1.3.
2. Start the tomcat service
3. Check the log.
Actual results:
Log message:
SEVERE: An incompatible version 1.1.23 of the APR based Apache Tomcat Native
library is installed, while Tomcat requires version 1.1.24
Expected results:
Tomcat and related packages should be updated such that they stay compatible
with each other.
Additional info:
--
You are receiving this mail because:
You are on the CC list for the bug.
10 years, 4 months