Skip to content

Console Output

Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on sos-builder01-ubuntu18 (lin) in workspace /builds/workspace/npefix
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] Done
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/Spirals-Team/npefix.git
 > git init /builds/workspace/npefix # timeout=10
Fetching upstream changes from https://github.com/Spirals-Team/npefix.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
 > git fetch --tags --progress -- https://github.com/Spirals-Team/npefix.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/Spirals-Team/npefix.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 b8b2e6e34f137e387a9c827225766796f6c6bbb2 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f b8b2e6e34f137e387a9c827225766796f6c6bbb2 # timeout=10
Commit message: "move snapshot to central"
 > git rev-list --no-walk b8b2e6e34f137e387a9c827225766796f6c6bbb2 # timeout=10
[npefix] $ /bin/sh -xe /tmp/jenkins11503342566048393462.sh
+ rm -rf /builds/.m2/repository/fr/inria/gforge/spoon
[npefix] $ /bin/sh -xe /tmp/jenkins2607505825016058036.sh
+ 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  13348      0 --:--:-- --:--:-- --:--:-- 13273
100  2376  100  2376    0     0  12571      0 --:--:-- --:--:-- --:--:-- 12505
+ 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
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[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/apache/maven/plugins/maven-metadata.xml (14 kB at 22 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 32 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 25 kB/s)
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:npefix >-------------------
[INFO] Building npefix 0.9-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ npefix ---
[INFO] Downloading from central -snapshot: 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 230 kB/s)
[INFO] Downloaded from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 514 B/s)
[INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:10.4.1-SNAPSHOT to version 11.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  5.704 s
[INFO] Finished at: 2024-05-12T05:24:09+02:00
[INFO] ------------------------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:npefix >-------------------
[INFO] Building npefix 0.9-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:purge-local-repository (default-cli) @ npefix ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  3.336 s
[INFO] Finished at: 2024-05-12T05:24:15+02:00
[INFO] ------------------------------------------------------------------------
+ mvn test
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[INFO] Inspecting build with total of 1 modules...
[INFO] Installing Nexus Staging features:
[INFO]   ... total of 1 executions of maven-deploy-plugin replaced with nexus-staging-maven-plugin
[INFO] 
[INFO] -------------------< fr.inria.gforge.spirals:npefix >-------------------
[INFO] Building npefix 0.9-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from central -snapshot: 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
                    
Downloaded from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/maven-metadata.xml (1.4 kB at 1.5 kB/s)
Downloading from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240512.010506-1.pom
Progress (1): 4.1/9.6 kB
Progress (1): 7.8/9.6 kB
Progress (1): 9.6 kB    
                    
Downloaded from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240512.010506-1.pom (9.6 kB at 40 kB/s)
Downloading from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml
Progress (1): 609 B
                   
Downloaded from central -snapshot: 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)
Downloading from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240512.011030-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 central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240512.011030-1.pom (25 kB at 85 kB/s)
Downloading from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240512.010506-1.jar
Downloading from central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.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.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.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.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): 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.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.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.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 central -snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240512.010506-1.jar (1.9 MB at 1.2 MB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar
Progress (1): 2.8/34 kB
Progress (1): 5.5/34 kB
Progress (1): 8.3/34 kB
Progress (1): 11/34 kB 
Progress (1): 14/34 kB
Progress (1): 16/34 kB
Progress (1): 19/34 kB
Progress (1): 22/34 kB
Progress (1): 25/34 kB
Progress (1): 27/34 kB
Progress (1): 30/34 kB
Progress (1): 33/34 kB
Progress (1): 34 kB   
                   
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.3.0/maven-invoker-3.3.0.jar (34 kB at 150 kB/s)
[INFO] 
[INFO] --- jacoco-maven-plugin:0.8.4:prepare-agent (default) @ npefix ---
[INFO] argLine set to -javaagent:/builds/.m2/repository/org/jacoco/org.jacoco.agent/0.8.4/org.jacoco.agent-0.8.4-runtime.jar=destfile=/builds/workspace/npefix/target/jacoco.exec
[INFO] 
[INFO] --- build-helper-maven-plugin:1.7:add-source (add-source) @ npefix ---
[INFO] Source directory: /builds/workspace/npefix/src/evaluation/java added.
[INFO] Source directory: /builds/workspace/npefix/src/main/java added.
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ npefix ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:3.5.1:compile (default-compile) @ npefix ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 185 source files to /builds/workspace/npefix/target/classes
[INFO] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/strategies/AbstractStrategy.java: Some input files use or override a deprecated API.
[INFO] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/strategies/AbstractStrategy.java: Recompile with -Xlint:deprecation for details.
[INFO] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/sorter/Tokens.java: Some input files use unchecked or unsafe operations.
[INFO] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/sorter/Tokens.java: Recompile with -Xlint:unchecked for details.
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[3,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[4,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[6,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[7,26] cannot access spoon.reflect.code.CtTargetedExpression
  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/CtTargetedExpression.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[8,26] cannot access spoon.reflect.code.CtTypeAccess
  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/CtTypeAccess.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[9,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[10,26] cannot access spoon.reflect.code.UnaryOperatorKind
  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/UnaryOperatorKind.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[12,31] cannot access spoon.reflect.reference.CtArrayTypeReference
  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/CtArrayTypeReference.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[13,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[15,31] cannot access spoon.reflect.reference.CtTypeParameterReference
  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/CtTypeParameterReference.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[16,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[17,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,49] cannot find symbol
  symbol:   class Factory
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,101] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,19] cannot find symbol
  symbol:   class CtInvocation
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[37,36] cannot find symbol
  symbol:   class CtTargetedExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[47,44] cannot find symbol
  symbol:   class CtTargetedExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[58,52] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[58,19] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[106,52] cannot find symbol
  symbol:   class CtTypeReference
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[106,19] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/instance/Instance.java:[12,37] cannot find symbol
  symbol:   class Factory
  location: interface fr.inria.spirals.npefix.resi.context.instance.Instance<T>
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/instance/Instance.java:[12,9] cannot find symbol
  symbol:   class CtExpression
  location: interface fr.inria.spirals.npefix.resi.context.instance.Instance<T>
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[5,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[7,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[8,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[9,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[10,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[12,33] cannot access spoon.reflect.declaration.CtTypeMember
  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/CtTypeMember.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[21,17] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[23,33] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[31,27] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[31,16] cannot find symbol
  symbol:   class CtIf
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[60,32] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[60,17] cannot find symbol
  symbol:   class CtIf
  location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[15,25] cannot find symbol
  symbol:   class CtExpression
  location: interface fr.inria.spirals.npefix.patchTemplate.template.PatchTemplate
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[15,9] cannot find symbol
  symbol:   class CtElement
  location: interface fr.inria.spirals.npefix.patchTemplate.template.PatchTemplate
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/NPEOutput.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/NPEOutput.java:[106,34] cannot find symbol
  symbol:   class Launcher
  location: class fr.inria.spirals.npefix.resi.context.NPEOutput
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/Lapse.java:[144,30] cannot find symbol
  symbol:   class Launcher
  location: class fr.inria.spirals.npefix.resi.context.Lapse
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/Lapse.java:[153,34] cannot find symbol
  symbol:   class Launcher
  location: class fr.inria.spirals.npefix.resi.context.Lapse
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[23,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[24,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[25,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[27,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[29,36] cannot access spoon.reflect.visitor.filter.AnnotationFilter
  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/AnnotationFilter.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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[30,21] cannot access spoon.support.QueueProcessingManager
  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/QueueProcessingManager.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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[58,19] cannot find symbol
  symbol:   class SpoonModelBuilder
  location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/RepairStrategy.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[121,17] cannot find symbol
  symbol:   class CtType
  location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[149,35] cannot find symbol
  symbol:   class CtTypeReference
  location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[183,13] cannot find symbol
  symbol:   class SpoonModelBuilder
  location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[485,12] cannot find symbol
  symbol:   class SpoonModelBuilder
  location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/RepairStrategy.java:[16,14] cannot find symbol
  symbol:   class AbstractProcessor
  location: interface fr.inria.spirals.npefix.main.all.RepairStrategy
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[7,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[9,38] cannot find symbol
  symbol: class CtScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[11,17] cannot find symbol
  symbol:   class CtElement
  location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[18,26] cannot find symbol
  symbol:   class CtElement
  location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[40,16] cannot find symbol
  symbol:   class CtElement
  location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[7,33] cannot access spoon.reflect.declaration.CtEnum
  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/CtEnum.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[8,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[10,33] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[12,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[28,28] cannot find symbol
  symbol:   class CtTypeReference
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[30,23] cannot find symbol
  symbol:   class Factory
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[31,23] cannot find symbol
  symbol:   class TypeFactory
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[32,17] cannot find symbol
  symbol:   class CtTypeReference
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[34,32] cannot find symbol
  symbol:   class CtTypeReference
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[40,21] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[66,48] cannot find symbol
  symbol:   class CtClass
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[66,22] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[96,22] cannot find symbol
  symbol:   class CtExpression
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[113,22] cannot find symbol
  symbol:   class CtClass
  location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[8,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[13,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[17,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[26,36] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[26,54] cannot find symbol
  symbol: class CtBinaryOperator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[53,40] cannot find symbol
  symbol:   class CtBinaryOperator
  location: class fr.inria.spirals.npefix.transformer.processors.NotNullTracer
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[69,29] cannot find symbol
  symbol:   class CtBinaryOperator
  location: class fr.inria.spirals.npefix.transformer.processors.NotNullTracer
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[5,26] cannot access spoon.reflect.code.CtArrayAccess
  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/CtArrayAccess.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[6,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[10,26] cannot access spoon.reflect.code.CtLambda
  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/CtLambda.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[12,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[15,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[22,40] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[22,58] cannot find symbol
  symbol: class CtAssignment
[INFO] 100 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  13.610 s
[INFO] Finished at: 2024-05-12T05:24:31+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project npefix: Compilation failure: Compilation failure: 
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[3,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[4,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[6,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[7,26] cannot access spoon.reflect.code.CtTargetedExpression
[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/CtTargetedExpression.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[8,26] cannot access spoon.reflect.code.CtTypeAccess
[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/CtTypeAccess.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[9,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[10,26] cannot access spoon.reflect.code.UnaryOperatorKind
[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/UnaryOperatorKind.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[12,31] cannot access spoon.reflect.reference.CtArrayTypeReference
[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/CtArrayTypeReference.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[13,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[15,31] cannot access spoon.reflect.reference.CtTypeParameterReference
[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/CtTypeParameterReference.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[16,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[17,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,49] cannot find symbol
[ERROR]   symbol:   class Factory
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,101] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[24,19] cannot find symbol
[ERROR]   symbol:   class CtInvocation
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[37,36] cannot find symbol
[ERROR]   symbol:   class CtTargetedExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[47,44] cannot find symbol
[ERROR]   symbol:   class CtTargetedExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[58,52] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[58,19] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[106,52] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/ProcessorUtility.java:[106,19] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.ProcessorUtility
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/instance/Instance.java:[12,37] cannot find symbol
[ERROR]   symbol:   class Factory
[ERROR]   location: interface fr.inria.spirals.npefix.resi.context.instance.Instance<T>
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/instance/Instance.java:[12,9] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: interface fr.inria.spirals.npefix.resi.context.instance.Instance<T>
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[5,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[7,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[8,26] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[9,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[10,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[12,33] cannot access spoon.reflect.declaration.CtTypeMember
[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/CtTypeMember.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[21,17] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[23,33] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[31,27] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[31,16] cannot find symbol
[ERROR]   symbol:   class CtIf
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[60,32] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/SkipMethodReturn.java:[60,17] cannot find symbol
[ERROR]   symbol:   class CtIf
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.template.SkipMethodReturn
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[15,25] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: interface fr.inria.spirals.npefix.patchTemplate.template.PatchTemplate
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/template/PatchTemplate.java:[15,9] cannot find symbol
[ERROR]   symbol:   class CtElement
[ERROR]   location: interface fr.inria.spirals.npefix.patchTemplate.template.PatchTemplate
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/NPEOutput.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/NPEOutput.java:[106,34] cannot find symbol
[ERROR]   symbol:   class Launcher
[ERROR]   location: class fr.inria.spirals.npefix.resi.context.NPEOutput
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/Lapse.java:[144,30] cannot find symbol
[ERROR]   symbol:   class Launcher
[ERROR]   location: class fr.inria.spirals.npefix.resi.context.Lapse
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/resi/context/Lapse.java:[153,34] cannot find symbol
[ERROR]   symbol:   class Launcher
[ERROR]   location: class fr.inria.spirals.npefix.resi.context.Lapse
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[23,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[24,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[25,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[27,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[29,36] cannot access spoon.reflect.visitor.filter.AnnotationFilter
[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/AnnotationFilter.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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[30,21] cannot access spoon.support.QueueProcessingManager
[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/QueueProcessingManager.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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[58,19] cannot find symbol
[ERROR]   symbol:   class SpoonModelBuilder
[ERROR]   location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/RepairStrategy.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[121,17] cannot find symbol
[ERROR]   symbol:   class CtType
[ERROR]   location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[149,35] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[183,13] cannot find symbol
[ERROR]   symbol:   class SpoonModelBuilder
[ERROR]   location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/Launcher.java:[485,12] cannot find symbol
[ERROR]   symbol:   class SpoonModelBuilder
[ERROR]   location: class fr.inria.spirals.npefix.main.all.Launcher
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/main/all/RepairStrategy.java:[16,14] cannot find symbol
[ERROR]   symbol:   class AbstractProcessor
[ERROR]   location: interface fr.inria.spirals.npefix.main.all.RepairStrategy
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[5,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[7,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/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[9,38] cannot find symbol
[ERROR]   symbol: class CtScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[11,17] cannot find symbol
[ERROR]   symbol:   class CtElement
[ERROR]   location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[18,26] cannot find symbol
[ERROR]   symbol:   class CtElement
[ERROR]   location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patch/PositionScanner.java:[40,16] cannot find symbol
[ERROR]   symbol:   class CtElement
[ERROR]   location: class fr.inria.spirals.npefix.patch.PositionScanner
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[4,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[7,33] cannot access spoon.reflect.declaration.CtEnum
[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/CtEnum.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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[8,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[10,33] 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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[12,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/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[28,28] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[30,23] cannot find symbol
[ERROR]   symbol:   class Factory
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[31,23] cannot find symbol
[ERROR]   symbol:   class TypeFactory
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[32,17] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[34,32] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[40,21] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[66,48] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[66,22] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[96,22] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/patchTemplate/InstanceCreator.java:[113,22] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class fr.inria.spirals.npefix.patchTemplate.InstanceCreator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[8,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[11,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[13,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[14,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[17,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[26,36] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[26,54] cannot find symbol
[ERROR]   symbol: class CtBinaryOperator
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[53,40] cannot find symbol
[ERROR]   symbol:   class CtBinaryOperator
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.NotNullTracer
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/NotNullTracer.java:[69,29] cannot find symbol
[ERROR]   symbol:   class CtBinaryOperator
[ERROR]   location: class fr.inria.spirals.npefix.transformer.processors.NotNullTracer
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[5,26] cannot access spoon.reflect.code.CtArrayAccess
[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/CtArrayAccess.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[6,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[10,26] cannot access spoon.reflect.code.CtLambda
[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/CtLambda.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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[12,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[15,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/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[22,40] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/npefix/src/main/java/fr/inria/spirals/npefix/transformer/processors/VarRetrieveAssign.java:[22,58] cannot find symbol
[ERROR]   symbol: class CtAssignment
[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
Sending e-mails to: spoon-devel@lists.gforge.inria.fr
Finished: FAILURE