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/casper
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] Done
The recommended git tool is: NONE
No credentials specified
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository https://github.com/Spirals-Team/casper.git
 > git init /builds/workspace/casper # timeout=10
Fetching upstream changes from https://github.com/Spirals-Team/casper.git
 > git --version # timeout=10
 > git --version # 'git version 2.17.1'
 > git fetch --tags --progress -- https://github.com/Spirals-Team/casper.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/Spirals-Team/casper.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 db6b937a59f090961c13d5033eb29c92337d83f5 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f db6b937a59f090961c13d5033eb29c92337d83f5 # timeout=10
Commit message: "Update pom.xml"
 > git rev-list --no-walk db6b937a59f090961c13d5033eb29c92337d83f5 # timeout=10
[casper] $ /bin/sh -xe /tmp/jenkins9337096631678012657.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  35462      0 --:--:-- --:--:-- --:--:-- 35462
+ 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...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.spirals:casper:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 81, column 29
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 33 kB/s)
[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 23 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 24 kB/s)
[INFO] 
[INFO] ----------------------< fr.inria.spirals:casper >-----------------------
[INFO] Building casper 0.1
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- versions-maven-plugin:2.16.2:use-latest-versions (default-cli) @ casper ---
[INFO] Downloading from 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 177 kB/s)
[INFO] Downloaded from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/maven-metadata.xml (292 B at 452 B/s)
[INFO] Updated fr.inria.gforge.spoon:spoon-core:jar:9.0.0 to version 11.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  4.793 s
[INFO] Finished at: 2024-05-08T10:23:08+02:00
[INFO] ------------------------------------------------------------------------
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.spirals:casper:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 81, column 29
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ----------------------< fr.inria.spirals:casper >-----------------------
[INFO] Building casper 0.1
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.8:purge-local-repository (default-cli) @ casper ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  2.222 s
[INFO] Finished at: 2024-05-08T10:23:12+02:00
[INFO] ------------------------------------------------------------------------
+ mvn clean test
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for fr.inria.spirals:casper:jar:0.1
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 81, column 29
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO] 
[INFO] ----------------------< fr.inria.spirals:casper >-----------------------
[INFO] Building casper 0.1
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from 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 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 323 B/s)
Downloading from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240508.005026-1.pom
Downloaded from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240508.005026-1.pom (0 B at 0 B/s)
Downloading from 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 snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/maven-metadata.xml (609 B at 3.0 kB/s)
Downloading from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240508.005557-1.pom
Downloaded from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-pom/11.0.1-SNAPSHOT/spoon-pom-11.0.1-20240508.005557-1.pom (0 B at 0 B/s)
Downloading from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240508.005026-1.jar
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.1/1.9 MB
Progress (1): 0.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.3/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.4/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.5/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.6/1.9 MB
Progress (1): 0.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.8/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 0.9/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.0/1.9 MB
Progress (1): 1.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.3/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.4/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.5/1.9 MB
Progress (1): 1.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.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 MB    
                    
