Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[emfcompare-build] [Hudson] Build failed in Hudson: egit.logical-master-nightly #69

See <https://hudson.eclipse.org/emfcompare/job/egit.logical-master-nightly/69/>

------------------------------------------
[...truncated 552 lines...]
[ERROR] import org.eclipse.jgit.errors.MissingObjectException;
[ERROR] import org.eclipse.jgit.lib.Constants;
[ERROR] import org.eclipse.jgit.lib.ObjectId;
[ERROR] import org.eclipse.jgit.lib.Repository;
[ERROR] import org.eclipse.jgit.treewalk.WorkingTreeOptions;
[ERROR] import org.eclipse.jgit.util.io.AutoCRLFInputStream;
[ERROR] import org.eclipse.osgi.util.NLS;
[ERROR] /**
[ERROR] * Provides access to a git blob.
[ERROR] *
[ERROR] * @since 3.6
[ERROR] */
[ERROR] public class GitBlobStorage implements IStorage {
[ERROR] /** Repository containing the object this storage provides access to. */
[ERROR] protected final Repository db;
[ERROR] /** Repository-relative path of the underlying object. */
[ERROR] protected final String path;
[ERROR] /** Id of this object in its repository. */
[ERROR] protected final ObjectId objectId;
[ERROR] /**
[ERROR] * @param repository The repository containing this object.
[ERROR] * @param path Repository-relative path of the underlying object.
[ERROR] * @param objectId Id of this object in its repository.
[ERROR] */
[ERROR] public GitBlobStorage(final Repository repository, final String path, final ObjectId objectId) {
[ERROR] this.db = repository;
[ERROR] this.path = path;
[ERROR] this.objectId = objectId;
[ERROR] }
[ERROR] public InputStream getContents() throws CoreException {
[ERROR] try {
[ERROR] return open();
[ERROR] } catch (IOException e) {
[ERROR] throw new CoreException(Activator.error(
[ERROR] NLS.bind(CoreText.BlobStorage_errorReadingBlob,
[ERROR] objectId.name(), path), e));
[ERROR] }
[ERROR] }
[ERROR] private InputStream open() throws IOException, CoreException,
[ERROR] IncorrectObjectTypeException {
[ERROR] if (objectId == null)
[ERROR] return new ByteArrayInputStream(new byte[0]);
[ERROR] try {
[ERROR] WorkingTreeOptions workingTreeOptions = db.getConfig().get(
[ERROR] WorkingTreeOptions.KEY);
[ERROR] final InputStream objectInputStream = db.open(objectId,
[ERROR] Constants.OBJ_BLOB).openStream();
[ERROR] switch (workingTreeOptions.getAutoCRLF()) {
[ERROR] case INPUT:
[ERROR] // When autocrlf == input the working tree could be either CRLF
[ERROR] // or LF, i.e. the comparison itself should ignore line endings.
[ERROR] case FALSE:
[ERROR] return objectInputStream;
[ERROR] case TRUE:
[ERROR] default:
[ERROR] return new AutoCRLFInputStream(objectInputStream, true);
[ERROR] }
[ERROR] } catch (MissingObjectException notFound) {
[ERROR] throw new CoreException(Activator.error(NLS.bind(
[ERROR] CoreText.BlobStorage_blobNotFound, objectId.name(), path),
[ERROR] notFound));
[ERROR] }
[ERROR] }
[ERROR] public IPath getFullPath() {
[ERROR] return Path.fromPortableString(path);
[ERROR] }
[ERROR] public String getName() {
[ERROR] final int last = path.lastIndexOf('/');
[ERROR] return last >= 0 ? path.substring(last + 1) : path;
[ERROR] }
[ERROR] public boolean isReadOnly() {
[ERROR] return true;
[ERROR] }
[ERROR] public Object getAdapter(final Class adapter) {
[ERROR] return null;
[ERROR] }
[ERROR] <<<<<<< HEAD:org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java
[ERROR] /**
[ERROR] * Returns the absolute path on disk of the underlying object.
[ERROR] * <p>
[ERROR] * The returned path may not point to an existing file if the object does
[ERROR] * not exist locally.
[ERROR] * </p>
[ERROR] *
[ERROR] * @return The absolute path on disk of the underlying object.
[ERROR] */
[ERROR] public IPath getAbsolutePath() {
[ERROR] final File repoDir;
[ERROR] if (db.isBare())
[ERROR] repoDir = db.getDirectory();
[ERROR] else
[ERROR] repoDir = db.getWorkTree();
[ERROR] return new Path(repoDir.getAbsolutePath() + File.separatorChar + path);
[ERROR] }
[ERROR] =======
[ERROR] @Override
[ERROR] public int hashCode() {
[ERROR] return Arrays.hashCode(new Object[] { blobId, db, path });
[ERROR] }
[ERROR] @Override
[ERROR] public boolean equals(Object obj) {
[ERROR] if (this == obj)
[ERROR] return true;
[ERROR] if (obj == null)
[ERROR] return false;
[ERROR] if (getClass() != obj.getClass())
[ERROR] return false;
[ERROR] BlobStorage other = (BlobStorage) obj;
[ERROR] if (blobId == null) {
[ERROR] if (other.blobId != null)
[ERROR] return false;
[ERROR] } else if (!blobId.equals(other.blobId))
[ERROR] return false;
[ERROR] if (db == null) {
[ERROR] if (other.db != null)
[ERROR] return false;
[ERROR] } else if (!db.equals(other.db))
[ERROR] return false;
[ERROR] if (path == null) {
[ERROR] if (other.path != null)
[ERROR] return false;
[ERROR] } else if (!path.equals(other.path))
[ERROR] return false;
[ERROR] return true;
[ERROR] }
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[ERROR] Syntax error on token(s), misplaced construct(s)
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[113]
[ERROR] }
[ERROR] <<<<<<< HEAD:org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java
[ERROR] ^^^^^^^^^^
[ERROR] Syntax error on tokens, delete these tokens
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[115]
[ERROR] <<<<<<< HEAD:org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java
[ERROR] ^
[ERROR] Syntax error on token "/", invalid AssignmentOperator
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[115]
[ERROR] <<<<<<< HEAD:org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java
[ERROR] /**
[ERROR] * Returns the absolute path on disk of the underlying object.
[ERROR] * <p>
[ERROR] * The returned path may not point to an existing file if the object does
[ERROR] * not exist locally.
[ERROR] * </p>
[ERROR] *
[ERROR] * @return The absolute path on disk of the underlying object.
[ERROR] */
[ERROR] public IPath getAbsolutePath() {
[ERROR] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[ERROR] Syntax error on tokens, delete these tokens
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[125]
[ERROR] public IPath getAbsolutePath() {
[ERROR] ^
[ERROR] Syntax error, insert ";" to complete Statement
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[132]
[ERROR] }
[ERROR] ^
[ERROR] Syntax error, insert "}" to complete MethodBody
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[136]
[ERROR] return Arrays.hashCode(new Object[] { blobId, db, path });
[ERROR] ^^^^^^
[ERROR] blobId cannot be resolved to a variable
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[147]
[ERROR] BlobStorage other = (BlobStorage) obj;
[ERROR] ^^^^^^^^^^^
[ERROR] BlobStorage cannot be resolved to a type
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[147]
[ERROR] BlobStorage other = (BlobStorage) obj;
[ERROR] ^^^^^^^^^^^
[ERROR] BlobStorage cannot be resolved to a type
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[148]
[ERROR] if (blobId == null) {
[ERROR] ^^^^^^
[ERROR] blobId cannot be resolved to a variable
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[151]
[ERROR] } else if (!blobId.equals(other.blobId))
[ERROR] ^^^^^^
[ERROR] blobId cannot be resolved
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^^^^^^^
[ERROR] Syntax error on tokens, ConstructorHeaderName expected instead
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^^^^^^^^
[ERROR] Storages cannot be resolved to a type
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^^^^^^
[ERROR] Syntax error on token "should", , expected
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^^^^^^^^
[ERROR] override cannot be resolved to a type
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^
[ERROR] Syntax error on token ":", , expected
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[167]
[ERROR] >>>>>>> b98313e... Storages should override equals:org.eclipse.egit.core/src/org/eclipse/egit/core/internal/storage/BlobStorage.java
[ERROR] ^
[ERROR] Syntax error on token "/", || expected
[ERROR] /jobs/genie.modeling.emfcompare/egit.logical-master-nightly/workspace/org.eclipse.egit.core/src/org/eclipse/egit/core/storage/GitBlobStorage.java:[168]
[ERROR] }
[ERROR] ^
[ERROR] Syntax error on token "}", delete this token
[ERROR] 19 problems (19 errors)
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.20.0:compile (default-compile) on project org.eclipse.egit.core: Compilation failure
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:606)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: copied.org.apache.maven.plugin.CompilationFailureException: Compilation failure
	at copied.org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:441)
	at org.eclipse.tycho.compiler.AbstractOsgiCompilerMojo.execute(AbstractOsgiCompilerMojo.java:237)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
	... 19 more
[ERROR] 
[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
[DEBUG] Waiting for process to finish
[DEBUG] Result: 1
Terminating xvnc.
Archiving artifacts
Recording test results

--
This message is automatically generated by Hudson. 
For more information on Hudson, see: http://hudson-ci.org/


Back to the top