Skip to content

Console Output

Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on sos-builder02-ubuntu18 (lin ubuntu18 java11) in workspace /builds/workspace/nopol
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/SpoonLabs/nopol.git
 > git init /builds/workspace/nopol # timeout=10
Fetching upstream changes from https://github.com/SpoonLabs/nopol.git
 > git --version # timeout=10
 > git --version # 'git version 2.25.1'
 > git fetch --tags --force --progress -- https://github.com/SpoonLabs/nopol.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/SpoonLabs/nopol.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
Checking out Revision 8cb3676199f20216b7147fe8c6f545ac78a5a113 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 8cb3676199f20216b7147fe8c6f545ac78a5a113 # timeout=10
Commit message: "Bump jetty-server from 9.4.41.v20210516 to 10.0.10 in /nopol-server (#230)"
 > git rev-list --no-walk 8cb3676199f20216b7147fe8c6f545ac78a5a113 # timeout=10
[nopol] $ /bin/sh -xe /tmp/jenkins2401581639917799801.sh
+ rm -rf /builds/.m2/repository/fr/inria/gforge/spoon
[nopol] $ /bin/sh -xe /tmp/jenkins1195321129491749231.sh
+ cd test-projects
+ mvn test -DskipTests
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[INFO] Scanning for projects...
[INFO] 
[INFO] ----------------< fr.inria.lille.toolset:test-projects >----------------
[INFO] Building test-projects 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ test-projects ---
[WARNING] Using platform encoding (UTF8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /builds/workspace/nopol/test-projects/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ test-projects ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF8, i.e. build is platform dependent!
[INFO] Compiling 28 source files to /builds/workspace/nopol/test-projects/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ test-projects ---
[WARNING] Using platform encoding (UTF8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /builds/workspace/nopol/test-projects/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ test-projects ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF8, i.e. build is platform dependent!
[INFO] Compiling 28 source files to /builds/workspace/nopol/test-projects/target/test-classes
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ test-projects ---
[INFO] Tests are skipped.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  5.528 s
[INFO] Finished at: 2024-05-07T10:39:05+02:00
[INFO] ------------------------------------------------------------------------
+ cd ../nopol
+ curl https://spoon.gforge.inria.fr/jenkins/inject_spoon_snapshot.py
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  2376  100  2376    0     0  13976      0 --:--:-- --:--:-- --:--:-- 13976
+ python3 -c #! /bin/python3
"""Script for injecting the latest SNAPSHOT version of Spoon into all pom.xml
files it finds in the curren tworking directory or any subdirectory.

Requires the ``defusedxml`` package to be installed separately.

This script is compatible with Python 3.5+
"""
import xml.etree.ElementTree as ET
import subprocess
import pathlib

from typing import Optional

SPOON_SNAPSHOT_REPO = """
<repository>
    <id>spoon-snapshot-repo</id>
    <name>Maven Repository for Spoon Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    <snapshots/>
</repository>
"""
MAVEN_NAMESPACE = "http://maven.apache.org/POM/4.0.0"
NAMESPACES = {"": MAVEN_NAMESPACE}

MAVEN_VERSIONS_COMMAND = "mvn -B -U versions:use-latest-versions -DallowSnapshots -Dincludes=fr.inria.gforge.spoon".split()
PURGE_LOCAL_REPO_COMMAND = "mvn -B -U dependency:purge-local-repository -DmanualInclude='fr.inria.gforge.spoon:spoon-core' -DsnapshotsOnly=true".split()


def main():
    ET.register_namespace("", MAVEN_NAMESPACE)
    pom_file = pathlib.Path("pom.xml")
    inject_snapshot_repo(pom_file)
    subprocess.run(MAVEN_VERSIONS_COMMAND, cwd=str(pom_file.parent))
    subprocess.run(PURGE_LOCAL_REPO_COMMAND, cwd=str(pom_file.parent))


def inject_snapshot_repo(pom_file: pathlib.Path) -> None:
    tree = ET.parse(str(pom_file))
    root = tree.getroot()

    repositories = root.find(in_maven_namespace("repositories"))
    if not repositories:
        repositories = ET.fromstring("<repositories></repositories>")
        root.append(repositories)

    snapshot_repo = ET.fromstring(SPOON_SNAPSHOT_REPO)
    snapshot_repo_url = snapshot_repo.find("url").text

    for repo in repositories.findall(in_maven_namespace("repository")):
        url = repo.find(in_maven_namespace("url")).text
        if url == snapshot_repo_url:
            return

    repositories.append(snapshot_repo)

    tree.write(str(pom_file))


def in_maven_namespace(tag: str) -> str:
    """Wrap the tag in the default Maven namespace.

    If porting this script to Python 3.6+, then this method can be removed and
    one can instead search with a default namespace like so:

    someElement.find(tag, namespaces={"": MAVEN_NAMESPACE})

    This does not appear to work in Python 3.5
    """
    return "{{{}}}{}".format(MAVEN_NAMESPACE, tag)


if __name__ == "__main__":
    main()
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 298, column 17
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 36 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 25 kB/s)
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/maven-metadata.xml (1.2 kB at 27 kB/s)
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:nopol >--------------------
[INFO] Building Nopol 0.2-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ nopol ---
[INFO] Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloaded from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (881 B at 3.2 kB/s)
[INFO] Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (11 kB at 220 kB/s)
[INFO] Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 486 B/s)
[INFO] Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 671 B/s)
[INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:9.1.0 to version 11.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  5.465 s
[INFO] Finished at: 2024-05-07T10:39:14+02:00
[INFO] ------------------------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 298, column 17
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:nopol >--------------------
[INFO] Building Nopol 0.2-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:purge-local-repository (default-cli) @ nopol ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  2.442 s
[INFO] Finished at: 2024-05-07T10:39:20+02:00
[INFO] ------------------------------------------------------------------------
+ mvn -U dependency:resolve
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 298, column 17
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:nopol >--------------------
[INFO] Building Nopol 0.2-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom
Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom
Progress (1): 2.8/8.2 kB
Progress (1): 5.5/8.2 kB
Progress (1): 8.2 kB    
                    
Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/8.3.0-beta-8/spoon-core-8.3.0-beta-8.pom (8.2 kB at 46 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom
Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom
Progress (1): 2.8/21 kB
Progress (1): 5.5/21 kB
Progress (1): 8.2/21 kB
Progress (1): 11/21 kB 
Progress (1): 14/21 kB
Progress (1): 16/21 kB
Progress (1): 19/21 kB
Progress (1): 21 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-pom/1.0/spoon-pom-1.0.pom (21 kB at 61 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom
Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom
Progress (1): 2.8/11 kB
Progress (1): 5.5/11 kB
Progress (1): 8.3/11 kB
Progress (1): 11 kB    
                   
Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/9.2.0-beta-1/spoon-core-9.2.0-beta-1.pom (11 kB at 145 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 1.4 kB
Progress (2): 1.4 kB | 1.4 kB
                             
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 604 B/s)
Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 585 B/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom
Progress (1): 4.1/9.6 kB
Progress (1): 7.8/9.6 kB
Progress (1): 9.6 kB    
                    
Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.pom (9.6 kB at 36 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 609 B
Progress (2): 609 B | 609 B
                           
Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml (609 B at 2.8 kB/s)
Downloaded from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml (609 B at 3.1 kB/s)
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240507.010545-1.pom
Progress (1): 4.1/25 kB
Progress (1): 7.8/25 kB
Progress (1): 12/25 kB 
Progress (1): 16/25 kB
Progress (1): 20/25 kB
Progress (1): 24/25 kB
Progress (1): 25 kB   
                   
Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240507.010545-1.pom (25 kB at 86 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml
Progress (1): 1.0 kB
                    
Downloaded from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fil/iagl/cocospoon/CocoSpoon/1.0.0-SNAPSHOT/maven-metadata.xml (1.0 kB at 1.4 kB/s)
Downloading from sachaproject.gforge.inria.fr-release: https://sachaproject.gforge.inria.fr/repositories/releases/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom
Downloading from spoon-snapshot: https://repository.ow2.org/nexus/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom
Downloading from tdurieux.github.io/maven-repository/snapshots/: https://tdurieux.github.io/maven-repository/snapshots/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom
Downloading from spoon-snapshot-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom
Downloading from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom
Progress (1): 2.8/20 kB
Progress (1): 5.5/20 kB
Progress (1): 8.3/20 kB
Progress (1): 11/20 kB 
Progress (1): 14/20 kB
Progress (1): 17/20 kB
Progress (1): 19/20 kB
Progress (1): 20 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/fr/inria/gforge/spoon/spoon-core/6.2.0/spoon-core-6.2.0.pom (20 kB at 128 kB/s)
Downloading from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.jar
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.2/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.3/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.7/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.8/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.1/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.2/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.3/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.6/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.7/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.8/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9/1.9 MB
Progress (1): 1.9 MB    
                    
Downloaded from snapshots-repo: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240507.010015-1.jar (1.9 MB at 389 kB/s)
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:resolve (default-cli) @ nopol ---
[INFO] 
[INFO] The following files have been resolved:
[INFO]    com.google.code.findbugs:jsr305:jar:2.0.1:compile
[INFO]    gov.nasa.jpf:jpf:jar:1154:provided
[INFO]    org.smtlib:smtlib:jar:0.9.7.1:compile
[INFO]    com.martiansoftware:jsap:jar:2.1:compile
[INFO]    log4j:log4j:jar:1.2.17:compile
[INFO]    com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile
[INFO]    com.fasterxml.jackson.core:jackson-databind:jar:2.17.1:compile
[INFO]    org.junit.jupiter:junit-jupiter-params:jar:5.3.2:compile
[INFO]    com.microsoft.z3:z3:jar:0.0.1:compile
[INFO]    xml-apis:xml-apis:jar:1.0.b2:compile
[INFO]    ch.qos.logback:logback-classic:jar:1.2.0:runtime
[INFO]    gov.nasa.jpf:jpf-symbc:jar:576:provided
[INFO]    org.ow2.asm:asm-tree:jar:9.2:compile
[INFO]    com.google.j2objc:j2objc-annotations:jar:1.3:compile
[INFO]    eu.stamp-project:descartes:jar:1.2.4:compile
[INFO]    org.jspecify:jspecify:jar:0.3.0:compile
[INFO]    org.junit.jupiter:junit-jupiter-api:jar:5.3.2:compile
[INFO]    org.codehaus.plexus:plexus-java:jar:1.0.5:compile
[INFO]    org.reflections:reflections:jar:0.9.9-RC1:compile
[INFO]    org.jacoco:org.jacoco.core:jar:0.8.8:compile
[INFO]    com.google.guava:failureaccess:jar:1.0.1:compile
[INFO]    org.apache.commons:commons-compress:jar:1.26.1:compile
[INFO]    junit:junit:jar:4.13.2:compile
[INFO]    commons-cli:commons-cli:jar:1.3:compile
[INFO]    org.jvnet.localizer:localizer:jar:1.12:compile
[INFO]    org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO]    org.json:json:jar:20160810:compile
[INFO]    org.junit.platform:junit-platform-launcher:jar:1.3.2:compile
[INFO]    org.slf4j:slf4j-api:jar:1.7.5:compile
[INFO]    org.eclipse.jdt:ecj:jar:3.37.0:compile
[INFO]    org.junit.platform:junit-platform-engine:jar:1.3.2:compile
[INFO]    commons-logging:commons-logging:jar:1.2:compile
[INFO]    fr.inria.gforge.spoon:spoon-core:jar:11.0.1-SNAPSHOT:compile
[INFO]    org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
[INFO]    org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
[INFO]    org.junit.jupiter:junit-jupiter-engine:jar:5.3.2:compile
[INFO]    org.apache.maven.surefire:maven-surefire-common:jar:3.0.0-M5:compile
[INFO]    org.apache.maven.surefire:surefire-logger-api:jar:3.0.0-M5:compile
[INFO]    org.ow2.asm:asm:jar:9.2:compile
[INFO]    org.apache.logging.log4j:log4j-api:jar:2.17.2:compile
[INFO]    org.apache.maven.shared:maven-artifact-transfer:jar:0.11.0:compile
[INFO]    dom4j:dom4j:jar:1.6.1:compile
[INFO]    commons-io:commons-io:jar:2.16.1:compile
[INFO]    com.fasterxml.jackson.core:jackson-annotations:jar:2.17.1:compile
[INFO]    org.apiguardian:apiguardian-api:jar:1.0.0:compile
[INFO]    org.easytesting:fest-assert:jar:1.4:compile
[INFO]    com.github.stefanbirkner:system-lambda:jar:1.2.1:compile
[INFO]    ch.qos.logback:logback-core:jar:1.2.0:runtime
[INFO]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[INFO]    org.easytesting:fest-util:jar:1.1.6:compile
[INFO]    org.apache.maven.surefire:surefire-extensions-api:jar:3.0.0-M5:compile
[INFO]    org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
[INFO]    org.slf4j:slf4j-log4j12:jar:1.7.25:compile
[INFO]    org.apache.logging.log4j:log4j-core:jar:2.17.2:compile
[INFO]    org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[INFO]    com.github.spoonlabs:flacoco:jar:1.0.5:compile
[INFO]    com.google.errorprone:error_prone_annotations:jar:2.3.4:compile
[INFO]    org.junit.platform:junit-platform-commons:jar:1.3.2:compile
[INFO]    org.eclipse.jdt:org.eclipse.jdt.core:jar:3.37.0:compile
[INFO]    org.apache.commons:commons-lang3:jar:3.14.0:compile
[INFO]    org.opentest4j:opentest4j:jar:1.1.1:compile
[INFO]    org.apache.maven.surefire:surefire-api:jar:3.0.0-M5:compile
[INFO]    org.apache.maven.surefire:surefire-shared-utils:jar:3.0.0-M4:compile
[INFO]    com.google.guava:guava:jar:30.1-jre:compile
[INFO]    org.checkerframework:checker-qual:jar:3.5.0:compile
[INFO]    info.picocli:picocli:jar:4.6.3:compile
[INFO]    org.apache.maven.surefire:surefire-booter:jar:3.0.0-M5:compile
[INFO]    org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[INFO]    commons-codec:commons-codec:jar:1.16.1:compile
[INFO]    org.apache.maven:maven-model:jar:3.6.0:compile
[INFO]    org.apache.logging.log4j:log4j-jcl:jar:2.17.2:compile
[INFO]    org.ow2.asm:asm-analysis:jar:9.2:compile
[INFO]    org.pitest:pitest-junit5-plugin:jar:0.8:compile
[INFO]    org.javassist:javassist:jar:3.16.1-GA:compile
[INFO]    javax.inject:javax.inject:jar:1:compile
[INFO]    org.apache.maven.shared:maven-shared-utils:jar:3.3.4:compile
[INFO]    org.apache.maven:maven-toolchain:jar:3.0-alpha-2:compile
[INFO]    com.gzoltar:gzoltar:jar:0.1.1:compile
[INFO]    org.apache.maven.surefire:surefire-extensions-spi:jar:3.0.0-M5:compile
[INFO]    org.ow2.asm:asm-commons:jar:9.2:compile
[INFO]    org.jacoco:org.jacoco.agent:jar:runtime:0.8.8:compile
[INFO]    org.apache.maven.shared:maven-common-artifact-filters:jar:3.0.1:compile
[INFO]    org.pitest:pitest:jar:1.6.7:compile
[INFO]    net.sf.supercsv:super-csv:jar:2.4.0:compile
[INFO]    com.thoughtworks.qdox:qdox:jar:2.0-M9:compile
[INFO]    eu.stamp-project:test-runner:jar:4.11:compile
[INFO]    com.fasterxml.jackson.core:jackson-core:jar:2.17.1:compile
[INFO]    fil.iagl.cocospoon:CocoSpoon:jar:1.0.0-SNAPSHOT:compile
[INFO]    com.cloudbees:diff4j:jar:1.2:compile
[INFO]    org.apache.maven.shared:maven-invoker:jar:3.2.0:compile
[INFO]    com.google.code.gson:gson:jar:2.9.0:compile
[INFO]    org.pitest:pitest-entry:jar:1.6.7:compile
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  20.213 s
[INFO] Finished at: 2024-05-07T10:39:43+02:00
[INFO] ------------------------------------------------------------------------
+ mvn package
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$1 (file:/usr/share/maven/lib/guice.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 173, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-jar-plugin is missing. @ line 185, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-resources-plugin is missing. @ line 179, column 21
[WARNING] 'repositories.repository.id' must not contain any of these characters \/:"<>|?* but found / @ line 298, column 17
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[WARNING] The project fr.inria.gforge.spirals:nopol:jar:0.2-SNAPSHOT uses prerequisites which is only intended for maven-plugin projects but not for non maven-plugin projects. For such purposes you should use the maven-enforcer-plugin. See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:nopol >--------------------
[INFO] Building Nopol 0.2-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- jacoco-maven-plugin:0.8.7:prepare-agent (default) @ nopol ---
[INFO] argLine set to -javaagent:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.7/org.jacoco.agent-0.8.7-runtime.jar=destfile=/builds/workspace/nopol/nopol/target/jacoco.exec
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ nopol ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ nopol ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 297 source files to /builds/workspace/nopol/nopol/target/classes
[INFO] -------------------------------------------------------------
[WARNING] COMPILATION WARNING : 
[INFO] -------------------------------------------------------------
[WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[5,46] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release
[WARNING] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/expression/value/Value.java:[5,46] sun.reflect.generics.reflectiveObjects.NotImplementedException is internal proprietary API and may be removed in a future release
[INFO] 2 warnings 
[INFO] -------------------------------------------------------------
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[3,24] cannot access spoon.processing.AbstractProcessor
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/AbstractProcessor.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[4,26] cannot access spoon.reflect.code.CtInvocation
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtInvocation.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[5,31] cannot access spoon.reflect.reference.CtExecutableReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtExecutableReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[6,31] cannot access spoon.reflect.reference.CtTypeReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtTypeReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[4,24] cannot access spoon.processing.Processor
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/Processor.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[5,33] cannot access spoon.reflect.declaration.CtType
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtType.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[6,22] cannot access spoon.compiler.Environment
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/compiler/Environment.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[7,24] cannot access spoon.processing.ProcessInterruption
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/ProcessInterruption.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[8,24] cannot access spoon.processing.ProcessingManager
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/ProcessingManager.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[10,33] cannot access spoon.reflect.declaration.CtPackage
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtPackage.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[12,29] cannot access spoon.reflect.factory.Factory
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/factory/Factory.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[13,29] cannot access spoon.reflect.factory.TypeFactory
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/factory/TypeFactory.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[14,29] cannot access spoon.reflect.visitor.DefaultJavaPrettyPrinter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/DefaultJavaPrettyPrinter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[15,21] cannot access spoon.support.JavaOutputProcessor
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/JavaOutputProcessor.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[16,21] cannot access spoon.support.RuntimeProcessingManager
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/RuntimeProcessingManager.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[7,26] cannot access spoon.reflect.code.CtStatement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtStatement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[8,33] cannot access spoon.reflect.cu.position.NoSourcePosition
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/cu/position/NoSourcePosition.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[5,33] cannot access spoon.reflect.declaration.CtAnnotation
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtAnnotation.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[6,33] cannot access spoon.reflect.declaration.CtMethod
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtMethod.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[7,29] cannot access spoon.reflect.visitor.Filter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/Filter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[8,34] cannot access spoon.support.reflect.code.CtStatementListImpl
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/code/CtStatementListImpl.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[33,43] cannot access spoon.reflect.code.CtIf
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtIf.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CompoundProcessor.java:[5,26] cannot access spoon.reflect.code.CtCodeElement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeElement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SymbolicConditionalReplacer.java:[17,19] cannot access spoon.reflect.code.CtExpression
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtExpression.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalProcessor.java:[5,26] cannot access spoon.reflect.code.CtConditional
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtConditional.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalProcessor.java:[9,33] cannot access spoon.reflect.declaration.CtElement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtElement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[6,31] cannot access spoon.reflect.reference.CtReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[9,29] cannot access spoon.reflect.visitor.Query
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/Query.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[10,36] cannot access spoon.reflect.visitor.filter.TypeFilter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/TypeFilter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[166,58] cannot access spoon.reflect.declaration.ModifierKind
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/ModifierKind.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[4,13] cannot access spoon.SpoonException
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/SpoonException.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[9,31] cannot access spoon.reflect.reference.CtPackageReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtPackageReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[60,13] cannot access spoon.reflect.code.CtBlock
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBlock.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[5,24] cannot access spoon.reflect.cu.SourcePosition
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/cu/SourcePosition.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[52,18] cannot access spoon.reflect.code.CtWhile
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtWhile.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[56,46] cannot access spoon.reflect.code.CtBreak
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBreak.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[56,83] cannot access spoon.reflect.code.CtReturn
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtReturn.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/TestExecutorProcessor.java:[5,33] cannot access spoon.reflect.declaration.CtClass
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtClass.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/TestExecutorProcessor.java:[7,33] cannot access spoon.reflect.declaration.CtParameter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtParameter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[19,26] cannot access spoon.reflect.code.CtAssignment
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtAssignment.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[20,26] cannot access spoon.reflect.code.CtLocalVariable
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLocalVariable.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[24,33] cannot access spoon.reflect.declaration.CtTypedElement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtTypedElement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[3,13] cannot access spoon.Launcher
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/Launcher.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[4,13] cannot access spoon.SpoonModelBuilder
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/SpoonModelBuilder.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[5,26] cannot access spoon.reflect.code.BinaryOperatorKind
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/BinaryOperatorKind.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[6,26] cannot access spoon.reflect.code.CtBinaryOperator
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBinaryOperator.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[9,26] cannot access spoon.reflect.code.CtCatch
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCatch.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[12,26] cannot access spoon.reflect.code.CtLiteral
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLiteral.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[15,26] cannot access spoon.reflect.code.CtThrow
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThrow.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[16,26] cannot access spoon.reflect.code.CtTry
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtTry.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonStatementLibrary.java:[6,26] cannot access spoon.reflect.code.CtStatementList
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtStatementList.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariableTypeCollector.java:[12,62] cannot access spoon.reflect.declaration.CtVariable
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtVariable.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/localization/FlacocoFaultLocalizer.java:[19,21] cannot access spoon.reflect.CtModel
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/CtModel.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/localization/FlacocoFaultLocalizer.java:[20,33] cannot access spoon.reflect.declaration.CtTypeInformation
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtTypeInformation.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalAdder.java:[4,26] cannot access spoon.reflect.code.CtCodeSnippetExpression
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetExpression.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalAdder.java:[8,36] cannot access spoon.reflect.visitor.filter.LineFilter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/LineFilter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/filter/LocationFilter.java:[5,36] cannot access spoon.reflect.visitor.filter.AbstractFilter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/AbstractFilter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariablesInSuspiciousCollector.java:[7,26] cannot access spoon.reflect.code.CtFieldAccess
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtFieldAccess.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariablesInSuspiciousCollector.java:[10,26] cannot access spoon.reflect.code.CtVariableAccess
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableAccess.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/StatCollector.java:[6,33] cannot access spoon.reflect.declaration.CtExecutable
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtExecutable.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/StatCollector.java:[8,31] cannot access spoon.reflect.reference.CtVariableReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtVariableReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/diff/PatchGenerator.java:[13,33] cannot access spoon.reflect.declaration.CtConstructor
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtConstructor.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/diff/PatchGenerator.java:[18,29] cannot access spoon.reflect.visitor.EarlyTerminatingScanner
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/EarlyTerminatingScanner.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[5,26] cannot access spoon.reflect.code.CtCodeSnippetStatement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetStatement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[7,26] cannot access spoon.reflect.code.CtThisAccess
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThisAccess.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[9,31] cannot access spoon.reflect.reference.CtCatchVariableReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtCatchVariableReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[11,29] cannot access spoon.reflect.visitor.CtAbstractVisitor
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/CtAbstractVisitor.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[128,34] cannot access spoon.reflect.declaration.CtField
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtField.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java:[11,36] cannot access spoon.reflect.visitor.filter.CompositeFilter
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/CompositeFilter.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java:[12,36] cannot access spoon.reflect.visitor.filter.FilteringOperator
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/FilteringOperator.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonReferenceLibrary.java:[6,33] cannot access spoon.reflect.declaration.CtModifiable
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtModifiable.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonReferenceLibrary.java:[7,31] cannot access spoon.reflect.reference.CtFieldReference
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtFieldReference.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[6,29] cannot access spoon.reflect.visitor.CtScanner
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/CtScanner.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[29,42] cannot access spoon.reflect.code.CtUnaryOperator
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtUnaryOperator.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[40,38] cannot access spoon.reflect.code.CtArrayRead
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtArrayRead.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[45,39] cannot access spoon.reflect.code.CtArrayWrite
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtArrayWrite.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[50,41] cannot access spoon.reflect.code.CtVariableRead
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableRead.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[55,42] cannot access spoon.reflect.code.CtVariableWrite
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableWrite.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonLoopLibrary.java:[4,26] cannot access spoon.reflect.code.CtLoop
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLoop.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonLoopLibrary.java:[6,26] cannot access spoon.reflect.code.CtSwitch
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtSwitch.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[15,38] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[15,56] cannot find symbol
  symbol: class CtInvocation
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[24,25] cannot find symbol
  symbol:   class CtInvocation
  location: class fr.inria.lille.repair.synthesis.collect.spoon.MethodCollector
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[10,46] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[10,64] cannot find symbol
  symbol: class CtStatement
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/common/patch/Patch.java:[46,19] cannot find symbol
  symbol:   class Factory
  location: interface fr.inria.lille.repair.common.patch.Patch
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[12,27] cannot find symbol
  symbol:   class CtStatement
  location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[18,36] cannot find symbol
  symbol:   class CtStatement
  location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[49,12] cannot find symbol
  symbol:   class CtStatement
  location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[62,19] cannot find symbol
  symbol:   class CtStatement
  location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[21,36] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[25,15] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[34,26] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[50,91] cannot find symbol
  symbol:   class Processor
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[54,112] cannot find symbol
  symbol:   class Processor
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[59,52] cannot find symbol
  symbol:   class Processor
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[63,65] cannot find symbol
  symbol:   class Processor
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[67,88] cannot find symbol
  symbol:   class Processor
  location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedClass.java:[13,55] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.lille.commons.spoon.SpoonedClass
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedClass.java:[21,36] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.lille.commons.spoon.SpoonedClass
[INFO] 100 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  19.764 s
[INFO] Finished at: 2024-05-07T10:40:06+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project nopol: Compilation failure: Compilation failure: 
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[3,24] cannot access spoon.processing.AbstractProcessor
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/AbstractProcessor.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[4,26] cannot access spoon.reflect.code.CtInvocation
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtInvocation.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[5,31] cannot access spoon.reflect.reference.CtExecutableReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtExecutableReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[6,31] cannot access spoon.reflect.reference.CtTypeReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtTypeReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[4,24] cannot access spoon.processing.Processor
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/Processor.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[5,33] cannot access spoon.reflect.declaration.CtType
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtType.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[6,22] cannot access spoon.compiler.Environment
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/compiler/Environment.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[7,24] cannot access spoon.processing.ProcessInterruption
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/ProcessInterruption.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[8,24] cannot access spoon.processing.ProcessingManager
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/processing/ProcessingManager.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[10,33] cannot access spoon.reflect.declaration.CtPackage
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtPackage.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[12,29] cannot access spoon.reflect.factory.Factory
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/factory/Factory.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[13,29] cannot access spoon.reflect.factory.TypeFactory
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/factory/TypeFactory.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[14,29] cannot access spoon.reflect.visitor.DefaultJavaPrettyPrinter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/DefaultJavaPrettyPrinter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[15,21] cannot access spoon.support.JavaOutputProcessor
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/JavaOutputProcessor.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedFile.java:[16,21] cannot access spoon.support.RuntimeProcessingManager
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/RuntimeProcessingManager.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[7,26] cannot access spoon.reflect.code.CtStatement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtStatement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[8,33] cannot access spoon.reflect.cu.position.NoSourcePosition
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/cu/position/NoSourcePosition.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[5,33] cannot access spoon.reflect.declaration.CtAnnotation
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtAnnotation.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[6,33] cannot access spoon.reflect.declaration.CtMethod
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtMethod.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[7,29] cannot access spoon.reflect.visitor.Filter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/Filter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[8,34] cannot access spoon.support.reflect.code.CtStatementListImpl
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/code/CtStatementListImpl.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/ifmetric/IfCountingInstrumentingProcessor.java:[33,43] cannot access spoon.reflect.code.CtIf
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtIf.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CompoundProcessor.java:[5,26] cannot access spoon.reflect.code.CtCodeElement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeElement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SymbolicConditionalReplacer.java:[17,19] cannot access spoon.reflect.code.CtExpression
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtExpression.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalProcessor.java:[5,26] cannot access spoon.reflect.code.CtConditional
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtConditional.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalProcessor.java:[9,33] cannot access spoon.reflect.declaration.CtElement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtElement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[6,31] cannot access spoon.reflect.reference.CtReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[9,29] cannot access spoon.reflect.visitor.Query
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/Query.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[10,36] cannot access spoon.reflect.visitor.filter.TypeFilter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/TypeFilter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonElementLibrary.java:[166,58] cannot access spoon.reflect.declaration.ModifierKind
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/ModifierKind.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[4,13] cannot access spoon.SpoonException
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/SpoonException.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[9,31] cannot access spoon.reflect.reference.CtPackageReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtPackageReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/AssertReplacer.java:[60,13] cannot access spoon.reflect.code.CtBlock
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBlock.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[5,24] cannot access spoon.reflect.cu.SourcePosition
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/cu/SourcePosition.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[52,18] cannot access spoon.reflect.code.CtWhile
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtWhile.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[56,46] cannot access spoon.reflect.code.CtBreak
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBreak.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/infinitel/loop/While.java:[56,83] cannot access spoon.reflect.code.CtReturn
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtReturn.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/TestExecutorProcessor.java:[5,33] cannot access spoon.reflect.declaration.CtClass
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtClass.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/TestExecutorProcessor.java:[7,33] cannot access spoon.reflect.declaration.CtParameter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtParameter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[19,26] cannot access spoon.reflect.code.CtAssignment
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtAssignment.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[20,26] cannot access spoon.reflect.code.CtLocalVariable
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLocalVariable.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/symbolic/SpoonDoubleStatement.java:[24,33] cannot access spoon.reflect.declaration.CtTypedElement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtTypedElement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[3,13] cannot access spoon.Launcher
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/Launcher.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[4,13] cannot access spoon.SpoonModelBuilder
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/SpoonModelBuilder.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[5,26] cannot access spoon.reflect.code.BinaryOperatorKind
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/BinaryOperatorKind.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[6,26] cannot access spoon.reflect.code.CtBinaryOperator
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBinaryOperator.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[9,26] cannot access spoon.reflect.code.CtCatch
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCatch.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[12,26] cannot access spoon.reflect.code.CtLiteral
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLiteral.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[15,26] cannot access spoon.reflect.code.CtThrow
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThrow.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonModelLibrary.java:[16,26] cannot access spoon.reflect.code.CtTry
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtTry.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonStatementLibrary.java:[6,26] cannot access spoon.reflect.code.CtStatementList
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtStatementList.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariableTypeCollector.java:[12,62] cannot access spoon.reflect.declaration.CtVariable
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtVariable.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/localization/FlacocoFaultLocalizer.java:[19,21] cannot access spoon.reflect.CtModel
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/CtModel.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/localization/FlacocoFaultLocalizer.java:[20,33] cannot access spoon.reflect.declaration.CtTypeInformation
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtTypeInformation.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalAdder.java:[4,26] cannot access spoon.reflect.code.CtCodeSnippetExpression
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetExpression.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/smt/ConditionalAdder.java:[8,36] cannot access spoon.reflect.visitor.filter.LineFilter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/LineFilter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/filter/LocationFilter.java:[5,36] cannot access spoon.reflect.visitor.filter.AbstractFilter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/AbstractFilter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariablesInSuspiciousCollector.java:[7,26] cannot access spoon.reflect.code.CtFieldAccess
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtFieldAccess.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/VariablesInSuspiciousCollector.java:[10,26] cannot access spoon.reflect.code.CtVariableAccess
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableAccess.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/StatCollector.java:[6,33] cannot access spoon.reflect.declaration.CtExecutable
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtExecutable.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/StatCollector.java:[8,31] cannot access spoon.reflect.reference.CtVariableReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtVariableReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/diff/PatchGenerator.java:[13,33] cannot access spoon.reflect.declaration.CtConstructor
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtConstructor.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/diff/PatchGenerator.java:[18,29] cannot access spoon.reflect.visitor.EarlyTerminatingScanner
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/EarlyTerminatingScanner.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[5,26] cannot access spoon.reflect.code.CtCodeSnippetStatement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetStatement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[7,26] cannot access spoon.reflect.code.CtThisAccess
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThisAccess.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[9,31] cannot access spoon.reflect.reference.CtCatchVariableReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtCatchVariableReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[11,29] cannot access spoon.reflect.visitor.CtAbstractVisitor
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/CtAbstractVisitor.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/ReachableVariableVisitor.java:[128,34] cannot access spoon.reflect.declaration.CtField
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtField.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java:[11,36] cannot access spoon.reflect.visitor.filter.CompositeFilter
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/CompositeFilter.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/CollectableValueFinder.java:[12,36] cannot access spoon.reflect.visitor.filter.FilteringOperator
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/filter/FilteringOperator.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonReferenceLibrary.java:[6,33] cannot access spoon.reflect.declaration.CtModifiable
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtModifiable.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonReferenceLibrary.java:[7,31] cannot access spoon.reflect.reference.CtFieldReference
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/reference/CtFieldReference.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[6,29] cannot access spoon.reflect.visitor.CtScanner
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/visitor/CtScanner.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[29,42] cannot access spoon.reflect.code.CtUnaryOperator
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtUnaryOperator.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[40,38] cannot access spoon.reflect.code.CtArrayRead
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtArrayRead.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[45,39] cannot access spoon.reflect.code.CtArrayWrite
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtArrayWrite.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[50,41] cannot access spoon.reflect.code.CtVariableRead
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableRead.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/collectable/SubconditionVisitor.java:[55,42] cannot access spoon.reflect.code.CtVariableWrite
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableWrite.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonLoopLibrary.java:[4,26] cannot access spoon.reflect.code.CtLoop
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLoop.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/util/SpoonLoopLibrary.java:[6,26] cannot access spoon.reflect.code.CtSwitch
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtSwitch.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[15,38] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[15,56] cannot find symbol
[ERROR]   symbol: class CtInvocation
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/synthesis/collect/spoon/MethodCollector.java:[24,25] cannot find symbol
[ERROR]   symbol:   class CtInvocation
[ERROR]   location: class fr.inria.lille.repair.synthesis.collect.spoon.MethodCollector
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[10,46] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[10,64] cannot find symbol
[ERROR]   symbol: class CtStatement
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/common/patch/Patch.java:[46,19] cannot find symbol
[ERROR]   symbol:   class Factory
[ERROR]   location: interface fr.inria.lille.repair.common.patch.Patch
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[12,27] cannot find symbol
[ERROR]   symbol:   class CtStatement
[ERROR]   location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[18,36] cannot find symbol
[ERROR]   symbol:   class CtStatement
[ERROR]   location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[49,12] cannot find symbol
[ERROR]   symbol:   class CtStatement
[ERROR]   location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/repair/nopol/spoon/NopolProcessor.java:[62,19] cannot find symbol
[ERROR]   symbol:   class CtStatement
[ERROR]   location: class fr.inria.lille.repair.nopol.spoon.NopolProcessor
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[21,36] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[25,15] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[34,26] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[50,91] cannot find symbol
[ERROR]   symbol:   class Processor
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[54,112] cannot find symbol
[ERROR]   symbol:   class Processor
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[59,52] cannot find symbol
[ERROR]   symbol:   class Processor
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[63,65] cannot find symbol
[ERROR]   symbol:   class Processor
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedProject.java:[67,88] cannot find symbol
[ERROR]   symbol:   class Processor
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedProject
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedClass.java:[13,55] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedClass
[ERROR] /builds/workspace/nopol/nopol/src/main/java/fr/inria/lille/commons/spoon/SpoonedClass.java:[21,36] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.lille.commons.spoon.SpoonedClass
[ERROR] -> [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
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files were found. Configuration error?
Sending e-mails to: spoon-devel@lists.gforge.inria.fr
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] done
Finished: FAILURE