Downloaded from snapshot: https://oss.sonatype.org/content/repositories/snapshots/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-20240508.005026-1.jar (1.9 MB at 391 kB/s)
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ casper ---
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ casper ---
[WARNING] Using platform encoding (UTF8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /builds/workspace/casper/src/main/resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ casper ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF8, i.e. build is platform dependent!
[INFO] Compiling 80 source files to /builds/workspace/casper/target/classes
[INFO] -------------------------------------------------------------
[WARNING] COMPILATION WARNING : 
[INFO] -------------------------------------------------------------
[WARNING] /builds/workspace/casper/src/main/java/jav/lang/ObjectNullified.java: Some input files use or override a deprecated API.
[WARNING] /builds/workspace/casper/src/main/java/jav/lang/ObjectNullified.java: Recompile with -Xlint:deprecation for details.
[INFO] 2 warnings 
[INFO] -------------------------------------------------------------
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[3,13] cannot access spoon.Launcher
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/Launcher.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[4,24] cannot access spoon.processing.AbstractManualProcessor
  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/AbstractManualProcessor.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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[6,33] cannot access spoon.reflect.declaration.CtPackage
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtPackage.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[7,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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[10,50] cannot find symbol
  symbol: class AbstractManualProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[9,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[10,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[12,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[13,33] cannot access spoon.reflect.declaration.CtAnnotationType
  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/CtAnnotationType.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[14,33] cannot access spoon.reflect.declaration.CtField
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtField.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[15,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[16,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[17,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[18,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[19,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[20,34] cannot access spoon.support.reflect.code.CtFieldAccessImpl
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/code/CtFieldAccessImpl.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[21,39] cannot access spoon.support.reflect.reference.CtFieldReferenceImpl
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/reference/CtFieldReferenceImpl.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[24,36] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[24,54] cannot find symbol
  symbol: class CtField
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[32,29] cannot find symbol
  symbol:   class CtField
  location: class bcu.transformer.processors.FieldModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[14,34] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[14,52] cannot find symbol
  symbol: class CtInvocation
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[16,40] cannot find symbol
  symbol:   class CtInvocation
  location: class bcu.transformer.processors.TargetAdder
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[21,29] cannot find symbol
  symbol:   class CtInvocation
  location: class bcu.transformer.processors.TargetAdder
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/Helpers.java:[3,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/casper/src/main/java/bcu/transformer/processors/Helpers.java:[6,42] cannot find symbol
  symbol:   class SourcePosition
  location: class bcu.transformer.processors.Helpers
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[6,26] cannot access spoon.reflect.code.CtBinaryOperator
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBinaryOperator.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[16,41] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[16,59] cannot find symbol
  symbol: class CtBinaryOperator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[24,29] cannot find symbol
  symbol:   class CtBinaryOperator
  location: class bcu.transformer.processors.ComparizonModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[16,37] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[16,55] cannot find symbol
  symbol: class CtInvocation
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[19,29] cannot find symbol
  symbol:   class CtInvocation
  location: class bcu.transformer.processors.ParamProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[10,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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[14,26] cannot access spoon.reflect.code.CtLocalVariable
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLocalVariable.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[15,26] cannot access spoon.reflect.code.CtVariableAccess
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableAccess.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[16,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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[23,41] cannot access spoon.support.reflect.declaration.CtParameterImpl
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/declaration/CtParameterImpl.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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[27,40] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[27,58] cannot find symbol
  symbol: class CtMethod
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[37,29] cannot find symbol
  symbol:   class CtMethod
  location: class bcu.transformer.processors.ArgumentsModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[9,26] cannot access spoon.reflect.code.CtCatch
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCatch.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[11,26] cannot access spoon.reflect.code.CtFor
  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/CtFor.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/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[12,26] cannot access spoon.reflect.code.CtForEach
  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/CtForEach.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/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[25,39] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[25,57] cannot find symbol
  symbol: class CtLocalVariable
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[34,40] cannot find symbol
  symbol:   class CtLocalVariable
  location: class bcu.transformer.processors.VariableModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[40,29] cannot find symbol
  symbol:   class CtLocalVariable
  location: class bcu.transformer.processors.VariableModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[14,26] cannot access spoon.reflect.code.CtSuperAccess
  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/CtSuperAccess.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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[15,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[16,26] cannot access spoon.reflect.code.CtThisAccess
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThisAccess.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[17,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[27,37] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[27,55] cannot find symbol
  symbol: class CtTargetedExpression
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[36,29] cannot find symbol
  symbol:   class CtTargetedExpression
  location: class bcu.transformer.processors.TargetModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[12,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/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[22,37] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[22,55] cannot find symbol
  symbol: class CtReturn
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[30,29] cannot find symbol
  symbol:   class CtReturn
  location: class bcu.transformer.processors.ReturnModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[22,41] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[22,59] cannot find symbol
  symbol: class CtAssignment
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[30,29] cannot find symbol
  symbol:   class CtAssignment
  location: class bcu.transformer.processors.AssignmentModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[14,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/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[23,43] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[23,61] cannot find symbol
  symbol: class CtLiteral
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[25,40] cannot find symbol
  symbol:   class CtLiteral
  location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[37,29] cannot find symbol
  symbol:   class CtLiteral
  location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[72,44] cannot find symbol
  symbol:   class CtLiteral
  location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[72,17] cannot find symbol
  symbol:   class CtTypeReference
  location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/utils/NameResolver.java:[16,38] cannot find symbol
  symbol:   class CtExpression
  location: class bcu.utils.NameResolver
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[9,26] cannot access spoon.reflect.code.CtCodeSnippetExpression
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetExpression.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[10,26] cannot access spoon.reflect.code.CtCodeSnippetStatement
  bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetStatement.class)
    class file has wrong version 61.0, should be 55.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[11,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[12,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[14,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[19,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[20,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[25,40] cannot find symbol
  symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[25,58] cannot find symbol
  symbol: class CtClass
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[31,40] cannot find symbol
  symbol:   class CtClass
  location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[36,29] cannot find symbol
  symbol:   class CtClass
  location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[153,43] cannot find symbol
  symbol:   class CtClass
  location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[175,39] cannot find symbol
  symbol:   class CtClass
  location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[196,40] cannot find symbol
  symbol:   class CtClass
  location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[12,3] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[19,5] cannot find symbol
  symbol:   class CtPackage
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[19,22] cannot find symbol
  symbol:   method getFactory()
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[20,10] cannot find symbol
  symbol:   class CtPackage
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,48] cannot find symbol
  symbol:   class TypeFilter
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,59] cannot find symbol
  symbol:   class CtClass
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,68] cannot find symbol
  symbol:   class CtClass
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,14] cannot find symbol
  symbol:   class CtClass
  location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[26,9] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[31,9] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[33,51] cannot find symbol
  symbol:   class CtAnnotationType
  location: class bcu.transformer.processors.FieldModifier
[INFO] 100 errors 
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  16.170 s
[INFO] Finished at: 2024-05-08T10:23:31+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project casper: Compilation failure: Compilation failure: 
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[3,13] cannot access spoon.Launcher
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/Launcher.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[4,24] cannot access spoon.processing.AbstractManualProcessor
[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/AbstractManualProcessor.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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[6,33] cannot access spoon.reflect.declaration.CtPackage
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtPackage.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[7,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/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[10,50] cannot find symbol
[ERROR]   symbol: class AbstractManualProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[9,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[10,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[12,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[13,33] cannot access spoon.reflect.declaration.CtAnnotationType
[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/CtAnnotationType.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[14,33] cannot access spoon.reflect.declaration.CtField
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/declaration/CtField.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[15,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[16,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[17,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[18,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[19,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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[20,34] cannot access spoon.support.reflect.code.CtFieldAccessImpl
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/code/CtFieldAccessImpl.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[21,39] cannot access spoon.support.reflect.reference.CtFieldReferenceImpl
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/reference/CtFieldReferenceImpl.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/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[24,36] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[24,54] cannot find symbol
[ERROR]   symbol: class CtField
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[32,29] cannot find symbol
[ERROR]   symbol:   class CtField
[ERROR]   location: class bcu.transformer.processors.FieldModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[14,34] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[14,52] cannot find symbol
[ERROR]   symbol: class CtInvocation
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[16,40] cannot find symbol
[ERROR]   symbol:   class CtInvocation
[ERROR]   location: class bcu.transformer.processors.TargetAdder
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetAdder.java:[21,29] cannot find symbol
[ERROR]   symbol:   class CtInvocation
[ERROR]   location: class bcu.transformer.processors.TargetAdder
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/Helpers.java:[3,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/casper/src/main/java/bcu/transformer/processors/Helpers.java:[6,42] cannot find symbol
[ERROR]   symbol:   class SourcePosition
[ERROR]   location: class bcu.transformer.processors.Helpers
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[6,26] cannot access spoon.reflect.code.CtBinaryOperator
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtBinaryOperator.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[16,41] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[16,59] cannot find symbol
[ERROR]   symbol: class CtBinaryOperator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ComparizonModifier.java:[24,29] cannot find symbol
[ERROR]   symbol:   class CtBinaryOperator
[ERROR]   location: class bcu.transformer.processors.ComparizonModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[16,37] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[16,55] cannot find symbol
[ERROR]   symbol: class CtInvocation
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ParamProcessor.java:[19,29] cannot find symbol
[ERROR]   symbol:   class CtInvocation
[ERROR]   location: class bcu.transformer.processors.ParamProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[10,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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[14,26] cannot access spoon.reflect.code.CtLocalVariable
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtLocalVariable.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[15,26] cannot access spoon.reflect.code.CtVariableAccess
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtVariableAccess.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[16,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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[23,41] cannot access spoon.support.reflect.declaration.CtParameterImpl
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/support/reflect/declaration/CtParameterImpl.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/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[27,40] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[27,58] cannot find symbol
[ERROR]   symbol: class CtMethod
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ArgumentsModifier.java:[37,29] cannot find symbol
[ERROR]   symbol:   class CtMethod
[ERROR]   location: class bcu.transformer.processors.ArgumentsModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[9,26] cannot access spoon.reflect.code.CtCatch
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCatch.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[11,26] cannot access spoon.reflect.code.CtFor
[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/CtFor.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/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[12,26] cannot access spoon.reflect.code.CtForEach
[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/CtForEach.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/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[25,39] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[25,57] cannot find symbol
[ERROR]   symbol: class CtLocalVariable
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[34,40] cannot find symbol
[ERROR]   symbol:   class CtLocalVariable
[ERROR]   location: class bcu.transformer.processors.VariableModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/VariableModifier.java:[40,29] cannot find symbol
[ERROR]   symbol:   class CtLocalVariable
[ERROR]   location: class bcu.transformer.processors.VariableModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[8,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[14,26] cannot access spoon.reflect.code.CtSuperAccess
[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/CtSuperAccess.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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[15,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[16,26] cannot access spoon.reflect.code.CtThisAccess
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtThisAccess.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[17,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/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[27,37] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[27,55] cannot find symbol
[ERROR]   symbol: class CtTargetedExpression
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/TargetModifier.java:[36,29] cannot find symbol
[ERROR]   symbol:   class CtTargetedExpression
[ERROR]   location: class bcu.transformer.processors.TargetModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[12,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/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[22,37] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[22,55] cannot find symbol
[ERROR]   symbol: class CtReturn
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/ReturnModifier.java:[30,29] cannot find symbol
[ERROR]   symbol:   class CtReturn
[ERROR]   location: class bcu.transformer.processors.ReturnModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[22,41] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[22,59] cannot find symbol
[ERROR]   symbol: class CtAssignment
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/AssignmentModifier.java:[30,29] cannot find symbol
[ERROR]   symbol:   class CtAssignment
[ERROR]   location: class bcu.transformer.processors.AssignmentModifier
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[14,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/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[23,43] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[23,61] cannot find symbol
[ERROR]   symbol: class CtLiteral
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[25,40] cannot find symbol
[ERROR]   symbol:   class CtLiteral
[ERROR]   location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[37,29] cannot find symbol
[ERROR]   symbol:   class CtLiteral
[ERROR]   location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[72,44] cannot find symbol
[ERROR]   symbol:   class CtLiteral
[ERROR]   location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/NullLiteralProcessor.java:[72,17] cannot find symbol
[ERROR]   symbol:   class CtTypeReference
[ERROR]   location: class bcu.transformer.processors.NullLiteralProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/utils/NameResolver.java:[16,38] cannot find symbol
[ERROR]   symbol:   class CtExpression
[ERROR]   location: class bcu.utils.NameResolver
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[9,26] cannot access spoon.reflect.code.CtCodeSnippetExpression
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetExpression.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[10,26] cannot access spoon.reflect.code.CtCodeSnippetStatement
[ERROR]   bad class file: /builds/.m2/repository/fr/inria/gforge/spoon/spoon-core/11.0.1-SNAPSHOT/spoon-core-11.0.1-SNAPSHOT.jar(/spoon/reflect/code/CtCodeSnippetStatement.class)
[ERROR]     class file has wrong version 61.0, should be 55.0
[ERROR]     Please remove or make sure it appears in the correct subdirectory of the classpath.
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[11,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[12,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[14,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[19,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[20,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/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[25,40] cannot find symbol
[ERROR]   symbol: class AbstractProcessor
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[25,58] cannot find symbol
[ERROR]   symbol: class CtClass
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[31,40] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[36,29] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[153,43] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[175,39] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/GhostClassCreator.java:[196,40] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class bcu.transformer.processors.GhostClassCreator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[12,3] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[19,5] cannot find symbol
[ERROR]   symbol:   class CtPackage
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[19,22] cannot find symbol
[ERROR]   symbol:   method getFactory()
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[20,10] cannot find symbol
[ERROR]   symbol:   class CtPackage
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,48] cannot find symbol
[ERROR]   symbol:   class TypeFilter
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,59] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,68] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/sacha/utils/SachaDocumentationGenerator.java:[22,14] cannot find symbol
[ERROR]   symbol:   class CtClass
[ERROR]   location: class sacha.utils.SachaDocumentationGenerator
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[26,9] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[31,9] method does not override or implement a method from a supertype
[ERROR] /builds/workspace/casper/src/main/java/bcu/transformer/processors/FieldModifier.java:[33,51] cannot find symbol
[ERROR]   symbol:   class CtAnnotationType
[ERROR]   location: class bcu.transformer.processors.FieldModifier
[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
Finished: FAILURE