Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[egit-build] Build failed in Hudson: egit #264

See <https://build.eclipse.org/hudson/job/egit/264/changes>

Changes:

[Chris Aniszczyk] Add action to trigger (fast-forward) merge

[Chris Aniszczyk] 'Label Decorations' preference page has conflicting mnemonics

[Chris Aniszczyk] Handle InvalidMergeHeadsException

[Chris Aniszczyk] Use a FilteredTree in BranchSelectionDialog

[Chris Aniszczyk] Dialog improvements with TitleAreaDialog

------------------------------------------
[...truncated 132 lines...]
[INFO] Eclipse Git Feature (Incubation)
[INFO] Eclipse Git Plugin Update Site (Incubation)
[INFO] Test Plug-in (Incubation)
[INFO] EGit UI Test Plug-in (Incubation)
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building EGit Parent (Incubation) 0.8.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4:clean (default-clean) @ egit-parent ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Eclipse Git (Incubation) 0.8.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4:clean (default-clean) @ org.eclipse.egit ---
[INFO] Deleting <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit/target>
[INFO] 
[INFO] --- maven-osgi-packaging-plugin:0.8.0:build-qualifier (default-build-qualifier) @ org.eclipse.egit ---
[INFO] 
[INFO] --- maven-osgi-packaging-plugin:0.8.0:validate-version (default-validate-version) @ org.eclipse.egit ---
[INFO] 
[INFO] --- maven-resources-plugin:2.4.1:resources (default-resources) @ org.eclipse.egit ---
[INFO] Using 'ISO-8859-1' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit/src/main/resources>
[INFO] 
[INFO] --- maven-osgi-compiler-plugin:0.8.0:compile (default-compile) @ org.eclipse.egit ---
[INFO] Using compile source roots from build.properties
[INFO] 
[INFO] --- maven-resources-plugin:2.4.1:testResources (default-testResources) @ org.eclipse.egit ---
[INFO] Using 'ISO-8859-1' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit/src/test/resources>
[INFO] 
[INFO] --- maven-osgi-packaging-plugin:0.8.0:package-plugin (default-package-plugin) @ org.eclipse.egit ---
[INFO] Building jar: <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit/target/org.eclipse.egit-0.8.0-SNAPSHOT.jar>
[INFO] 
[INFO] --- tycho-p2-plugin:0.8.0:p2-metadata (default-p2-metadata) @ org.eclipse.egit ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Git Team Provider (Core) (Incubation) 0.8.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4:clean (default-clean) @ org.eclipse.egit.core ---
[INFO] Deleting <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/target>
[INFO] 
[INFO] --- maven-osgi-packaging-plugin:0.8.0:build-qualifier (default-build-qualifier) @ org.eclipse.egit.core ---
[INFO] 
[INFO] --- maven-osgi-packaging-plugin:0.8.0:validate-version (default-validate-version) @ org.eclipse.egit.core ---
[INFO] 
[INFO] --- maven-resources-plugin:2.4.1:resources (default-resources) @ org.eclipse.egit.core ---
[INFO] Using 'ISO-8859-1' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-osgi-compiler-plugin:0.8.0:compile (default-compile) @ org.eclipse.egit.core ---
[INFO] Using compile source roots from build.properties
[INFO] Compiling 52 source files to <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/target/classes>
----------
1. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 26)
	import org.eclipse.jgit.api.CheckoutConflictException;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.CheckoutConflictException cannot be resolved
----------
2. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 29)
	import org.eclipse.jgit.api.InvalidMergeHeadsException;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.InvalidMergeHeadsException cannot be resolved
----------
3. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 30)
	import org.eclipse.jgit.api.MergeCommand;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.MergeCommand cannot be resolved
----------
4. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 31)
	import org.eclipse.jgit.api.MergeResult;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.MergeResult cannot be resolved
----------
5. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 50)
	private MergeResult mergeResult;
	        ^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
6. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 82)
	MergeCommand merge;
	^^^^^^^^^^^^
MergeCommand cannot be resolved to a type
----------
7. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 84)
	merge = git.merge().include(repository.getRef(refName));
	            ^^^^^
The method merge() is undefined for the type Git
----------
8. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 92)
	mergeResult = merge.call();
	^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
9. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 94)
	if (MergeResult.MergeStatus.FAILED.equals(mergeResult.getMergeStatus()))
	    ^^^^^^^^^^^
MergeResult cannot be resolved
----------
10. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 94)
	if (MergeResult.MergeStatus.FAILED.equals(mergeResult.getMergeStatus()))
	                                          ^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
11. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 95)
	throw new TeamException(mergeResult.toString());
	                        ^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
12. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 96)
	else if (MergeResult.MergeStatus.NOT_SUPPORTED.equals(mergeResult.getMergeStatus()))
	         ^^^^^^^^^^^
MergeResult cannot be resolved
----------
13. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 96)
	else if (MergeResult.MergeStatus.NOT_SUPPORTED.equals(mergeResult.getMergeStatus()))
	                                                      ^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
14. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 97)
	throw new TeamException(new Status(IStatus.INFO, Activator.getPluginId(), mergeResult.toString()));
	                                                                          ^^^^^^^^^^^
MergeResult cannot be resolved to a type
----------
15. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 102)
	} catch (CheckoutConflictException e) {
	         ^^^^^^^^^^^^^^^^^^^^^^^^^
CheckoutConflictException cannot be resolved to a type
----------
16. ERROR in <https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 104)
	} catch (InvalidMergeHeadsException e) {
	         ^^^^^^^^^^^^^^^^^^^^^^^^^^
InvalidMergeHeadsException cannot be resolved to a type
----------
16 problems (16 errors)
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] EGit Parent (Incubation) .......................... SUCCESS [0.926s]
[INFO] Eclipse Git (Incubation) .......................... SUCCESS [3.852s]
[INFO] Git Team Provider (Core) (Incubation) ............. FAILURE [4.929s]
[INFO] Git Team Provider (UI) (Incubation) ............... SKIPPED
[INFO] Git Team Provider (Documentation) (Incubation) .... SKIPPED
[INFO] Eclipse Git Feature (Incubation) .................. SKIPPED
[INFO] Eclipse Git Plugin Update Site (Incubation) ....... SKIPPED
[INFO] Test Plug-in (Incubation) ......................... SKIPPED
[INFO] EGit UI Test Plug-in (Incubation) ................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 46.136s
[INFO] Finished at: Mon May 24 12:57:15 EDT 2010
[INFO] Final Memory: 89M/327M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.sonatype.tycho:maven-osgi-compiler-plugin:0.8.0:compile (default-compile) on project org.eclipse.egit.core: Compilation failure: Compilation failure: 
<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 26):[-1,-1] 
	import org.eclipse.jgit.api.CheckoutConflictException;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.CheckoutConflictException cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 29):[-1,-1] 
	import org.eclipse.jgit.api.InvalidMergeHeadsException;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.InvalidMergeHeadsException cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 30):[-1,-1] 
	import org.eclipse.jgit.api.MergeCommand;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.MergeCommand cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 31):[-1,-1] 
	import org.eclipse.jgit.api.MergeResult;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jgit.api.MergeResult cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 50):[-1,-1] 
	private MergeResult mergeResult;
	        ^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 82):[-1,-1] 
	MergeCommand merge;
	^^^^^^^^^^^^
MergeCommand cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 84):[-1,-1] 
	merge = git.merge().include(repository.getRef(refName));
	            ^^^^^
The method merge() is undefined for the type Git

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 92):[-1,-1] 
	mergeResult = merge.call();
	^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 94):[-1,-1] 
	if (MergeResult.MergeStatus.FAILED.equals(mergeResult.getMergeStatus()))
	    ^^^^^^^^^^^
MergeResult cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 94):[-1,-1] 
	if (MergeResult.MergeStatus.FAILED.equals(mergeResult.getMergeStatus()))
	                                          ^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 95):[-1,-1] 
	throw new TeamException(mergeResult.toString());
	                        ^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 96):[-1,-1] 
	else if (MergeResult.MergeStatus.NOT_SUPPORTED.equals(mergeResult.getMergeStatus()))
	         ^^^^^^^^^^^
MergeResult cannot be resolved

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 96):[-1,-1] 
	else if (MergeResult.MergeStatus.NOT_SUPPORTED.equals(mergeResult.getMergeStatus()))
	                                                      ^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 97):[-1,-1] 
	throw new TeamException(new Status(IStatus.INFO, Activator.getPluginId(), mergeResult.toString()));
	                                                                          ^^^^^^^^^^^
MergeResult cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 102):[-1,-1] 
	} catch (CheckoutConflictException e) {
	         ^^^^^^^^^^^^^^^^^^^^^^^^^
CheckoutConflictException cannot be resolved to a type

<https://build.eclipse.org/hudson/job/egit/ws/org.eclipse.egit.core/src/org/eclipse/egit/core/op/MergeOperation.java> (at line 104):[-1,-1] 
	} catch (InvalidMergeHeadsException e) {
	         ^^^^^^^^^^^^^^^^^^^^^^^^^^
InvalidMergeHeadsException cannot be resolved to a type
-> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :org.eclipse.egit.core
Terminating xvnc.
Archiving artifacts



Back to the top