[
  {
    "path": ".codeclimate.yml",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n---\nengines:\n  duplication:\n    enabled: true\n    config:\n      languages:\n      - python\n  fixme:\n    enabled: true\n  radon:\n    enabled: true\n    config:\n      python_version: 2\nratings:\n  paths:\n  - \"**.py\"\nexclude_paths:\n- tests/\n"
  },
  {
    "path": ".coveragerc",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[report]\nexclude_lines =\n    no cover\n    if __name__  == .__main__.:\n    def __repr__\n"
  },
  {
    "path": ".editorconfig",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nroot = true\n\n[*]\ncharset = UTF-8\nend_of_line = lf\nmax_line_length=120\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.py]\nindent_style = space\nindent_size = 4\n\n[tox.ini]\nindent_size = 1\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\n\nupdates:\n\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: weekly\n\n  - package-ecosystem: pip\n    directory: \"/\"\n    schedule:\n      interval: weekly\n"
  },
  {
    "path": ".github/workflows/benchmarks.yml",
    "content": "name: Benchmarks\n\non: [push, pull_request]\n\njobs:\n  benchmark:\n\n    name: 'benchmarks'\n\n    runs-on: 'ubuntu-latest'\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Set up Python\n        uses: actions/setup-python@v4\n        with:\n          python-version: '3.10'\n\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install tox\n\n      - name: Run benchmarks\n        run: tox -e benchmarks\n"
  },
  {
    "path": ".github/workflows/lint.yml",
    "content": "name: Lint\n\non: [push, pull_request]\n\njobs:\n  lint:\n\n    name: 'lint'\n\n    runs-on: 'ubuntu-latest'\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Set up Python\n        uses: actions/setup-python@v4\n        with:\n          python-version: '3.10'\n\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install tox\n\n      - name: Run checks\n        run: tox -e lint\n"
  },
  {
    "path": ".github/workflows/packages.yml",
    "content": "name: Packages\n\non:\n  push:\n  pull_request:\n  release:\n    types: [released]\n\njobs:\n\n  python-packages:\n\n    name: 'wheel'\n\n    runs-on: 'ubuntu-latest'\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Set up Python\n        uses: actions/setup-python@v4\n        with:\n          python-version: '3.10'\n\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install wheel\n\n      - name: Build source distribution and wheel package\n        run: python setup.py sdist bdist_wheel\n\n      - name: Publish on PyPI repository\n        if: github.event_name == 'release' && github.event.action == 'released'\n        uses: pypa/gh-action-pypi-publish@release/v1\n        with:\n          user: __token__\n          password: ${{ secrets.PYPI_API_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/tests.yml",
    "content": "name: Tests\n\non: [push, pull_request]\n\njobs:\n  test:\n\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ 'ubuntu-latest', 'macos-latest' ]\n        python: [ '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8' ]\n\n    runs-on: ${{ matrix.os }}\n\n    name: ${{ matrix.os }} - python ${{ matrix.python }}\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Set up Python ${{ matrix.python }}\n        uses: actions/setup-python@v4\n        with:\n          python-version: ${{ matrix.python }}\n\n      - name: Set up pip cache\n        uses: actions/cache@v2\n        with:\n          path: ~/.cache/pip\n          key: ${{ matrix.os }}-pip\n\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install tox tox-gh-actions\n\n      - name: Run tests\n        run: tox\n\n      - name: Publish code coverage to CodeClimate\n        uses: paambaati/codeclimate-action@v3.0.0\n        if: matrix.os == 'ubuntu-latest' && matrix.python == '3.10'\n        continue-on-error: true\n        with:\n          coverageLocations: ${{github.workspace}}/build/tests/*/reports/coverage.xml:coverage.py\n        env:\n          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n*.pyc\n*.pyo\n*.pyd\n*$py.class\n__pycache__/\nbuild/\ndist/\nMANIFEST\n*.egg-info/\n*.egg/\n.tox/\n.cache/\n.idea/\n*.ipr\n*.iws\n.coverage\n.benchmarks\n.coverage.*\nout/\n.pytest_cache/\n*.rpm\n*.deb\n*.tar.*\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "Contributing\n============\n\nContributions are welcome, please take a look at the [issues list](https://github.com/nicoulaj/rainbow/issues).\n\n\nDevelopment environment\n-----------------------\n\nThis project uses a standard layout. Here are some example steps to setup\nyour development environment using [pew](https://github.com/berdario/pew):\n\n1. Checkout project sources:\n\n        git clone https://github.com/nicoulaj/rainbow.git\n        cd rainbow\n\n2. To run tests, rainbow uses [tox](https://tox.readthedocs.io):\n\n        tox\n\n   This will run all the tests, for all python versions. To run tests for\n   one specific version:\n\n        tox -e py27\n\n   After you run tests, results (test, coverage and benchmark HTML reports) will be available in the `build/tests` directory.\n\n\nCommands wishlist\n-----------------\n\nThis table contains an inventory of commands we could potentially support in rainbow, with their current status.\nIf you want to request and/or plan to working on one, please send a pull request to update this table.\n\n| command / format     | rainbow support      | third party support                      | status                               |\n| -------------------- | -------------------- | ---------------------------------------- | ------------------------------------ |\n| acpi                 | :x:                  | cope                                     |                                      |\n| ant                  | :x:                  | builtin color support, colorlogs         | :ok:                                 |\n| apm                  | :x:                  | ccze                                     |                                      |\n| arp                  | :x:                  | cope, cwrapper                           |                                      |\n| arping               | :x:                  | cwrapper                                 |                                      |\n| auth.log             | :x:                  | cwrapper                                 |                                      |\n| blockdev             | :x:                  | cwrapper                                 |                                      |\n| cal                  | :x:                  | cwrapper                                 |                                      |\n| cc                   | :x:                  | cope                                     | rainbow config needed                |\n| cksum                | :x:                  | cwrapper                                 | rainbow config needed                |\n| clock                | :x:                  | cwrapper                                 |                                      |\n| configure            | :x:                  | cwrapper, grc                            | rainbow config needed                |\n| cpuinfo              | :x:                  | cwrapper                                 | rainbow config needed                |\n| crontab              | :x:                  | cwrapper                                 |                                      |\n| cvs                  | :x:                  | colorcvs, grc                            |                                      |\n| date                 | :x:                  | cwrapper                                 |                                      |\n| df                   | :heavy_check_mark:   | dfc, cope, cwrapper, grc                 | :ok:                                 |\n| diff                 | :heavy_check_mark:   | colordiff, grc, cwrapper                 | :ok:                                 |\n| dig                  | :x:                  | cwrapper                                 | rainbow config needed                |\n| distcc               | :x:                  | ccze                                     |                                      |\n| dmesg                | :x:                  | cwrapper                                 |                                      |\n| dpkg                 | :x:                  | ccze                                     |                                      |\n| dprofpp              | :x:                  | cope                                     |                                      |\n| du                   | :x:                  | cwrapper                                 |                                      |\n| env                  | :heavy_check_mark:   | cwrapper                                 | :ok:                                 |\n| esperanto            | :x:                  | grc                                      |                                      |\n| example              | :x:                  | colorlogs                                |                                      |\n| exim                 | :x:                  | ccze                                     |                                      |\n| fdisk                | :x:                  | cope                                     |                                      |\n| fetchmail            | :x:                  | ccze                                     |                                      |\n| figlet               | :x:                  | cwrapper                                 |                                      |\n| file                 | :x:                  | cwrapper                                 |                                      |\n| find                 | :x:                  | cwrapper                                 | rainbow config needed                |\n| finger               | :x:                  | cwrapper                                 |                                      |\n| free                 | :x:                  | cwrapper, cope                           | rainbow config needed                |\n| fstab                | :x:                  | cwrapper                                 |                                      |\n| ftpstats             | :x:                  | ccze                                     |                                      |\n| fuser                | :x:                  | cwrapper                                 |                                      |\n| gcc                  | :x:                  | colorgcc, cope, cwrapper, grc            |                                      |\n| g++                  | :x:                  | cwrapper, cope                           |                                      |\n| git                  | :x:                  | partial builtin color support, colorlogs |                                      |\n| group                | :x:                  | cwrapper                                 |                                      |\n| groups               | :x:                  | cwrapper                                 |                                      |\n| hdparm               | :x:                  | cwrapper                                 |                                      |\n| hexdump              | :x:                  | cwrapper                                 |                                      |\n| host                 | :heavy_check_mark:   | cwrapper                                 | :ok:                                 |\n| hosts                | :x:                  | cwrapper                                 |                                      |\n| httpd                | :x:                  | ccze                                     |                                      |\n| icecast              | :x:                  | ccze                                     |                                      |\n| id                   | :x:                  | cope, cwrapper                           | rainbow config needed                |\n| ifconfig             | :heavy_check_mark:   | cwrapper, cope                           | :ok:                                 |\n| inittab              | :x:                  | cwrapper                                 |                                      |\n| iptables             | :x:                  | cwrapper                                 |                                      |\n| irclog               | :x:                  | grc                                      |                                      |\n| java stack traces    | :heavy_check_mark:   |                                          | :ok:                                 |\n| last                 | :x:                  | cwrapper                                 |                                      |\n| lastlog              | :x:                  | cwrapper                                 |                                      |\n| ldap                 | :x:                  | grc                                      |                                      |\n| log                  | :x:                  | grc                                      |                                      |\n| lsattr               | :x:                  | cwrapper                                 |                                      |\n| ls                   | :x:                  | dircolors, cope                          |                                      |\n| lsmod                | :x:                  | cwrapper                                 |                                      |\n| lsof                 | :x:                  | cwrapper                                 | rainbow config needed                |\n| lspci                | :x:                  | cope                                     |                                      |\n| lsusb                | :x:                  | cope                                     |                                      |\n| ltrace-color         | :x:                  | cwrapper                                 |                                      |\n| make                 | :x:                  | colormake, cwrapper, cope                | rainbow config needed                |\n| md5sum               | :heavy_check_mark:   | cwrapper, cope                           | :ok:                                 |\n| meminfo              | :x:                  | cwrapper                                 |                                      |\n| messages             | :x:                  | cwrapper                                 |                                      |\n| mount                | :x:                  | grc, cwrapper                            | rainbow config needed                |\n| mpc                  | :x:                  | cope                                     |                                      |\n| mpg123               | :x:                  | cwrapper                                 |                                      |\n| mvn                  | :heavy_check_mark:   | colorslogs                               | :ok:                                 |\n| netstat              | :x:                  | grc, cope, cwrapper                      | rainbow config needed                |\n| nfsstat              | :x:                  | cwrapper                                 | rainbow config needed                |\n| nmap                 | :x:                  | cwrapper, cope                           |                                      |\n| nm                   | :x:                  | cope                                     |                                      |\n| nocope               | :x:                  | cope                                     |                                      |\n| nslookup             | :x:                  | cwrapper                                 |                                      |\n| objdump              | :x:                  | cwrapper                                 |                                      |\n| oops                 | :x:                  | ccze                                     |                                      |\n| passwd               | :x:                  | cwrapper                                 |                                      |\n| php                  | :x:                  | ccze                                     |                                      |\n| ping                 | :heavy_check_mark:   | grc, cwrapper, cope                      | :ok:                                 |\n| pmap                 | :x:                  | cwrapper, cope                           |                                      |\n| pmap_dump            | :x:                  | cwrapper                                 |                                      |\n| postfix              | :x:                  | ccze                                     |                                      |\n| praliases            | :x:                  | cwrapper                                 |                                      |\n| procmail             | :x:                  | ccze                                     |                                      |\n| proftpd              | :x:                  | grc, ccze                                |                                      |\n| ps                   | :x:                  | cwrapper, cope                           | rainbow config needed                |\n| pstree               | :x:                  | cwrapper                                 | rainbow config needed                |\n| quota                | :x:                  | cwrapper                                 |                                      |\n| quotastats           | :x:                  | cwrapper                                 |                                      |\n| readelf              | :x:                  | cope                                     |                                      |\n| resolv               | :x:                  | cwrapper                                 |                                      |\n| route                | :x:                  | cwrapper, cope                           |                                      |\n| routel               | :x:                  | cwrapper                                 |                                      |\n| screen               | :x:                  | cope                                     |                                      |\n| sdiff                | :x:                  | cwrapper                                 |                                      |\n| services             | :x:                  | cwrapper                                 |                                      |\n| sha1sum              | :x:                  | cope                                     | rainbow config needed                |\n| sha224sum            | :x:                  | cope                                     | rainbow config needed                |\n| sha256sum            | :x:                  | cope                                     | rainbow config needed                |\n| sha384sum            | :x:                  | cope                                     | rainbow config needed                |\n| sha512sum            | :x:                  | cope                                     | rainbow config needed                |\n| shasum               | :x:                  | cope                                     | rainbow config needed                |\n| showmount            | :x:                  | cwrapper                                 |                                      |\n| smbstatus            | :x:                  | cwrapper                                 |                                      |\n| socklist             | :x:                  | cope                                     |                                      |\n| squid                | :x:                  | ccze                                     |                                      |\n| stat                 | :x:                  | cwrapper, cope                           |                                      |\n| strace               | :x:                  | cope                                     | rainbow config needed                |\n| sulog                | :x:                  | ccze                                     |                                      |\n| super                | :x:                  | ccze                                     |                                      |\n| svn                  | :x:                  | colorsvn                                 |                                      |\n| sysctl               | :x:                  | cwrapper                                 |                                      |\n| syslog               | :x:                  | cwrapper, ccze                           |                                      |\n| tar                  | :x:                  | cwrapper                                 |                                      |\n| tcpdump              | :x:                  | cwrapper, cope                           |                                      |\n| tomcat               | :heavy_check_mark:   |                                          | :ok:                                 |\n| tracepath            | :x:                  | cwrapper, cope                           |                                      |\n| traceroute           | :heavy_check_mark:   | cope, grc, cwrapper                      | :ok:                                 |\n| ulogd                | :x:                  | ccze                                     |                                      |\n| umount               | :x:                  | cwrapper                                 |                                      |\n| uname                | :x:                  | cwrapper                                 |                                      |\n| uptime               | :x:                  | cwrapper                                 |                                      |\n| users                | :x:                  | cwrapper                                 |                                      |\n| vmstat               | :x:                  | cwrapper                                 |                                      |\n| vsftpd               | :x:                  | ccze                                     |                                      |\n| wc                   | :x:                  | cwrapper                                 |                                      |\n| w                    | :x:                  | cwrapper, cope                           |                                      |\n| wdiff                | :x:                  | grc                                      |                                      |\n| wget                 | :x:                  | cope                                     |                                      |\n| whereis              | :x:                  | cwrapper                                 |                                      |\n| who                  | :x:                  | cwrapper, cope                           |                                      |\n| xferlog              | :x:                  | cwrapper, ccze                           |                                      |\n| xrandr               | :x:                  | cope                                     |                                      |\n"
  },
  {
    "path": "COPYING",
    "content": "\n\t\t    GNU GENERAL PUBLIC LICENSE\n\t\t       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\t\t\t    Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n\t\t       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n \n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n  \n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n\t\t     END OF TERMS AND CONDITIONS\n\n\t    How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n\n"
  },
  {
    "path": "MANIFEST.in",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\ninclude README.rst\ninclude COPYING\ninclude templates/*\ninclude scripts/*\ninclude rainbow/config/builtin/*\n"
  },
  {
    "path": "README.rst",
    "content": "rainbow\n=======\n\n.. image:: https://img.shields.io/github/tag/nicoulaj/rainbow.svg\n   :target: https://pypi.org/project/rainbow\n   :alt: last release\n\n.. image:: https://pepy.tech/badge/rainbow\n   :target: https://pypi.org/project/rainbow\n   :alt: downloads\n\n.. image:: https://img.shields.io/pypi/pyversions/rainbow.svg\n   :target: https://pypi.org/project/rainbow\n   :alt: python versions\n\n.. image:: https://github.com/nicoulaj/rainbow/actions/workflows/tests.yml/badge.svg\n   :target: https://github.com/nicoulaj/rainbow/actions\n   :alt: continuous integration\n\n.. image:: https://api.codeclimate.com/v1/badges/724f29330eb898c7516b/test_coverage\n   :target: https://codeclimate.com/github/nicoulaj/rainbow/test_coverage\n   :alt: test Coverage\n\n.. image:: https://badges.gitter.im/nicoulaj/rainbow.svg\n   :target: https://gitter.im/nicoulaj/rainbow\n   :alt: gitter chat\n\n----\n\n**Easily colorize commands output using patterns.**\n::\n\n  rainbow [ --COLOR=PATTERN ... | --conf CONF ] COMMAND\n\n\nExamples\n--------\n\nUsing the command line\n~~~~~~~~~~~~~~~~~~~~~~\nPrepend ``rainbow`` with ``--COLOR=PATTERN`` associations to your\ncommand, for example:\n\n-  Tail some log file with lines containing ``ERROR`` in red:\n   ::\n\n     rainbow --red=ERROR tail -f /var/log/my.log\n\n-  You can also pipe commands output into rainbow:\n   ::\n\n     tail -f /var/log/my.log | rainbow --red=ERROR\n\n\nUsing configs\n~~~~~~~~~~~~~\n\nRainbow can load configuration for each command from files, which is the most convenient way to use it. When running ``rainbow mycommand``, rainbow will automatically look for a config named ``mycommand.cfg`` in ``~/.config/rainbow``, ``~/.rainbow``, ``/etc/rainbow``, or builtin configs:\n\n-  Colorize the ``diff`` command output using the builtin config:\n   ::\n\n     rainbow diff file1 file2\n\n-  Start my custom command, using ``~/.rainbow/mycommand.cfg``:\n   ::\n\n     rainbow mycommand\n\nThe syntax for writing configs is straightforward, see the\n`builtin configs <https://github.com/nicoulaj/rainbow/blob/master/rainbow/config/builtin>`_\nfor examples. See also the `commands support table <https://github.com/nicoulaj/rainbow/blob/master/CONTRIBUTING.md>`_.\n\n\nInstallation\n------------\n\nUsing packages\n~~~~~~~~~~~~~~\n\n============================================  ============================================\n System                                        Installation instructions\n============================================  ============================================\n Debian / RPM based                            `rainbow repository <https://software.opensuse.org/download.html?project=home%3Anicoulaj%3Arainbow&package=rainbow>`_ (`sources here <https://build.opensuse.org/package/show/home:nicoulaj:rainbow/rainbow>`_)\n Arch Linux                                    `AUR/rainbow <https://aur.archlinux.org/packages/rainbow>`_ / `AUR/rainbow-git <https://aur.archlinux.org/packages/rainbow-git>`_\n pip                                           `PyPI: rainbow <https://pypi.org/project/rainbow>`_\n============================================  ============================================\n\n\nBuilding from sources\n~~~~~~~~~~~~~~~~~~~~~\n\nYou can build from sources this way:\n\n::\n\n    git clone git://github.com/nicoulaj/rainbow.git\n    cd rainbow\n    python setup.py build install --user\n\n\nContributing\n------------\n\nContributions are welcome, please see `CONTRIBUTING <https://github.com/nicoulaj/rainbow/blob/master/CONTRIBUTING.md>`_.\n\n\nLicense\n-------\n\nThis project is a fork of `Linibou's colorex <http://bitbucket.org/linibou/colorex>`_.\nIt is is released under the terms of the `GNU General Public\nLicense <http://www.gnu.org/licenses/gpl.html>`_. See ``COPYING`` for\ndetails.\n"
  },
  {
    "path": "rainbow/__init__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport sys\n\nimport logging\nimport os\n\n__prog__ = __name__\n__author__ = 'Julien Nicoulaud'\n__email__ = 'julien.nicoulaud@gmail.com'\n__url__ = 'https://github.com/nicoulaj/rainbow'\n__copyright__ = 'copyright 2010-2018 rainbow contributors'\n__license__ = 'GPLv3'\n__description__ = 'Colorize commands output using patterns.'\n__version__ = '3.0.0-dev'\n\nLOGGER = logging.getLogger(__prog__)\n\nDEFAULT_PATH = [\n    os.environ.get('RAINBOW_CONFIGS'),\n    os.path.join(os.environ.get('XDG_CONFIG_HOME') or os.path.expanduser('~/.config'), __prog__),\n    os.path.join(os.path.expanduser('~'), '.' + __prog__),\n    os.path.join(os.sep, 'etc', __prog__),\n    os.path.join(os.sep, os.path.dirname(__file__), 'config', 'builtin')\n]\n\nENABLE_STDOUT = bool(os.environ.get('RAINBOW_ENABLE_STDOUT', sys.stdout.isatty()))\nENABLE_STDERR = bool(os.environ.get('RAINBOW_ENABLE_STDERR', sys.stderr.isatty()))\n"
  },
  {
    "path": "rainbow/__main__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport sys\nimport logging\nfrom logging import Formatter\n\nimport rainbow\nfrom . import LOGGER, DEFAULT_PATH\nfrom .cli import CommandLineParser\nfrom .transformer import DummyTransformerBuilder\n\n\ndef main(args=None):\n    logger_console_handler = logging.StreamHandler(sys.stderr)\n    try:\n        logger_console_handler.setFormatter(Formatter(\"%(levelname)s %(message)s\"))\n        logging.addLevelName(logging.CRITICAL, 'rainbow error:')\n        logging.addLevelName(logging.FATAL, 'rainbow error:')\n        logging.addLevelName(logging.ERROR, 'rainbow error:')\n        logging.addLevelName(logging.WARNING, 'rainbow warning:')\n        logging.addLevelName(logging.INFO, 'rainbow:')\n        logging.addLevelName(logging.DEBUG, 'rainbow:')\n        logging.addLevelName(logging.NOTSET, 'rainbow:')\n        LOGGER.addHandler(logger_console_handler)\n        LOGGER.setLevel(logging.WARNING)\n\n        errors = []\n\n        parser = CommandLineParser(\n            paths=DEFAULT_PATH,\n            stdout_builder=None if rainbow.ENABLE_STDOUT else DummyTransformerBuilder(),\n            stderr_builder=None if rainbow.ENABLE_STDERR else DummyTransformerBuilder(),\n            error_handler=errors.append\n        )\n\n        command = parser.parse_args(args)\n\n        if command:\n            for message in errors:\n                LOGGER.warning(message)\n            return command.run()\n\n        else:\n            for message in errors:\n                LOGGER.error(message)\n            LOGGER.setLevel(logging.INFO)\n            LOGGER.info(parser.get_usage())\n            return 1\n\n    except Exception as e:\n        LOGGER.exception(e)\n        return 1\n    finally:\n        LOGGER.removeHandler(logger_console_handler)\n        LOGGER.setLevel(logging.INFO)\n"
  },
  {
    "path": "rainbow/ansi.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nANSI_FOREGROUND_RED = chr(27) + '[31m'\nANSI_FOREGROUND_LIGHT_RED = chr(27) + '[91m'\nANSI_FOREGROUND_GREEN = chr(27) + '[32m'\nANSI_FOREGROUND_LIGHT_GREEN = chr(27) + '[92m'\nANSI_FOREGROUND_YELLOW = chr(27) + '[33m'\nANSI_FOREGROUND_LIGHT_YELLOW = chr(27) + '[93m'\nANSI_FOREGROUND_BLUE = chr(27) + '[34m'\nANSI_FOREGROUND_LIGHT_BLUE = chr(27) + '[94m'\nANSI_FOREGROUND_MAGENTA = chr(27) + '[35m'\nANSI_FOREGROUND_CYAN = chr(27) + '[36m'\nANSI_FOREGROUND_LIGHT_CYAN = chr(27) + '[96m'\nANSI_FOREGROUND_RESET = chr(27) + '[39m'\n\nANSI_BACKGROUND_RED = chr(27) + '[41m'\nANSI_BACKGROUND_LIGHT_RED = chr(27) + '[101m'\nANSI_BACKGROUND_GREEN = chr(27) + '[42m'\nANSI_BACKGROUND_LIGHT_GREEN = chr(27) + '[102m'\nANSI_BACKGROUND_YELLOW = chr(27) + '[43m'\nANSI_BACKGROUND_LIGHT_YELLOW = chr(27) + '[103m'\nANSI_BACKGROUND_BLUE = chr(27) + '[44m'\nANSI_BACKGROUND_LIGHT_BLUE = chr(27) + '[104m'\nANSI_BACKGROUND_MAGENTA = chr(27) + '[45m'\nANSI_BACKGROUND_CYAN = chr(27) + '[46m'\nANSI_BACKGROUND_LIGHT_CYAN = chr(27) + '[106m'\nANSI_BACKGROUND_RESET = chr(27) + '[49m'\n\nANSI_BOLD = chr(27) + '[1m'\nANSI_FAINT = chr(27) + '[2m'\nANSI_ITALIC = chr(27) + '[3m'\nANSI_UNDERLINE = chr(27) + '[4m'\nANSI_UNDERLINE_DOUBLE = chr(27) + '[21m'\nANSI_BLINK = chr(27) + '[5m'\nANSI_BLINK_RAPID = chr(27) + '[6m'\nANSI_NEGATIVE = chr(27) + '[7m'\nANSI_HIDE = chr(27) + '[8m'\nANSI_RESET_INTENSITY = chr(27) + '[22m'\nANSI_RESET_ITALIC = chr(27) + '[23m'\nANSI_RESET_UNDERLINE = chr(27) + '[24m'\nANSI_RESET_BLINK = chr(27) + '[25m'\nANSI_RESET_NEGATIVE = chr(27) + '[27m'\nANSI_RESET_HIDE = chr(27) + '[28m'\n\nANSI_RESET_ALL = chr(27) + '[0m'\n"
  },
  {
    "path": "rainbow/build.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport errno\n\nimport gzip\nimport logging\nimport os\nimport shutil\nfrom distutils.command.build import build\nfrom distutils.command.clean import clean\nfrom distutils.core import Command\nfrom distutils.dir_util import remove_tree\nfrom distutils.errors import DistutilsOptionError\n\nfrom .filter import FILTERS, FILTER_GROUPS\n\n\nclass Build(build):  # no cover\n    def run(self):\n        self.run_command(\"build_completion_bash\")\n        self.run_command(\"build_completion_zsh\")\n        self.run_command(\"build_man_page\")\n        build.run(self)\n\n\nclass Clean(clean):  # no cover\n\n    def __init__(self, dist):\n        clean.__init__(self, dist)\n        self.user_options += [\n            ('paths=', 'p', 'paths'),\n        ]\n\n    def initialize_options(self):\n        super(clean, self).initialize_options()\n        self.paths = None\n\n    def finalize_options(self):\n        clean.finalize_options(self)\n        if self.paths is None:  # no cover\n            raise DistutilsOptionError('\"paths\" option is required')\n\n    def run(self):\n        clean.run(self)\n        if self.all:\n            for path in [path.strip() for path in self.paths.split(',')]:\n                if os.path.isdir(path):\n                    remove_tree(path)\n                elif os.path.isfile(path):\n                    self.announce(\"removing '%s'\" % path)\n                    os.remove(path)\n                else:\n                    self.announce(\"'%s' does not exist -- can't clean it\" % path)\n\n\nclass GenerateCompletion(Command):\n    description = 'Generate shell completion script.'\n\n    user_options = [\n        ('shell=', 'S', 'shell (bash or zsh)'),\n        ('output=', 'O', 'output file')\n    ]\n\n    def initialize_options(self):\n        self.shell = None\n        self.output = None\n\n    def finalize_options(self):\n        if self.shell is None:  # no cover\n            raise DistutilsOptionError('\"shell\" option is required')\n        if self.output is None:  # no cover\n            raise DistutilsOptionError('\"output\" option is required')\n\n    def run(self):\n        self.announce('generating %s completion -> %s' % (self.shell, self.output))\n\n        makeparentdirs(self.output)\n\n        try:\n            from jinja2 import Environment, FileSystemLoader\n            Environment(loader=FileSystemLoader('templates')) \\\n                .get_template('completion.%s' % self.shell) \\\n                .stream(filters=FILTERS) \\\n                .dump(self.output)\n        except ImportError:\n            logging.warning('Jinja is not installed, skipping %s completion generation' % self.shell)\n\n\nclass GenerateManPage(Command):\n    description = 'Generate man page.'\n\n    user_options = [\n        ('output=', 'O', 'output file')\n    ]\n\n    def initialize_options(self):\n        self.output = None\n\n    def finalize_options(self):\n        if self.output is None:  # no cover\n            raise DistutilsOptionError('\"output\" option is required')\n\n    def run(self):\n        self.announce('generating man page -> %s' % self.output)\n\n        makeparentdirs(self.output)\n\n        try:\n            from jinja2 import Environment, FileSystemLoader\n            Environment(loader=FileSystemLoader('templates')) \\\n                .get_template('rainbow.man') \\\n                .stream(filter_groups=FILTER_GROUPS) \\\n                .dump(self.output)\n\n            file_in = None\n            file_out = None\n            try:\n                file_in = open(self.output, 'rb')\n                file_out = gzip.open(self.output + '.gz', 'wb')\n                shutil.copyfileobj(file_in, file_out)\n            finally:\n                if file_in:\n                    file_in.close()\n                if file_out:\n                    file_out.close()\n        except ImportError:\n            logging.warning('Jinja is not installed, skipping man page generation')\n\n\ndef makeparentdirs(path):\n    directory = os.path.dirname(path)\n    if not os.path.exists(directory):  # no cover\n        try:\n            os.makedirs(directory)\n        except OSError as e:\n            if e.errno != errno.EEXIST:\n                raise\n"
  },
  {
    "path": "rainbow/cli.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport sys\nfrom optparse import OptionParser, OptionGroup, BadOptionError, AmbiguousOptionError\n\nfrom . import __version__, __description__, LOGGER, DEFAULT_PATH\nfrom .command.execute import ExecuteCommand\nfrom .command.noop import NoOpCommand\nfrom .command.print_config_names import PrintConfigNamesCommand\nfrom .command.print_path import PrintPathCommand\nfrom .command.stdin import STDINCommand\nfrom .config.loader import ConfigLoader\nfrom .filter import FILTER_GROUPS, FILTERS_BY_LONG_OPTION\nfrom .transformer import TransformerBuilder, IdentityTransformer\n\n\nclass CommandLineParser(OptionParser):\n    def __init__(self,\n                 paths=None,\n                 stdout_builder=None,\n                 stderr_builder=None,\n                 error_handler=lambda error: None):\n        OptionParser.__init__(self,\n                              usage='%prog [options] -- command [args...] ',\n                              version='%prog ' + __version__,\n                              description=__description__)\n        self.disable_interspersed_args()\n        self.formatter.max_help_position = 50\n        self.formatter.width = 150\n        self.command = None\n        self.stdout_builder = stdout_builder or TransformerBuilder()\n        self.stderr_builder = stderr_builder or TransformerBuilder()\n        self.error_handler = error_handler\n        self.config_loader = ConfigLoader(self.stdout_builder, self.stderr_builder, paths, error_handler)\n        self.add_option('-f',\n                        '--config',\n                        action='callback',\n                        callback=self.handle_config_option,\n                        type='string',\n                        help='Load a config file defining patterns. '\n                             'This option can be called several times.')\n        self.add_option('-v',\n                        '--verbose',\n                        action='callback',\n                        callback=self.handle_verbosity_option,\n                        help='Turn on verbose mode. '\n                             'This option can be called several times to increase the verbosity level.')\n        self.add_option('--print-path',\n                        action='callback',\n                        callback=self.handle_print_path_option,\n                        help='Print config paths.')\n        self.add_option('--print-config-names',\n                        action='callback',\n                        callback=self.handle_print_config_names_option,\n                        help='Print config names.')\n        self.add_option('--disable-stderr-filtering',\n                        action='store_false',\n                        dest='enable_stderr_filtering',\n                        default=True,\n                        help='Disable STDERR filtering, which can have unexpected effects on command directly '\n                             'using tty.')\n\n        for group in FILTER_GROUPS:\n            option_group = OptionGroup(self, group.name, group.help)\n            for f in group.filters:\n                if f.short_option:\n                    option_group.add_option('-' + f.short_option,\n                                            '--' + f.long_option,\n                                            action='callback',\n                                            callback=self.handle_pattern_option,\n                                            type='string',\n                                            help=f.help)\n                else:\n                    option_group.add_option('--' + f.long_option,\n                                            action='callback',\n                                            callback=self.handle_pattern_option,\n                                            type='string',\n                                            help=f.help)\n            self.add_option_group(option_group)\n\n    def parse_args(self, args=None, values=None):\n\n        try:\n            (values, remaining_args) = OptionParser.parse_args(self, args=args)\n        except SystemExit:\n            return self.command\n\n        if remaining_args:\n\n            if not self.stdout_builder.transformers:\n                self.config_loader.load_config_from_command_line(remaining_args)\n\n            stdout_transformer = self.stdout_builder.build()\n            stderr_transformer = self.stderr_builder.build() if values.enable_stderr_filtering else IdentityTransformer\n\n            return ExecuteCommand(remaining_args, stdout_transformer, stderr_transformer)\n\n        return STDINCommand(self.stdout_builder.build())\n\n    def _process_args(self, largs, rargs, values):\n        while rargs:\n            remaining = len(rargs)\n            try:\n                OptionParser._process_args(self, largs, rargs, values)\n                if remaining == len(rargs):\n                    break\n            except (BadOptionError, AmbiguousOptionError) as e:\n                largs.append(e.opt_str)\n\n    def exit(self, status=0, msg=None):\n        if msg:\n            self.error_handler(msg)\n        sys.exit(status)\n\n    def error(self, msg):\n        self.exit(1, msg)\n\n    def handle_config_option(self, option, opt, value, parser):\n        self.config_loader.load_config_by_name(value)\n\n    def handle_pattern_option(self, option, opt, value, parser):\n        filter_name = option.get_opt_string()[2:]\n        filter = FILTERS_BY_LONG_OPTION[filter_name]\n        self.stdout_builder.add_mapping(value, filter)\n        self.stderr_builder.add_mapping(value, filter)\n\n    @staticmethod\n    def handle_verbosity_option(option, opt, value, parser):\n        LOGGER.setLevel(LOGGER.level - 10)\n\n    def handle_print_path_option(self, option, opt, value, parser):\n        self.command = PrintPathCommand(DEFAULT_PATH)\n        parser.exit(0)\n\n    def handle_print_config_names_option(self, option, opt, value, parser):\n        self.command = PrintConfigNamesCommand(DEFAULT_PATH)\n        parser.exit(0)\n\n    def print_help(self, file=None):\n        self.command = NoOpCommand()\n        return OptionParser.print_help(self, file)\n\n    def print_version(self, file=None):\n        self.command = NoOpCommand()\n        return OptionParser.print_version(self, file)\n"
  },
  {
    "path": "rainbow/command/__init__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n"
  },
  {
    "path": "rainbow/command/execute.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport errno\nimport os\nimport pty\nimport re\nimport signal\nimport subprocess\nimport sys\nfrom select import select\n\nfrom rainbow.ansi import ANSI_RESET_ALL\nfrom rainbow.transformer import IdentityTransformer\n\nNEW_LINE = re.compile(\"\\n|\\r\\n\")\n\n\nclass ExecuteCommand(object):\n    def __init__(self,\n                 args,\n                 stdout_transformer=IdentityTransformer(),\n                 stderr_transformer=IdentityTransformer(),\n                 encoding=sys.getdefaultencoding()):\n        self.args = args\n        self.stdout_transformer = stdout_transformer\n        self.stderr_transformer = stderr_transformer\n        self.encoding = encoding\n\n    def encode(self, string):\n        return string.encode(self.encoding, 'replace')\n\n    def decode(self, bytes):\n        return bytes.decode(self.encoding, 'replace')\n\n    def run(self):\n\n        stdin_fd = sys.stdin.fileno()\n        stdout_fd = sys.stdout.fileno()\n        stderr_fd = sys.stderr.fileno()\n\n        in_master, in_slave = pty.openpty() if sys.stdin.isatty() else os.pipe()\n        out_master, out_slave = pty.openpty() if sys.stdout.isatty() else os.pipe()\n        err_master, err_slave = pty.openpty() if sys.stderr.isatty() else os.pipe()\n\n        p = subprocess.Popen(args=self.args, stdin=in_master, stdout=out_slave, stderr=err_slave)\n\n        readables = [stdin_fd, out_master, err_master]\n        writables = {stdin_fd: in_slave, out_master: stdout_fd, err_master: stderr_fd}\n        buffers = {out_master: '', err_master: ''}\n        transformers = {out_master: self.stdout_transformer, err_master: self.stderr_transformer}\n\n        try:\n            os.close(out_slave)\n            os.close(err_slave)\n            while True:\n                for read_fd in select(readables, [], [])[0]:\n                    try:\n                        data = os.read(read_fd, 4096)\n                    except OSError as e:\n                        if e.errno != errno.EIO:\n                            raise  # no cover\n                        data = None\n                    write_fd = writables[read_fd]\n                    if data:\n                        data_str = self.decode(data)\n                        if read_fd == stdin_fd:\n                            os.write(write_fd, self.encode(data_str))\n                            for read_fd in buffers:\n                                buffers[read_fd] = ''\n                        else:\n                            lines = NEW_LINE.split(buffers[read_fd] + data_str)\n                            transformer = transformers[read_fd]\n                            if lines[0] and buffers[read_fd]:\n                                os.write(write_fd, self.encode('\\r'))\n                            for line in lines[:-1]:\n                                os.write(write_fd, self.encode(transformer.transform(line) + '\\n'))\n                            if lines[-1]:\n                                os.write(write_fd, self.encode(transformer.transform(lines[-1])))\n                                buffers[read_fd] = lines[-1]\n                            else:\n                                buffers[read_fd] = ''\n                    else:\n                        if read_fd == stdin_fd:\n                            os.close(write_fd)\n                        else:\n                            os.write(write_fd, self.encode(ANSI_RESET_ALL))\n                            os.close(read_fd)\n                        readables.remove(read_fd)\n                        if out_master not in readables and err_master not in readables:\n                            return p.wait()\n        except KeyboardInterrupt:\n            os.kill(p.pid, signal.SIGINT)\n        return p.wait()\n"
  },
  {
    "path": "rainbow/command/noop.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n\nclass NoOpCommand(object):\n    def __init__(self, exit_code=0):\n        self.exit_code = exit_code\n\n    def run(self):\n        return self.exit_code\n"
  },
  {
    "path": "rainbow/command/print_config_names.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\n\n\nclass PrintConfigNamesCommand(object):\n    def __init__(self, paths=None):\n        self.paths = paths or []\n\n    def run(self):\n        for path in self.paths:\n            if path and os.path.isdir(path):\n                for file in os.listdir(path):\n                    if os.path.isfile(os.path.join(path, file)):\n                        print(os.path.splitext(file)[0])\n        return 0\n"
  },
  {
    "path": "rainbow/command/print_path.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\n\n\nclass PrintPathCommand(object):\n    def __init__(self, paths=None):\n        self.paths = paths or []\n\n    def run(self):\n        for path in self.paths:\n            if path:\n                print(os.path.abspath(path))\n        return 0\n"
  },
  {
    "path": "rainbow/command/stdin.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n\nimport codecs\nimport os\nimport sys\n\nfrom rainbow.ansi import ANSI_RESET_ALL\nfrom rainbow.transformer import IdentityTransformer\n\n\nclass STDINCommand(object):\n    def __init__(self,\n                 transformer=IdentityTransformer(),\n                 encoding=sys.getdefaultencoding()):\n        self.transformer = transformer\n        self.encoding = encoding\n\n    def run(self):\n\n        stdin_fd = sys.stdin.fileno()\n        stdout_fd = sys.stdout.fileno()\n\n        reader = codecs.getreader(self.encoding)(os.fdopen(stdin_fd, 'rb'), errors='replace')\n        try:\n            while True:\n                line = reader.readline()\n                if line:\n                    os.write(stdout_fd, self.transformer.transform(line).encode(self.encoding, 'replace'))\n                else:\n                    return 0\n        except KeyboardInterrupt:\n            return 1\n        finally:\n            os.write(stdout_fd, ANSI_RESET_ALL.encode(self.encoding, 'replace'))\n"
  },
  {
    "path": "rainbow/config/__init__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n"
  },
  {
    "path": "rainbow/config/builtin/df.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for df.\n#\n# Usage:\n#   $ rainbow df\n# ----------------------------------------------------------------------\n\n[filters]\nred: (9\\d|100)%%\n"
  },
  {
    "path": "rainbow/config/builtin/diff.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for the 'diff' command.\n#\n# Usage:\n#   $ rainbow diff file1 file2\n# ----------------------------------------------------------------------\n\n[filters]\ngreen: ^\\+.*\nred: ^\\-.*\nfaint: ^\\s.*\nbold: Index:\\s.*|^=+\nmagenta: ^@@.*\n"
  },
  {
    "path": "rainbow/config/builtin/env.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for env.\n#\n# Usage:\n#   $ rainbow env\n# ----------------------------------------------------------------------\n\n[filters]\nreset-all: (?<==).*\nbold: ^[^=]+=|[:;,]\nblue: ^[^=]+|[:;,]\n"
  },
  {
    "path": "rainbow/config/builtin/host.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for host.\n#\n# Usage:\n#   $ rainbow host www.google.com\n# ----------------------------------------------------------------------\n\n[filters]\nbold: ^.*\\ has\\ address\\ [0-9.]*$|^.*\\ mail\\ is\\ handled\\ by\\ .*$\n"
  },
  {
    "path": "rainbow/config/builtin/ifconfig.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for ifconfig.\n#\n# Usage:\n#   $ rainbow ifconfig\n# ----------------------------------------------------------------------\n\n[filters]\nunderline: ^([^\\ ]+)\nbold: ^\\ *inet\\ ad{1,2}r:[0-9.]+\n"
  },
  {
    "path": "rainbow/config/builtin/java-stack-trace.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Displays Java stack traces in red.\n# ----------------------------------------------------------------------\n\n[filters]\nred: ^[a-zA-Z\\.]*Exception.*|^\\s+at\\s.*|^Caused\\ by:.*|^\\s+\\.\\.\\.\\ [0-9]+\\smore\n"
  },
  {
    "path": "rainbow/config/builtin/jboss.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for JBoss (4,5,6) output.\n#\n# Usage:\n#   $ rainbow --config=jboss -- jboss/bin/run.sh run\n# ----------------------------------------------------------------------\n\n[general]\nimports: java-stack-trace\n\n[filters]\nbold: ^=+\nfaint: ^\\d+:\\d+:\\d+,\\d+\nred: \\s+ERROR\\s+.*|DEPLOYMENTS\\sMISSING\\sDEPENDENCIES:|DEPLOYMENTS\\sIN\\sERROR:\nyellow: \\s+WARN\\s+.*|\\s+ATTENTION\\s+.*\ngreen: \\[Server\\].*Started\\sin\\s.*|\\[ServerImpl\\].*Started\\sin\\s.*|\\[AbstractServer\\]\\sStopped:.*\\sin\\s.*|\\[Server\\]\\sShutdown\\scomplete|\\[ServerImpl\\]\\sShutdown\\scomplete|^Shutdown\\scomplete|^Halting\\sVM\n"
  },
  {
    "path": "rainbow/config/builtin/md5sum.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for md5sum.\n#\n# Usage:\n#   $ rainbow md5sum some-file\n# ----------------------------------------------------------------------\n\n[filters]\nfaint: ^([^\\ ]+)\n"
  },
  {
    "path": "rainbow/config/builtin/mvn.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for Maven 3.\n#\n# Usage:\n#   $ rainbow mvn clean install\n# ----------------------------------------------------------------------\n\n[filters]\nbold:  \\[INFO\\]\\s-+$|\\[ERROR\\]\\s.*|\\[INFO\\]\\sBuilding\\s[^jar\\s].*|\\[INFO\\]\\s+task-segment:\\s.*|^Results.*\nfaint: \\[INFO\\]\\s(---|<<<|>>>)\\s[a-z-]+:[0-9\\.a-z-]+:.*\\s@\\s.*\\s(---|<<<|>>>)|\\[INFO\\]\\sTotal\\stime:\\s.*|\\[INFO\\]\\sFinished\\sat:\\s.*|\\[INFO\\]\\sFinal\\sMemory:\\s.*\nyellow: \\[WARNING\\]\\s.*|^NOTE:\\sMaven\\sis\\sexecuting\\sin\\soffline\\smode\\.|^-+$|^\\sT\\sE\\sS\\sT\\sS$|^Tests\\srun:.*Failures:\\s0.*Errors:\\s0.*Skipped:\\s[^0].*\nred: \\[ERROR\\]\\s.*|\\[INFO\\]\\sBUILD\\sFAILURE|^Tests\\srun:.*Failures:\\s[^0].*|^Tests\\srun:.*Errors:\\s[^0].*\nmagenta: ^Downloading:\\s.*\ngreen: \\[INFO\\]\\sBUILD\\sSUCCESS|\\[INFO\\]\\sScanning\\sfor\\sprojects|^Tests\\srun:.*Failures:\\s0.*Errors:\\s0.*Skipped:\\s0.*\n"
  },
  {
    "path": "rainbow/config/builtin/ping.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for the 'ping' command.\n#\n# Usage:\n#   $ rainbow ping www.google.fr\n# ----------------------------------------------------------------------\n\n[filters]\nmagenta: \\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\nyellow: time=\\d+(\\.\\d+)*\\sms\nred: .+unknown\\shost\\s.+\nbold: PING.*|^---.*|.+unknown\\shost\\s.+|\\d+(\\.\\d+)*\\sms\n"
  },
  {
    "path": "rainbow/config/builtin/tcpdump.cfg",
    "content": "[filters]\n# IPv4 address+port:\nreset-all-after: (\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,5}|\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3})\nmagenta-before: \\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\nblue-after: \\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\nreset-after: \\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\n\n# MAC address:\nyellow: ([0-9a-f]{2}\\:){5}[0-9a-f]{2}\n\n# TCP/UDP flags:\n# 1.  TCP Flags\n# 2.  UDP indicator\n# 3.  UDP indicator with checksum indicator\n#         Note: Bare \"[udp sum ok]\" is highlighted because tcpdump will\n#         sometimes omit the \"UDP\"\ncyan: (?<=Flags )\\[[SP\\.RFU]+\\]\n      (?<=\\: )UDP\n      (?<=\\: )\\[udp sum ok\\]( UDP)?\n\n# error conditions (UDP, TCP, IPv4):\nred: (?<=\\: )\\[bad udp cksum.*?\\]\n     cksum \\S+ \\(incorrect.*?\\)\n     bad cksum .*?!\n\n# Network-layer Description (e.g. \"IP\")\n# 1.  With -e flag\n# 2.  With -e flag where no link layer addresses exist (e.g. VPN interface)\n# 3.  Without -e flag\nbold: (?<=ethertype )\\S+ \\S+(?=,)\n      (?<=^\\d{2}\\:\\d{2}\\:\\d{2}\\.\\d{6} AF )[^\\s\\:]+\\s\n      (?<=^\\d{2}\\:\\d{2}\\:\\d{2}\\.\\d{6} )[^\\s\\:]+\\s\n\n# Time stamp:\nfaint: \\d{2}\\:\\d{2}\\:\\d{2}\\.\\d{6}\n\n"
  },
  {
    "path": "rainbow/config/builtin/tomcat.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for Tomcat (5,6,7) output.\n#\n# Usage:\n#   $ rainbow tomcat/bin/catalina.sh run\n# ----------------------------------------------------------------------\n\n[general]\nimports: java-stack-trace\n\n[filters]\nfaint: ^[A-Z][a-z]+\\s\\d+,\\s\\d+\\s\\d+:\\d+:\\d+|^\\d+\\s[a-z]+\\s\\d+\\s\\d+:\\d+:\\d+\nred: ^GRAVE:\\s.*|^SEVERE:\\s.*\nyellow: ^ATTENTION:\\s.*|^WARNING:\\s.*\nbold: ^Using\\s.*\n"
  },
  {
    "path": "rainbow/config/builtin/traceroute.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n# Description:\n#   Example Rainbow configuration for the 'traceroute' command.\n#\n# Usage:\n#   $ rainbow traceroute www.google.com\n# ----------------------------------------------------------------------\n\n[filters]\nunderline: ^traceroute\\sto\\s.+\nbold: ^\\s*\\d+\n"
  },
  {
    "path": "rainbow/config/loader.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\n\nfrom rainbow import LOGGER\nfrom rainbow.config.locator import ConfigLocator\nfrom rainbow.config.parser import ConfigParser\n\nPRECOMMANDS = [\n    'sudo',\n    'strace',\n    'record',\n    'builtin',\n    'command',\n    'exec',\n    'nocorrect',\n    'noglob',\n    'pkexec',\n    'sh',\n    'bash',\n    'csh',\n    'ksh',\n    'fish',\n    'zsh'\n]\n\n\nclass ConfigLoader(object):\n    def __init__(self,\n                 stdout_builder,\n                 stderr_builder,\n                 paths=None,\n                 error_handler=lambda error: None):\n        self.locator = ConfigLocator(paths)\n        self.parser = ConfigParser(stdout_builder, stderr_builder, paths, error_handler)\n        self.error_handler = error_handler\n\n    def load_config_by_name(self, config):\n        config_file = self.locator.locate_config_file(config)\n        if config_file:\n            self.parser.parse_file(config_file)\n        else:\n            self.error_handler('Could not resolve config \"%s\"' % config)\n\n    def load_config_from_command_line(self, command_line_args):\n        LOGGER.debug('Trying to load config from command line \"%s\".', command_line_args)\n\n        config_name = self.find_config_name_from_command_line(command_line_args)\n        if config_name:\n            config_file = self.locator.locate_config_file(config_name)\n            if config_file:\n                self.parser.parse_file(config_file)\n\n    @staticmethod\n    def find_config_name_from_command_line(command_line_args):\n        for arg in command_line_args:\n            if arg[0] != '-':\n                basename = os.path.basename(arg)\n                if basename not in PRECOMMANDS:\n                    return basename\n        return\n"
  },
  {
    "path": "rainbow/config/locator.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\nfrom os.path import isfile, join\n\nfrom rainbow import LOGGER\n\n\nclass ConfigLocator(object):\n    def __init__(self, paths=None):\n        self.paths = paths or []\n\n    def locate_config_file(self, config, working_directory=None):\n\n        LOGGER.debug('Trying to find config \"%s\"', config)\n\n        config_file = self.locate_config_file_in_directory(os.getcwd(), config)\n        if config_file:\n            return config_file\n\n        if working_directory:\n            config_file = self.locate_config_file_in_directory(working_directory, config)\n            if config_file:\n                return config_file\n\n        for directory in self.paths:\n            if directory:\n                config_file = self.locate_config_file_in_directory(directory, config)\n                if config_file:\n                    return config_file\n\n    @staticmethod\n    def locate_config_file_in_directory(directory, config):\n\n        config_file = config\n        if isfile(config_file):\n            return config_file\n\n        config_file = config + '.cfg'\n        if isfile(config_file):\n            return config + '.cfg'\n\n        config_file = join(directory, config)\n        if isfile(config_file):\n            return config_file\n\n        config_file = join(directory, config + '.cfg')\n        if isfile(config_file):\n            return config_file\n"
  },
  {
    "path": "rainbow/config/parser.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n\nfrom os.path import dirname\n\nfrom rainbow import LOGGER\nfrom rainbow.config.locator import ConfigLocator\nfrom rainbow.filter import FILTERS_BY_NAME, FILTERS_BY_SHORT_OPTION, FILTERS_BY_LONG_OPTION\n\ntry:\n    import configparser\nexcept ImportError:  # no cover\n    import ConfigParser as configparser\n\n\nclass ConfigParser(object):\n    def __init__(self,\n                 stdout_builder,\n                 stderr_builder,\n                 paths=None,\n                 error_handler=lambda error: None):\n        self.locator = ConfigLocator(paths)\n        self.stdout_builder = stdout_builder\n        self.stderr_builder = stderr_builder\n        self.error_handler = error_handler\n\n    def parse_file(self, config_file):\n\n        LOGGER.debug('Loading the config file \"%s\"', config_file)\n\n        config_parser = configparser.ConfigParser()\n        try:\n            if not config_parser.read(config_file):\n                self.error_handler('Could not open config file \"%s\"' % config_file)\n                return\n        except configparser.DuplicateSectionError as e:  # no cover (inconsistent between Python 2 and 3)\n            self.error_handler('Duplicate section \"%s\" in \"%s\"' % (e.section, config_file))\n            return\n\n        enable_stderr_filtering = True\n\n        for section in config_parser.sections():\n\n            if section == 'general':\n\n                for key, value in config_parser.items(section):\n\n                    if key == 'imports':\n                        if not value:\n                            self.error_handler('Empty imports section in config \"%s\"' % config_file)\n                        else:\n                            for config_import in [v.strip() for v in value.split(',')]:\n                                if not config_import:\n                                    self.error_handler('Empty import in config \"%s\"' % config_file)\n                                else:\n                                    config_import_file = self.locator.locate_config_file(config_import,\n                                                                                         dirname(config_file))\n                                    if config_import_file:\n                                        self.parse_file(config_import_file)\n                                    else:\n                                        self.error_handler('Failed to resolve import of \"%s\" in config \"%s\"'\n                                                           % (config_import, config_file))\n\n                    elif key == 'enable-stderr-filtering':\n                        try:\n                            enable_stderr_filtering = config_parser.getboolean(section, 'enable-stderr-filtering')\n                        except ValueError:\n                            self.error_handler(\n                                'Invalid value \"%s\" for key \"%s\" in config \"%s\"' % (value, key, config_file))\n\n                    else:\n                        self.error_handler('Invalid key \"%s\" in general section of config \"%s\"' % (key, config_file))\n\n            elif section == 'filters':\n\n                for filter_name, pattern_lines in config_parser.items(section):\n\n                    resolved_filter = \\\n                        FILTERS_BY_NAME.get(filter_name) or \\\n                        FILTERS_BY_LONG_OPTION.get(filter_name) or \\\n                        FILTERS_BY_SHORT_OPTION.get(filter_name)\n\n                    if not resolved_filter:\n                        self.error_handler('Unknown filter \"%s\" in config \"%s\"' % (filter_name, config_file))\n                        continue\n\n                    if not pattern_lines:\n                        self.error_handler('Empty pattern for \"%s\" in config \"%s\"' % (filter_name, config_file))\n                        continue\n\n                    for pattern in pattern_lines.splitlines():\n                        self.stdout_builder.add_mapping(pattern, resolved_filter)\n                        if enable_stderr_filtering:\n                            self.stderr_builder.add_mapping(pattern, resolved_filter)\n\n            else:\n                self.error_handler('Invalid section \"%s\" in config \"%s\"' % (section, config_file))\n\n        LOGGER.info('Loaded config \"%s\"', config_file)\n"
  },
  {
    "path": "rainbow/filter.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nfrom . import ansi\n\n\nclass Filter(object):\n    def __init__(self, name, help, short_option=None, long_option=None, before=None, after=None):\n        self.name = name\n        self.help = help\n        self.short_option = short_option\n        self.long_option = long_option\n        self.before = before\n        self.after = after\n\n    def __str__(self):\n        return self.name\n\n\nclass FilterGroup(object):\n    def __init__(self, name, help, filters):\n        self.name = name\n        self.help = help\n        self.filters = filters\n\n    def __str__(self):\n        return self.name\n\n\nFILTER_GROUPS = [\n    FilterGroup(\n        name='Foreground color',\n        help='Use these options to associate patterns to text foreground colors.',\n        filters=[\n            Filter(name='foreground-red',\n                   short_option='r',\n                   long_option='red',\n                   help='print pattern in red',\n                   before=ansi.ANSI_FOREGROUND_RED,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-light-red',\n                   long_option='lightred',\n                   help='print pattern in light red',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_RED,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-green',\n                   short_option='g',\n                   long_option='green',\n                   help='print pattern in green',\n                   before=ansi.ANSI_FOREGROUND_GREEN,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-light-green',\n                   long_option='lightgreen',\n                   help='print pattern in light green',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_GREEN,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-yellow',\n                   short_option='y',\n                   long_option='yellow',\n                   help='print pattern in yellow',\n                   before=ansi.ANSI_FOREGROUND_YELLOW,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-light-yellow',\n                   long_option='lightyellow',\n                   help='print pattern in light yellow',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_YELLOW,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-blue',\n                   short_option='b',\n                   long_option='blue',\n                   help='print pattern in blue',\n                   before=ansi.ANSI_FOREGROUND_BLUE,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-light-blue',\n                   long_option='lightblue',\n                   help='print pattern in light blue',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_BLUE,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-magenta',\n                   short_option='m',\n                   long_option='magenta',\n                   help='print pattern in magenta',\n                   before=ansi.ANSI_FOREGROUND_MAGENTA,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-cyan',\n                   short_option='c',\n                   long_option='cyan',\n                   help='print pattern in cyan',\n                   before=ansi.ANSI_FOREGROUND_CYAN,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-light-cyan',\n                   long_option='lightcyan',\n                   help='print pattern in light cyan',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_CYAN,\n                   after=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-red-before',\n                   long_option='red-before',\n                   help='toggle foreground to red on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_RED),\n            Filter(name='foreground-light-red-before',\n                   long_option='lightred-before',\n                   help='toggle foreground to light red on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_RED),\n            Filter(name='foreground-green-before',\n                   long_option='green-before',\n                   help='toggle foreground to green on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_GREEN),\n            Filter(name='foreground-light-green-before',\n                   long_option='lightgreen-before',\n                   help='toggle foreground to light green on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_GREEN),\n            Filter(name='foreground-yellow-before',\n                   long_option='yellow-before',\n                   help='toggle foreground to yellow on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_YELLOW),\n            Filter(name='foreground-light-yellow-before',\n                   long_option='lightyellow-before',\n                   help='toggle foreground to light yellow on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_YELLOW),\n            Filter(name='foreground-blue-before',\n                   long_option='blue-before',\n                   help='toggle foreground to blue on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_BLUE),\n            Filter(name='foreground-light-blue-before',\n                   long_option='lightblue-before',\n                   help='toggle foreground to light blue on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_BLUE),\n            Filter(name='foreground-magenta-before',\n                   long_option='magenta-before',\n                   help='toggle foreground to magenta on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_MAGENTA),\n            Filter(name='foreground-cyan-before',\n                   long_option='cyan-before',\n                   help='toggle foreground to cyan on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_CYAN),\n            Filter(name='foreground-light-cyan-before',\n                   long_option='lightcyan-before',\n                   help='toggle foreground to light cyan on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_LIGHT_CYAN),\n            Filter(name='foreground-reset-before',\n                   long_option='reset-before',\n                   help='reset foreground color on beginning of pattern',\n                   before=ansi.ANSI_FOREGROUND_RESET),\n            Filter(name='foreground-red-after',\n                   long_option='red-after',\n                   help='toggle foreground to red on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_RED),\n            Filter(name='foreground-light-red-after',\n                   long_option='lightred-after',\n                   help='toggle foreground to light red on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_LIGHT_RED),\n            Filter(name='foreground-green-after',\n                   long_option='green-after',\n                   help='toggle foreground to green on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_GREEN),\n            Filter(name='foreground-light-green-after',\n                   long_option='lightgreen-after',\n                   help='toggle foreground to light green on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_LIGHT_GREEN),\n            Filter(name='foreground-yellow-after',\n                   long_option='yellow-after',\n                   help='toggle foreground to yellow on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_YELLOW),\n            Filter(name='foreground-light-yellow-after',\n                   long_option='lightyellow-after',\n                   help='toggle foreground to light yellow on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_LIGHT_YELLOW),\n            Filter(name='foreground-blue-after',\n                   long_option='blue-after',\n                   help='toggle foreground to blue on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_BLUE),\n            Filter(name='foreground-light-blue-after',\n                   long_option='lightblue-after',\n                   help='toggle foreground to light blue on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_LIGHT_BLUE),\n            Filter(name='foreground-magenta-after',\n                   long_option='magenta-after',\n                   help='toggle foreground to magenta on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_MAGENTA),\n            Filter(name='foreground-cyan-after',\n                   long_option='cyan-after',\n                   help='toggle foreground to cyan on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_CYAN),\n            Filter(name='foreground-light-cyan-after',\n                   long_option='lightcyan-after',\n                   help='toggle foreground to light cyan on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_LIGHT_CYAN),\n            Filter(name='foreground-reset-after',\n                   long_option='reset-after',\n                   help='reset foreground color on end of pattern',\n                   after=ansi.ANSI_FOREGROUND_RESET),\n        ]\n    ),\n    FilterGroup(\n        name='Background color',\n        help='Use these options to associate patterns to text background colors.',\n        filters=[\n            Filter(name='background-red',\n                   long_option='background-red',\n                   help='print pattern with red background',\n                   before=ansi.ANSI_BACKGROUND_RED,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-light-red',\n                   long_option='background-lightred',\n                   help='print pattern with light red background',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_RED,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-green',\n                   long_option='background-green',\n                   help='print pattern with green background',\n                   before=ansi.ANSI_BACKGROUND_GREEN,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-light-green',\n                   long_option='background-lightgreen',\n                   help='print pattern with light green background',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_GREEN,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-yellow',\n                   long_option='background-yellow',\n                   help='print pattern with yellow background',\n                   before=ansi.ANSI_BACKGROUND_YELLOW,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-light-yellow',\n                   long_option='background-lightyellow',\n                   help='print pattern with light yellow background',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_YELLOW,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-blue',\n                   long_option='background-blue',\n                   help='print pattern with blue background',\n                   before=ansi.ANSI_BACKGROUND_BLUE,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-light-blue',\n                   long_option='background-lightblue',\n                   help='print pattern with light blue background',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_BLUE,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-magenta',\n                   long_option='background-magenta',\n                   help='print pattern with magenta background',\n                   before=ansi.ANSI_BACKGROUND_MAGENTA,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-cyan',\n                   long_option='background-cyan',\n                   help='print pattern with cyan background',\n                   before=ansi.ANSI_BACKGROUND_CYAN,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-light-cyan',\n                   long_option='background-lightcyan',\n                   help='print pattern with light cyan background',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_CYAN,\n                   after=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-red-before',\n                   long_option='background-red-before',\n                   help='toggle background to red on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_RED),\n            Filter(name='background-light-red-before',\n                   long_option='background-lightred-before',\n                   help='toggle background to light red on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_RED),\n            Filter(name='background-green-before',\n                   long_option='background-green-before',\n                   help='toggle background to green on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_GREEN),\n            Filter(name='background-light-green-before',\n                   long_option='background-lightgreen-before',\n                   help='toggle background to light green on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_GREEN),\n            Filter(name='background-yellow-before',\n                   long_option='background-yellow-before',\n                   help='toggle background to yellow on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_YELLOW),\n            Filter(name='background-light-yellow-before',\n                   long_option='background-lightyellow-before',\n                   help='toggle background to light yellow on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_YELLOW),\n            Filter(name='background-blue-before',\n                   long_option='background-blue-before',\n                   help='toggle background to blue on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_BLUE),\n            Filter(name='background-light-blue-before',\n                   long_option='background-lightblue-before',\n                   help='toggle background to light blue on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_BLUE),\n            Filter(name='background-magenta-before',\n                   long_option='background-magenta-before',\n                   help='toggle background to magenta on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_MAGENTA),\n            Filter(name='background-cyan-before',\n                   long_option='background-cyan-before',\n                   help='toggle background to cyan on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_CYAN),\n            Filter(name='background-light-cyan-before',\n                   long_option='background-lightcyan-before',\n                   help='toggle background to light cyan on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_LIGHT_CYAN),\n            Filter(name='background-reset-before',\n                   long_option='background-reset-before',\n                   help='reset background color on beginning of pattern',\n                   before=ansi.ANSI_BACKGROUND_RESET),\n            Filter(name='background-red-after',\n                   long_option='background-red-after',\n                   help='toggle background to red on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_RED),\n            Filter(name='background-light-red-after',\n                   long_option='background-lightred-after',\n                   help='toggle background to light red on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_LIGHT_RED),\n            Filter(name='background-green-after',\n                   long_option='background-green-after',\n                   help='toggle background to green on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_GREEN),\n            Filter(name='background-light-green-after',\n                   long_option='background-lightgreen-after',\n                   help='toggle background to light green on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_LIGHT_GREEN),\n            Filter(name='background-yellow-after',\n                   long_option='background-yellow-after',\n                   help='toggle background to yellow on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_YELLOW),\n            Filter(name='background-light-yellow-after',\n                   long_option='background-lightyellow-after',\n                   help='toggle background to light yellow on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_LIGHT_YELLOW),\n            Filter(name='background-blue-after',\n                   long_option='background-blue-after',\n                   help='toggle background to blue on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_BLUE),\n            Filter(name='background-light-blue-after',\n                   long_option='background-lightblue-after',\n                   help='toggle background to light blue on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_LIGHT_BLUE),\n            Filter(name='background-magenta-after',\n                   long_option='background-magenta-after',\n                   help='toggle background to magenta on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_MAGENTA),\n            Filter(name='background-cyan-after',\n                   long_option='background-cyan-after',\n                   help='toggle background to cyan on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_CYAN),\n            Filter(name='background-light-cyan-after',\n                   long_option='background-lightcyan-after',\n                   help='toggle background to light cyan on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_LIGHT_CYAN),\n            Filter(name='background-reset-after',\n                   long_option='background-reset-after',\n                   help='reset background color on end of pattern',\n                   after=ansi.ANSI_BACKGROUND_RESET),\n        ]\n    ),\n    FilterGroup(\n        name='Text effects',\n        help='Use these options to associate patterns to text effects.',\n        filters=[\n            Filter(name='bold',\n                   long_option='bold',\n                   help='print pattern in bold',\n                   before=ansi.ANSI_BOLD,\n                   after=ansi.ANSI_RESET_INTENSITY),\n            Filter(name='bold-before',\n                   long_option='bold-before',\n                   help='toggle bold on beginning of pattern',\n                   before=ansi.ANSI_BOLD),\n            Filter(name='bold-after',\n                   long_option='bold-after',\n                   help='toggle bold on end of pattern',\n                   after=ansi.ANSI_BOLD),\n            Filter(name='faint',\n                   long_option='faint',\n                   help='print pattern with decreased intensity',\n                   before=ansi.ANSI_FAINT,\n                   after=ansi.ANSI_RESET_INTENSITY),\n            Filter(name='faint-before',\n                   long_option='faint-before',\n                   help='toggle faint on beginning of pattern',\n                   before=ansi.ANSI_FAINT),\n            Filter(name='faint-after',\n                   long_option='faint-after',\n                   help='toggle faint on end of pattern',\n                   after=ansi.ANSI_FAINT),\n            Filter(name='intensity-reset-before',\n                   long_option='intensity-reset-before',\n                   help='reset text intensity (bold, faint) on beginning of pattern',\n                   before=ansi.ANSI_RESET_INTENSITY),\n            Filter(name='intensity-reset-after',\n                   long_option='intensity-reset-after',\n                   help='reset text intensity (bold, faint) on end of pattern',\n                   after=ansi.ANSI_RESET_INTENSITY),\n            Filter(name='italic',\n                   long_option='italic',\n                   help='print pattern in italic',\n                   before=ansi.ANSI_ITALIC,\n                   after=ansi.ANSI_RESET_ITALIC),\n            Filter(name='italic-before',\n                   long_option='italic-before',\n                   help='toggle italic on beginning of pattern',\n                   before=ansi.ANSI_ITALIC),\n            Filter(name='italic-after',\n                   long_option='italic-after',\n                   help='toggle italic on end of pattern',\n                   after=ansi.ANSI_ITALIC),\n            Filter(name='italic-reset-before',\n                   long_option='italic-reset-before',\n                   help='reset italic on beginning of pattern',\n                   before=ansi.ANSI_RESET_ITALIC),\n            Filter(name='italic-reset-after',\n                   long_option='italic-reset-after',\n                   help='reset italic on end of pattern',\n                   after=ansi.ANSI_RESET_ITALIC),\n            Filter(name='underline',\n                   long_option='underline',\n                   help='print pattern underlined',\n                   before=ansi.ANSI_UNDERLINE,\n                   after=ansi.ANSI_RESET_UNDERLINE),\n            Filter(name='underline-before',\n                   long_option='underline-before',\n                   help='toggle underline on beginning of pattern',\n                   before=ansi.ANSI_UNDERLINE),\n            Filter(name='underline-after',\n                   long_option='underline-after',\n                   help='toggle underline on end of pattern',\n                   after=ansi.ANSI_UNDERLINE),\n            Filter(name='underline-double',\n                   long_option='underline-double',\n                   help='print pattern double underlined',\n                   before=ansi.ANSI_UNDERLINE_DOUBLE,\n                   after=ansi.ANSI_RESET_UNDERLINE),\n            Filter(name='underline-double-before',\n                   long_option='underline-double-before',\n                   help='toggle double underline on beginning of pattern',\n                   before=ansi.ANSI_UNDERLINE_DOUBLE),\n            Filter(name='underline-double-after',\n                   long_option='underline-double-after',\n                   help='toggle double underline on end of pattern',\n                   after=ansi.ANSI_UNDERLINE_DOUBLE),\n            Filter(name='underline-reset-before',\n                   long_option='underline-reset-before',\n                   help='reset underline on beginning of pattern',\n                   before=ansi.ANSI_RESET_UNDERLINE),\n            Filter(name='underline-reset-after',\n                   long_option='underline-reset-after',\n                   help='reset underline on end of pattern',\n                   after=ansi.ANSI_RESET_UNDERLINE),\n            Filter(name='blink',\n                   long_option='blink',\n                   help='print pattern blinking',\n                   before=ansi.ANSI_BLINK,\n                   after=ansi.ANSI_RESET_BLINK),\n            Filter(name='blink-before',\n                   long_option='blink-before',\n                   help='toggle blinking on beginning of pattern',\n                   before=ansi.ANSI_BLINK),\n            Filter(name='blink-after',\n                   long_option='blink-after',\n                   help='toggle blinking on end of pattern',\n                   after=ansi.ANSI_BLINK),\n            Filter(name='blink-rapid',\n                   long_option='blink-rapid',\n                   help='print pattern blinking rapidly',\n                   before=ansi.ANSI_BLINK,\n                   after=ansi.ANSI_RESET_BLINK),\n            Filter(name='blink-rapid-before',\n                   long_option='blink-rapid-before',\n                   help='toggle rapid blinking on beginning of pattern',\n                   before=ansi.ANSI_BLINK),\n            Filter(name='blink-rapid-after',\n                   long_option='blink-rapid-after',\n                   help='toggle rapid blinking on end of pattern',\n                   after=ansi.ANSI_BLINK),\n            Filter(name='blink-reset-before',\n                   long_option='blink-reset-before',\n                   help='reset blinking on beginning of pattern',\n                   before=ansi.ANSI_RESET_BLINK),\n            Filter(name='blink-reset-after',\n                   long_option='blink-reset-after',\n                   help='reset blinking on end of pattern',\n                   after=ansi.ANSI_RESET_BLINK),\n            Filter(name='negative',\n                   long_option='negative',\n                   help='print pattern swapping foreground and background',\n                   before=ansi.ANSI_NEGATIVE,\n                   after=ansi.ANSI_RESET_NEGATIVE),\n            Filter(name='negative-before',\n                   long_option='negative-before',\n                   help='toggle negative on beginning of pattern',\n                   before=ansi.ANSI_NEGATIVE),\n            Filter(name='negative-after',\n                   long_option='negative-after',\n                   help='toggle negative on end of pattern',\n                   after=ansi.ANSI_NEGATIVE),\n            Filter(name='negative-reset-before',\n                   long_option='negative-reset-before',\n                   help='reset negative on beginning of pattern',\n                   before=ansi.ANSI_RESET_NEGATIVE),\n            Filter(name='negative-reset-after',\n                   long_option='negative-reset-after',\n                   help='reset negative on end of pattern',\n                   after=ansi.ANSI_RESET_NEGATIVE),\n            Filter(name='hide',\n                   long_option='hide',\n                   help='print pattern hidden',\n                   before=ansi.ANSI_HIDE,\n                   after=ansi.ANSI_RESET_HIDE),\n            Filter(name='hide-before',\n                   long_option='hide-before',\n                   help='toggle hiding on beginning of pattern',\n                   before=ansi.ANSI_HIDE),\n            Filter(name='hide-after',\n                   long_option='hide-after',\n                   help='toggle hiding on end of pattern',\n                   after=ansi.ANSI_HIDE),\n            Filter(name='hide-reset-before',\n                   long_option='hide-reset-before',\n                   help='reset hiding on beginning of pattern',\n                   before=ansi.ANSI_RESET_HIDE),\n            Filter(name='hide-reset-after',\n                   long_option='hide-reset-after',\n                   help='reset hiding on end of pattern',\n                   after=ansi.ANSI_RESET_HIDE),\n            Filter(name='reset-all',\n                   long_option='reset-all',\n                   help='reset all colors',\n                   before=ansi.ANSI_RESET_ALL,\n                   after=ansi.ANSI_RESET_ALL),\n            Filter(name='reset-all-before',\n                   long_option='reset-all-before',\n                   help='reset all colors on beginning of pattern',\n                   before=ansi.ANSI_RESET_ALL),\n            Filter(name='reset-all-after',\n                   long_option='reset-all-after',\n                   help='reset all colors on end of pattern',\n                   after=ansi.ANSI_RESET_ALL),\n        ]\n    )\n]\n\nFILTERS = [f for g in FILTER_GROUPS for f in g.filters]\nFILTERS_BY_NAME = dict((filter.name, filter) for group in FILTER_GROUPS for filter in group.filters)\nFILTERS_BY_SHORT_OPTION = dict((filter.short_option, filter) for group in FILTER_GROUPS for filter in group.filters)\nFILTERS_BY_LONG_OPTION = dict((filter.long_option, filter) for group in FILTER_GROUPS for filter in group.filters)\n"
  },
  {
    "path": "rainbow/transformer.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\nimport re\n\nfrom . import LOGGER\n\n\nclass IdentityTransformer(object):\n    def __init__(self):\n        pass\n\n    def transform(self, line):\n        return line\n\n    def __str__(self):\n        return 'identity'\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__)\n\n\nclass ReplaceTransformer(IdentityTransformer):\n    def __init__(self, value, replacement):\n        IdentityTransformer.__init__(self)\n        self.value = value\n        self.replacement = replacement\n\n    def transform(self, line):\n        return line.replace(self.value, self.replacement)\n\n    def __str__(self):\n        return 'replace \"%s\" with \"%s\"' % (self.value, self.replacement)\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and (self.value, self.replacement) == (other.value, other.replacement)\n\n\nclass ReplaceRegexTransformer(IdentityTransformer):\n    def __init__(self, regex, replacement):\n        IdentityTransformer.__init__(self)\n        self.regex = regex\n        self.replacement = replacement\n\n    def transform(self, line):\n        return self.regex.sub(self.replacement, line)\n\n    def __str__(self):\n        return 'replace \"%s\" with \"%s\"' % (self.regex.pattern, self.replacement)\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and (self.regex, self.replacement) == (other.regex, other.replacement)\n\n\nclass InsertBeforeRegexTransformer(IdentityTransformer):\n    def __init__(self, regex, before):\n        IdentityTransformer.__init__(self)\n        self.regex = regex\n        self.before = before\n\n    def transform(self, line):\n        return self.regex.sub(self.before + r'\\g<0>', line)\n\n    def __str__(self):\n        return 'insert \"%s\" before \"%s\"' % (self.before, self.regex.pattern)\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and (self.regex, self.before) == (other.regex, other.before)\n\n\nclass InsertAfterRegexTransformer(IdentityTransformer):\n    def __init__(self, regex, after):\n        IdentityTransformer.__init__(self)\n        self.regex = regex\n        self.after = after\n\n    def transform(self, line):\n        return self.regex.sub(r'\\g<0>' + self.after, line)\n\n    def __str__(self):\n        return 'insert \"%s\" after \"%s\"' % (self.after, self.regex.pattern)\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and (self.regex, self.after) == (other.regex, other.after)\n\n\nclass InsertBeforeAndAfterRegexTransformer(IdentityTransformer):\n    def __init__(self, regex, before, after):\n        IdentityTransformer.__init__(self)\n        self.regex = regex\n        self.before = before\n        self.after = after\n\n    def transform(self, line):\n        return self.regex.sub(self.before + r'\\g<0>' + self.after, line)\n\n    def __str__(self):\n        return 'insert \"%s\" before and \"%s\" after \"%s\"' % (self.before, self.after, self.regex.pattern)\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and (self.regex, self.before, self.after) == \\\n                                                     (other.regex, other.before, other.after)\n\n\nclass ListTransformer(IdentityTransformer):\n    def __init__(self, transformers):\n        IdentityTransformer.__init__(self)\n        self.transformers = transformers\n\n    def transform(self, line):\n        for transformer in self.transformers:\n            line = transformer.transform(line)\n        return line\n\n    def __str__(self):\n        return os.linesep.join([transformer.__str__() for transformer in self.transformers])\n\n    def __eq__(self, other):\n        return isinstance(other, self.__class__) and self.transformers == other.transformers\n\n\nclass DummyTransformerBuilder(object):\n    def __init__(self):\n        self.transformers = []\n\n    def add_mapping(self, pattern, filter):\n        pass\n\n    def build(self):\n        return IdentityTransformer()\n\n\nclass TransformerBuilder(DummyTransformerBuilder):\n\n    def add_mapping(self, pattern, filter):\n        LOGGER.debug('Binding pattern \"%s\" with filter \"%s\".', pattern, filter)\n        self.transformers.append(self.make_transformer(re.compile(pattern), filter))\n\n    @staticmethod\n    def make_transformer(regex, filter):\n\n        if filter.before and filter.after:\n            return InsertBeforeAndAfterRegexTransformer(regex, filter.before, filter.after)\n\n        elif filter.before:\n            return InsertBeforeRegexTransformer(regex, filter.before)\n\n        elif filter.after:\n            return InsertAfterRegexTransformer(regex, filter.after)\n\n    def build(self):\n\n        if not self.transformers:\n            return IdentityTransformer()\n\n        if len(self.transformers) == 1:\n            return self.transformers[0]\n\n        return ListTransformer(self.transformers)\n"
  },
  {
    "path": "scripts/rainbow",
    "content": "#!/usr/bin/python3\n# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport sys\n\nfrom rainbow.__main__ import main\n\nsys.exit(main())\n"
  },
  {
    "path": "setup.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[clean]\npaths = .cache,\n        .tox,\n        build,\n        dist,\n        rainbow.egg-info,\n        .coverage\n\n[build_completion_bash]\nshell = bash\noutput = build/completion/rainbow\n\n[build_completion_zsh]\nshell = zsh\noutput = build/completion/_rainbow\n\n[build_man_page]\noutput = build/man/rainbow.1\n\n[bdist_wheel]\nuniversal = 1\n\n[flake8]\nmax-line-length = 120\n"
  },
  {
    "path": "setup.py",
    "content": "#!/usr/bin/env python\n# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\nfrom setuptools import setup, find_packages\n\nfrom rainbow import __prog__, __version__, __license__, __author__, __email__, __url__, __description__\nfrom rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage\n\nsetup(\n    name=__prog__,\n    version=__version__,\n    author=__author__,\n    author_email=__email__,\n    url=__url__,\n    license=__license__,\n    description=__description__,\n    long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),\n    keywords='color colorize colorizer pattern',\n    classifiers=[\n        'Development Status :: 5 - Production/Stable',\n        'Environment :: Console',\n        'Operating System :: MacOS :: MacOS X',\n        'Operating System :: POSIX',\n        'Topic :: System',\n        'Topic :: Utilities',\n        'Intended Audience :: Developers',\n        'Intended Audience :: End Users/Desktop',\n        'Intended Audience :: System Administrators',\n        'Natural Language :: English',\n        'Programming Language :: Python',\n        'Programming Language :: Python :: 3',\n        'Programming Language :: Python :: 3.6',\n        'Programming Language :: Python :: 3.7',\n        'Programming Language :: Python :: 3.8',\n        'Programming Language :: Python :: 3.9',\n        'Programming Language :: Python :: 3.10',\n        'Programming Language :: Python :: Implementation :: CPython',\n        'Programming Language :: Python :: Implementation :: PyPy',\n        'License :: OSI Approved :: GNU General Public License (GPL)'\n    ],\n    packages=find_packages(exclude=['tests*']),\n    include_package_data=True,\n    python_requires='>=3.6',\n    extras_require={\n        'build': [\n            'Jinja2==3.0.3',\n        ],\n        'test': [\n            'pytest==6.2.5',\n            'coverage==6.2',\n            'pytest-cov==3.0.0',\n            'pytest-html==3.1.1',\n            'pytest-timeout==2.1.0',\n            'flake8==4.0.1',\n            'pygal==3.0.0',\n            'pygaljs==1.0.2',\n            'pytest-benchmark==3.4.1'\n        ]\n    },\n    scripts=['scripts/rainbow'],\n    cmdclass={\n        'clean': Clean,\n        'build': Build,\n        'build_completion_bash': GenerateCompletion,\n        'build_completion_zsh': GenerateCompletion,\n        'build_man_page': GenerateManPage\n    }\n)\n"
  },
  {
    "path": "templates/completion.bash",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n_rainbow()\n{\n  local offset=0 i\n  for (( i=1; i <= COMP_CWORD; i++ )); do\n    case ${COMP_WORDS[$i]} in\n      --version|-h|--help|--disable-stderr-filtering|--verbose|-f|--config|-{{ filters|selectattr('short_option')|join('|-', attribute='short_option') }}|--{{ filters|join('|--', attribute='long_option') }})\n        i=$((i+1))\n        continue\n        ;;\n      -*)\n        continue\n        ;;\n    esac\n    offset=$i\n    break\n  done\n  if [[ $offset -gt 0 ]]; then\n    _command_offset $offset\n  else\n  cur=${COMP_WORDS[COMP_CWORD]}\n    if [ $COMP_CWORD -eq 1 ]; then\n    COMPREPLY=( $( compgen -W \"--version -h --help --print-path --print-config-names --disable-stderr-filtering --verbose -f --config -{{ filters|selectattr('short_option')|join(' -', attribute='short_option') }} --{{ filters|join(' --', attribute='long_option') }}\" -- $cur ) )\n    else\n      first=${COMP_WORDS[1]}\n      case \"$first\" in\n        --version|-h|--help|--print-path|--print-config-names)\n          COMPREPLY=()\n          ;;\n        *)\n          prev=${COMP_WORDS[COMP_CWORD-1]}\n          case \"$prev\" in\n            -{{ filters|selectattr('short_option')|join('|-', attribute='short_option') }}|--{{ filters|join('|--', attribute='long_option') }})\n              COMPREPLY=()\n              ;;\n            -f|--config)\n              COMPREPLY=( $(rainbow --print-config-names) \\\n                          $(compgen -d $cur ) \\\n                          $(compgen -f -X \"!*.cfg\" $cur ) )\n              ;;\n            *)\n              COMPREPLY=( $( compgen -W \"--disable-stderr-filtering --verbose -f --config -{{ filters|selectattr('short_option')|join(' -', attribute='short_option') }} --{{ filters|join(' --', attribute='long_option') }}\" -- $cur ) )\n              ;;\n          esac\n          ;;\n      esac\n    fi\n  fi\n}\n\ncomplete -F _rainbow rainbow\n\n"
  },
  {
    "path": "templates/completion.zsh",
    "content": "#compdef rainbow\n# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n_rainbow() {\n  typeset -A opt_args\n  local context state line curcontext=\"$curcontext\"\n\n  _arguments \\\n{%- for filter in filters %}\n  {%- if filter.short_option %}\n    '*'{-{{ filter.short_option }}+,--{{ filter.long_option }}=}'[{{ filter.help }}]:pattern:_rainbow_patterns' \\\n  {%- else %}\n    '*--{{ filter.long_option }}=[{{ filter.help }}]:pattern:_rainbow_patterns' \\\n  {%- endif %}\n{%- endfor %}\n    '(- 1 *)'{-h,--help}'[print program usage]' \\\n    '(- 1 *)--version[print program version]' \\\n    '(- 1 *)--print-path[print config paths]' \\\n    '(- 1 *)--print-config-names[print config names]' \\\n    '*'{-v,--verbose}'[verbose mode]' \\\n    '--disable-stderr-filtering[disable STDERR filtering]' \\\n    '*'{-f,--config=}'[rainbow config file]:rainbow config:_rainbow_configs' \\\n      '(-):command name: _command_names -e' \\\n      '*::arguments:_normal' && ret=0\n}\n\n(( $+functions[_rainbow_patterns] )) ||\n_rainbow_patterns() {\n  _message -e pattern \"pattern\"\n}\n\n(( $+functions[_rainbow_configs] )) ||\n_rainbow_configs() {\n  _alternative \\\n    'config-names:config name:_rainbow_config_names' \\\n    'config-files:config file:_rainbow_config_files'\n}\n\n(( $+functions[_rainbow_config_names] )) ||\n_rainbow_config_names() {\n  local rainbow_config_names\n  rainbow_config_names=( \"${(f)$(_call_program configs rainbow --print-config-names 2>/dev/null)}\" )\n  _describe -t 'rainbow config names' 'rainbow config name' rainbow_config_names\n}\n\n(( $+functions[_rainbow_config_files] )) ||\n_rainbow_config_files() {\n  _files -g \"*.cfg\"\n}\n\n_rainbow \"$@\"\n\n"
  },
  {
    "path": "templates/rainbow.man",
    "content": ".TH RAINBOW 1\n\n\n.SH NAME\nrainbow \\- Colorize commands output using patterns.\n\n\n.SH SYNOPSIS\n.B rainbow\n[rainbow options...] command [command args...]\n\ncommand [command args...] |\n.B rainbow\n[rainbow options...]\n\n\n.SH DESCRIPTION\nDisplay commands output colored matching words or regular expressions. If you don't specify a command, STDIN is used.\n\n\n.SH OPTIONS\nThese programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of\noptions is included below.\n\n.PP\n.B\nCommon options\n\n.TP\n.B\n    \\-v, \\-\\-version\n    show program's version number and exit.\n\n.TP\n.B\n    \\-h, \\-\\-help\n    show help message and exit.\n\n.TP\n.B\n    \\-\\-print-path\n    Print config paths and exit.\n\n.TP\n.B\n    \\-\\-print-config-names\n    Print config names and exit.\n\n.TP\n.B\n    \\-f CONFIG, \\-\\-config CONFIG\n    Load a config file defining patterns. Go to /usr/share/rainbow/configs for examples. The option can be called\n    several times.\n\n.TP\n.B\n    \\-\\-disable\\-stderr\\-filtering\n    Disable STDERR filtering, which can have unexpected effects on commands directly using tty (such as top).\n\n\n{%- for filter_group in filter_groups %}\n.PP\n.B\n{{ filter_group.name }}\n\\- {{ filter_group.help }}\n  {%- for filter in filter_group.filters %}\n\n.TP\n.B\n    {%- if filter.short_option %}\n    \\-{{ filter.short_option }}, \\-\\-{{ filter.long_option }} PATTERN\n    {{ filter.help }}\n    {%- else %}\n    \\-\\-{{ filter.long_option }} PATTERN\n    {{ filter.help }}\n    {%- endif %}\n  {%- endfor %}\n{%- endfor %}\n\n\n.SH EXAMPLES\n\n.TP\nColorize the 'diff' command output using the builtin config:\nrainbow diff file1 file2\n\n.TP\nColorize the 'ping' command output using the builtin config:\nrainbow ping www.google.com\n\n.TP\nPing Google with IP addresses colorized in red:\nrainbow \\-\\-red '\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}' ping www.google.com\n\n.TP\nPipe content to rainbow instead of providing a command:\ntail -f my-file.log | rainbow \\-\\-config my-config\n\n\n.SH CONFIGS\n.TP\nThe \\-f or \\-\\-config option allows to load patterns defined in a configuration file, for example:\nrainbow \\-\\-config MY_CONFIG\n.PP\nrainbow will look for the config at the following places, in the following order:\n  * $RAINBOW_CONFIGS/MY_CONFIG\n  * $RAINBOW_CONFIGS/MY_CONFIG.cfg\n  * $XDG_CONFIG_HOME/rainbow/MY_CONFIG\n  * $XDG_CONFIG_HOME/rainbow/MY_CONFIG.cfg\n  * ~/.rainbow/MY_CONFIG\n  * ~/.rainbow/MY_CONFIG.cfg\n  * /etc/rainbow/MY_CONFIG\n  * /etc/rainbow/MY_CONFIG.cfg\n  * <rainbow builtin configs>/MY_CONFIG\n  * <rainbow builtin configs>/usr/share/rainbow/configs/MY_CONFIG.cfg\n\nrainbow comes bundled with several configs, for example for the ping, top and diff commands, for Tomcat/JBoss logs, etc.\nYou can override the default configs with your own ones by placing them in $RAINBOW_CONFIGS, ~/.rainbow or /etc/rainbow.\n\n\n.SH BUGS\nPlease report bugs to https://github.com/nicoulaj/rainbow/issues.\n\n\n.SH AUTHOR\n.PP\nThis manual page was written by Julien Nicoulaud <julien.nicoulaud@gmail.com>,\nfor the rainbow project (https://github.com/nicoulaj/rainbow), and may be used\nby others.\n\n"
  },
  {
    "path": "tests/__init__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n"
  },
  {
    "path": "tests/command/__init__.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n"
  },
  {
    "path": "tests/command/test_execute.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\nimport signal\nimport sys\nfrom textwrap import dedent\nfrom threading import Timer\n\nimport pytest\n\nfrom rainbow import ansi\nfrom rainbow.command.execute import ExecuteCommand\nfrom rainbow.transformer import ReplaceTransformer\nfrom tests.test_utils import stdin_empty_all_variants, stdin_from_string_all_variants\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_true(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(['true']).run() == 0\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_false(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(['false']).run() == 1\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('stdout\\n')\n                sys.stdout.flush()\n                sys.stderr.write('stderr\\n')\n                sys.stderr.flush()\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity_no_newline(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('stdout')\n                sys.stdout.flush()\n                sys.stderr.write('stderr')\n                sys.stderr.flush()\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity_partial_line(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys, time\n                sys.stdout.write('stdout1')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stderr.write('stderr1')\n                sys.stderr.flush()\n                time.sleep(0.5)\n                sys.stdout.write('stdout2')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stderr.write('stderr2')\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout1\\rstdout1stdout2' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr1\\rstderr1stderr2' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity_overwritten_line(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys, time\n                sys.stdout.write('stdout1')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stderr.write('stderr1')\n                sys.stderr.flush()\n                time.sleep(0.5)\n                sys.stdout.write('\\rstdout2')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stderr.write('\\rstderr2')\n                sys.stderr.flush()\n                time.sleep(0.5)\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout1\\rstdout1\\rstdout2' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr1\\rstderr1\\rstderr2' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity_bash(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(['/bin/bash', '-c', 'echo \"stdout\"; echo \"stderr\" >&2']).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_identity_mixed_stdin_and_err(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('stdout1\\n')\n                sys.stderr.write('stderr2\\n')\n                sys.stdout.write('stdout3')\n                sys.stdout.write('stdout4\\n')\n                sys.stderr.write('stderr4')\n                sys.stderr.write('stderr5\\n')\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout1\\nstdout3stdout4\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'stderr2\\nstderr4stderr5\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_bufferized_output(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys, time\n                sys.stdout.write('stdout1\\n')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stdout.write('stdout2\\nstdout3\\n')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stdout.write('stdout4\\n')\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'stdout1\\nstdout2\\nstdout3\\nstdout4\\n' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_bufferized_partial_lines(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys, time\n                sys.stdout.write('std')\n                sys.stdout.flush()\n                time.sleep(0.5)\n                sys.stdout.write('out1\\nstdout2\\n')\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'std\\rstdout1\\nstdout2\\n' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_unflushed_output(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            [sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('message')\n            ''')]\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'message' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.skip(reason=\"Issue #23: missing unit tests for executing subcommands with stdin\")\n@pytest.mark.timeout(2)\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line\\n'), ids=str)\ndef test_cat_stdin(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(['cat']).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'line\\n' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.skip(reason=\"Issue #23: missing unit tests for executing subcommands with stdin\")\n@pytest.mark.timeout(2)\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line1\\nline2\\n'), ids=str)\ndef test_cat_stdin_two_lines(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(['cat']).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'line1\\nline2\\n' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stdout_transformer(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=[sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('message\\n')\n                sys.stderr.write('message\\n')\n            ''')],\n            stdout_transformer=ReplaceTransformer('message', 'REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'REPLACED\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'message\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stdout_transformer_bash(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=['/bin/bash', '-c', 'echo \"message\"; echo \"message\" >&2'],\n            stdout_transformer=ReplaceTransformer('message', 'REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'REPLACED\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'message\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stderr_transformer(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=[sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('message\\n')\n                sys.stderr.write('message\\n')\n            ''')],\n            stderr_transformer=ReplaceTransformer('message', 'REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'message\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'REPLACED\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stderr_transformer_bash(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=['/bin/bash', '-c', 'echo \"message\"; echo \"message\" >&2'],\n            stderr_transformer=ReplaceTransformer('message', 'REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'message\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'REPLACED\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stdout_and_stderr_transformers(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=[sys.executable, '-c', dedent(r'''\n                import sys\n                sys.stdout.write('stdout\\n')\n                sys.stderr.write('stderr\\n')\n            ''')],\n            stdout_transformer=ReplaceTransformer('stdout', 'STDOUT_REPLACED'),\n            stderr_transformer=ReplaceTransformer('stderr', 'STDERR_REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'STDOUT_REPLACED\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'STDERR_REPLACED\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stdout_and_stderr_transformers_bash(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=['/bin/bash', '-c', 'echo \"stdout\"; echo \"stderr\" >&2'],\n            stdout_transformer=ReplaceTransformer('stdout', 'STDOUT_REPLACED'),\n            stderr_transformer=ReplaceTransformer('stderr', 'STDERR_REPLACED')\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'STDOUT_REPLACED\\n' + ansi.ANSI_RESET_ALL\n        assert err == 'STDERR_REPLACED\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.skip(reason=\"Issue #23: missing unit tests for executing subcommands with stdin\")\n@pytest.mark.timeout(2)\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants(\"foo bar\"), ids=str)\ndef test_read_bash(capfd, stdin):\n    with stdin:\n        assert ExecuteCommand(\n            args=['/bin/bash', '-c', 'read -p \"Enter your input:\" result; echo \"You entered: $result\"']\n        ).run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'Enter your input:\\nYou entered: foo bar' + ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.timeout(5)\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_interrupted(stdin):\n    with stdin:\n        Timer(1.0, os.kill, [os.getpid(), signal.SIGINT]).start()\n        assert ExecuteCommand(['sleep', '100']).run() == -2\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_malformed_utf8(stdin):\n    with stdin:\n        assert ExecuteCommand(['cat', 'tests/data/UTF-8-test.txt']).run() == 0\n"
  },
  {
    "path": "tests/command/test_noop.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport pytest\n\nfrom rainbow.command.noop import NoOpCommand\n\n\ndef test_noop(capsys):\n    assert NoOpCommand().run() == 0\n    out, err = capsys.readouterr()\n    assert out == ''\n    assert err == ''\n\n\n@pytest.mark.parametrize(\"exit_code\", range(-256, 256), ids=str)\ndef test_noop_with_exit_code(capsys, exit_code):\n    assert NoOpCommand(exit_code).run() == exit_code\n    out, err = capsys.readouterr()\n    assert out == ''\n    assert err == ''\n"
  },
  {
    "path": "tests/command/test_print_config_names.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nfrom rainbow import DEFAULT_PATH\nfrom rainbow.command.print_config_names import PrintConfigNamesCommand\n\n\ndef test_empty_path(capsys):\n    assert PrintConfigNamesCommand().run() == 0\n    out, err = capsys.readouterr()\n    assert out == ''\n    assert err == ''\n\n\ndef test_default_path(capsys):\n    assert PrintConfigNamesCommand(DEFAULT_PATH).run() == 0\n    out, err = capsys.readouterr()\n    assert 'diff\\n' in out\n    assert 'ping' in out\n    assert 'md5sum' in out\n    assert 'env' in out\n    assert 'java-stack-trace' in out\n    assert 'host' in out\n    assert 'ifconfig' in out\n    assert 'traceroute' in out\n    assert 'df' in out\n    assert 'mvn' in out\n    assert 'tomcat' in out\n    assert err == ''\n"
  },
  {
    "path": "tests/command/test_print_path.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\n\nfrom rainbow import DEFAULT_PATH\nfrom rainbow.command.print_path import PrintPathCommand\n\n\ndef test_empty_path(capsys):\n    assert PrintPathCommand().run() == 0\n    out, err = capsys.readouterr()\n    assert out == ''\n    assert err == ''\n\n\ndef test_default_path(capsys):\n    assert PrintPathCommand(DEFAULT_PATH).run() == 0\n    out, err = capsys.readouterr()\n    assert os.path.expanduser('~/.rainbow') in out\n    assert os.path.join(os.sep, 'etc', 'rainbow') in out\n    assert os.path.join(os.sep, 'rainbow', 'config', 'builtin') in out\n"
  },
  {
    "path": "tests/command/test_stdin.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\nimport signal\nfrom threading import Timer\n\nimport pytest\n\nfrom rainbow import ansi\nfrom rainbow.command.stdin import STDINCommand\nfrom tests.test_utils import stdin_empty_all_variants, stdin_from_string_all_variants, stdin_from_file_all_variants, \\\n    stdin_pipe\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_empty(capfd, stdin):\n    with stdin:\n        assert STDINCommand().run() == 0\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line\\n'), ids=str)\ndef test_one_line(capfd, stdin):\n    with stdin:\n        assert STDINCommand().run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'line\\n' + ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line1\\nline2\\n'), ids=str)\ndef test_several_lines(capfd, stdin):\n    with stdin:\n        assert STDINCommand().run() == 0\n        out, err = capfd.readouterr()\n        assert out == 'line1\\nline2\\n' + ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\ndef test_interrupted(capfd):\n    with stdin_pipe():\n        Timer(1.0, os.kill, [os.getpid(), signal.SIGINT]).start()\n        assert STDINCommand().run() == 1\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str)\ndef test_malformed_utf8(stdin):\n    with stdin:\n        assert STDINCommand().run() == 0\n"
  },
  {
    "path": "tests/config/__init__.py",
    "content": ""
  },
  {
    "path": "tests/config/test_builtin.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport os\n\nimport pytest\n\nfrom rainbow.ansi import ANSI_BACKGROUND_BLUE, ANSI_BACKGROUND_CYAN, \\\n    ANSI_BACKGROUND_GREEN, ANSI_BACKGROUND_MAGENTA, ANSI_BACKGROUND_RED, \\\n    ANSI_BACKGROUND_RESET, ANSI_BACKGROUND_YELLOW, ANSI_BACKGROUND_LIGHT_RED, \\\n    ANSI_BACKGROUND_LIGHT_GREEN, ANSI_BACKGROUND_LIGHT_YELLOW, \\\n    ANSI_BACKGROUND_LIGHT_BLUE, ANSI_BACKGROUND_LIGHT_CYAN, ANSI_BLINK, \\\n    ANSI_BLINK_RAPID, ANSI_BOLD, ANSI_FAINT, ANSI_FOREGROUND_BLUE, \\\n    ANSI_FOREGROUND_CYAN, ANSI_FOREGROUND_GREEN, ANSI_FOREGROUND_MAGENTA, \\\n    ANSI_FOREGROUND_RED, ANSI_FOREGROUND_RESET, ANSI_FOREGROUND_YELLOW, \\\n    ANSI_FOREGROUND_LIGHT_RED, ANSI_FOREGROUND_LIGHT_GREEN, \\\n    ANSI_FOREGROUND_LIGHT_YELLOW, ANSI_FOREGROUND_LIGHT_BLUE, \\\n    ANSI_FOREGROUND_LIGHT_CYAN, ANSI_HIDE, ANSI_ITALIC, ANSI_NEGATIVE, \\\n    ANSI_RESET_ALL, ANSI_RESET_BLINK, ANSI_RESET_HIDE, ANSI_RESET_INTENSITY, \\\n    ANSI_RESET_ITALIC, ANSI_RESET_NEGATIVE, ANSI_RESET_UNDERLINE, \\\n    ANSI_UNDERLINE, ANSI_UNDERLINE_DOUBLE\nfrom rainbow.config.loader import ConfigLoader\nfrom rainbow.transformer import DummyTransformerBuilder, TransformerBuilder, ListTransformer, ReplaceTransformer\nfrom tests.test_utils import BUILTIN_CONFIGS_NAMES, BUILTIN_CONFIGS_REFERENCES, BUILTIN_CONFIGS_REFERENCE_PAIRS\n\n# Use this to update references.\n# NEVER commit it with True!\nGENERATE_REFERENCES = False\n\n\ndef load_builtin_config(config):\n    stdout_builder = TransformerBuilder()\n    errors = []\n    ConfigLoader(stdout_builder=stdout_builder,\n                 stderr_builder=DummyTransformerBuilder(),\n                 paths=['rainbow/config/builtin'],\n                 error_handler=errors.append) \\\n        .load_config_by_name(config)\n    return stdout_builder.build(), errors\n\n\ndef test_generate_flag_has_not_been_committed():\n    assert not (bool(os.environ.get('CI', False)) and GENERATE_REFERENCES)\n\n\n@pytest.mark.parametrize(\"config\", BUILTIN_CONFIGS_NAMES)\ndef test_config_has_at_least_one_reference(config):\n    assert len(BUILTIN_CONFIGS_REFERENCES[config]) > 0\n\n\n@pytest.mark.parametrize(\"config\", BUILTIN_CONFIGS_NAMES)\ndef test_config_loads_without_errors(config):\n    (transformer, errors) = load_builtin_config(config)\n    assert not errors\n\n\n@pytest.mark.parametrize(\"test\", BUILTIN_CONFIGS_REFERENCE_PAIRS, ids=str)\ndef test_config_by_reference(test):\n    config_name = test[0]\n    input_file = test[1]\n    expected_file = input_file + '.out'\n\n    (transformer, errors) = load_builtin_config(config_name)\n    assert not errors\n\n    transformer = ListTransformer([\n        transformer,\n        ReplaceTransformer(ANSI_FOREGROUND_RED, '[FOREGROUND_RED]'),\n        ReplaceTransformer(ANSI_FOREGROUND_GREEN, '[FOREGROUND_GREEN]'),\n        ReplaceTransformer(ANSI_FOREGROUND_YELLOW, '[FOREGROUND_YELLOW]'),\n        ReplaceTransformer(ANSI_FOREGROUND_BLUE, '[FOREGROUND_BLUE]'),\n        ReplaceTransformer(ANSI_FOREGROUND_MAGENTA, '[FOREGROUND_MAGENTA]'),\n        ReplaceTransformer(ANSI_FOREGROUND_CYAN, '[FOREGROUND_CYAN]'),\n        ReplaceTransformer(ANSI_FOREGROUND_RESET, '[FOREGROUND_RESET]'),\n        ReplaceTransformer(ANSI_FOREGROUND_LIGHT_RED, '[FOREGROUND_LIGHT_RED]'),\n        ReplaceTransformer(ANSI_FOREGROUND_LIGHT_GREEN, '[FOREGROUND_LIGHT_GREEN]'),\n        ReplaceTransformer(ANSI_FOREGROUND_LIGHT_YELLOW, '[FOREGROUND_LIGHT_YELLOW]'),\n        ReplaceTransformer(ANSI_FOREGROUND_LIGHT_BLUE, '[FOREGROUND_LIGHT_BLUE]'),\n        ReplaceTransformer(ANSI_FOREGROUND_LIGHT_CYAN, '[ANSI_FOREGROUND_LIGHT_CYAN]'),\n        ReplaceTransformer(ANSI_BACKGROUND_RED, '[BACKGROUND_RED]'),\n        ReplaceTransformer(ANSI_BACKGROUND_GREEN, '[BACKGROUND_GREEN]'),\n        ReplaceTransformer(ANSI_BACKGROUND_YELLOW, '[BACKGROUND_YELLOW]'),\n        ReplaceTransformer(ANSI_BACKGROUND_BLUE, '[BACKGROUND_BLUE]'),\n        ReplaceTransformer(ANSI_BACKGROUND_MAGENTA, '[BACKGROUND_MAGENTA]'),\n        ReplaceTransformer(ANSI_BACKGROUND_CYAN, '[BACKGROUND_CYAN]'),\n        ReplaceTransformer(ANSI_BACKGROUND_LIGHT_RED, '[BACKGROUND_LIGHT_RED]'),\n        ReplaceTransformer(ANSI_BACKGROUND_LIGHT_GREEN, '[BACKGROUND_LIGHT_GREEN]'),\n        ReplaceTransformer(ANSI_BACKGROUND_LIGHT_YELLOW, '[BACKGROUND_LIGHT_YELLOW]'),\n        ReplaceTransformer(ANSI_BACKGROUND_LIGHT_BLUE, '[BACKGROUND_LIGHT_BLUE]'),\n        ReplaceTransformer(ANSI_BACKGROUND_LIGHT_CYAN, '[BACKGROUND_LIGHT_CYAN]'),\n        ReplaceTransformer(ANSI_BACKGROUND_RESET, '[BACKGROUND_RESET]'),\n        ReplaceTransformer(ANSI_BOLD, '[BOLD]'),\n        ReplaceTransformer(ANSI_FAINT, '[FAINT]'),\n        ReplaceTransformer(ANSI_ITALIC, '[ITALIC]'),\n        ReplaceTransformer(ANSI_UNDERLINE, '[UNDERLINE]'),\n        ReplaceTransformer(ANSI_UNDERLINE_DOUBLE, '[UNDERLINE_DOUBLE]'),\n        ReplaceTransformer(ANSI_BLINK, '[BLINK]'),\n        ReplaceTransformer(ANSI_BLINK_RAPID, '[BLINK_RAPID]'),\n        ReplaceTransformer(ANSI_NEGATIVE, '[NEGATIVE]'),\n        ReplaceTransformer(ANSI_HIDE, '[HIDE]'),\n        ReplaceTransformer(ANSI_RESET_INTENSITY, '[RESET_INTENSITY]'),\n        ReplaceTransformer(ANSI_RESET_ITALIC, '[RESET_ITALIC]'),\n        ReplaceTransformer(ANSI_RESET_UNDERLINE, '[RESET_UNDERLINE]'),\n        ReplaceTransformer(ANSI_RESET_BLINK, '[RESET_BLINK]'),\n        ReplaceTransformer(ANSI_RESET_NEGATIVE, '[RESET_NEGATIVE]'),\n        ReplaceTransformer(ANSI_RESET_HIDE, '[RESET_HIDE]'),\n        ReplaceTransformer(ANSI_RESET_ALL, '[RESET_ALL]')\n    ])\n\n    with open(input_file) as f:\n        actual_lines = [transformer.transform(line) for line in f.read().splitlines()]\n\n    if GENERATE_REFERENCES:\n        with open(expected_file, 'w') as f:\n            for line in actual_lines:\n                f.write('%s\\n' % line)\n\n    with open(expected_file) as f:\n        expected_lines = f.read().splitlines()\n\n    assert actual_lines == expected_lines\n"
  },
  {
    "path": "tests/config/test_loader.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport pytest\n\nfrom rainbow.config.loader import ConfigLoader, PRECOMMANDS\nfrom rainbow.transformer import IdentityTransformer\nfrom rainbow.transformer import TransformerBuilder\n\n\ndef load_by_name(config):\n    stdout_builder = TransformerBuilder()\n    stderr_builder = TransformerBuilder()\n    errors = []\n\n    ConfigLoader(stdout_builder=stdout_builder,\n                 stderr_builder=stderr_builder,\n                 paths=['tests/data/cfg'],\n                 error_handler=errors.append) \\\n        .load_config_by_name(config)\n\n    return stdout_builder.build(), stderr_builder.build(), errors\n\n\ndef load_from_command_line(args):\n    stdout_builder = TransformerBuilder()\n    stderr_builder = TransformerBuilder()\n    errors = []\n\n    ConfigLoader(stdout_builder=stdout_builder,\n                 stderr_builder=stderr_builder,\n                 paths=['tests/data/cfg'],\n                 error_handler=errors.append) \\\n        .load_config_from_command_line(args)\n\n    return stdout_builder.build(), stderr_builder.build(), errors\n\n\ndef test_load_unresolvable_config_file():\n    (stdout_transformer, stderr_transformer, errors) = load_by_name('does_not_exist')\n    assert errors == ['Could not resolve config \"does_not_exist\"']\n\n\ndef test_load_empty_config_file():\n    (stdout_transformer, stderr_transformer, errors) = load_by_name(u'tests/data/cfg/config001.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_load_empty_config_file_from_command_line():\n    (stdout_transformer, stderr_transformer, errors) = load_from_command_line([u'config001'])\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_find_config_name_from_command_line_empty_args():\n    assert not ConfigLoader.find_config_name_from_command_line([])\n\n\ndef test_find_config_name_from_command_line_one_arg():\n    assert ConfigLoader.find_config_name_from_command_line(['foo']) == 'foo'\n\n\ndef test_find_config_name_from_command_line_several_args():\n    assert ConfigLoader.find_config_name_from_command_line(['foo', 'bar', 'bar']) == 'foo'\n\n\ndef test_find_config_name_from_command_line_full_path():\n    assert ConfigLoader.find_config_name_from_command_line(['/usr/bin/foo']) == 'foo'\n\n\n@pytest.mark.parametrize(\"precommand\", PRECOMMANDS)\ndef test_find_config_name_from_command_line_precommand(precommand):\n    assert ConfigLoader.find_config_name_from_command_line([precommand, 'foo']) == 'foo'\n\n\n@pytest.mark.parametrize(\"precommand\", PRECOMMANDS)\ndef test_find_config_name_from_command_line_precommand_with_args(precommand):\n    assert ConfigLoader.find_config_name_from_command_line([precommand, '--arg', 'foo']) == 'foo'\n\n\n@pytest.mark.parametrize(\"precommand\", PRECOMMANDS)\ndef test_find_config_name_from_command_line_full_path_precommand(precommand):\n    assert ConfigLoader.find_config_name_from_command_line([precommand, '/usr/bin/foo']) == 'foo'\n\n\n@pytest.mark.parametrize(\"precommand\", PRECOMMANDS)\ndef test_find_config_name_from_command_line_full_path_precommand_with_args(precommand):\n    assert ConfigLoader.find_config_name_from_command_line([precommand, '--arg', '/usr/bin/foo']) == 'foo'\n"
  },
  {
    "path": "tests/config/test_locator.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nfrom rainbow.config.locator import ConfigLocator\n\n\ndef test_locate_config_file_empty_path():\n    assert ConfigLocator([]).locate_config_file(\"tests/data/cfg/config001\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_inexistent_config_file_empty_path():\n    assert not ConfigLocator([]).locate_config_file(\"does_not_exist\")\n\n\ndef test_locate_config_file_none_in_path():\n    assert ConfigLocator([None]).locate_config_file(\"tests/data/cfg/config001\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_inexistent_config_file_none_in_path():\n    assert not ConfigLocator([None]).locate_config_file(\"does_not_exist\")\n\n\ndef test_locate_config_file_path_without_extension():\n    assert ConfigLocator().locate_config_file(\"tests/data/cfg/config001\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_config_file_path():\n    assert ConfigLocator().locate_config_file(\"tests/data/cfg/config001.cfg\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_config_file_filename():\n    assert ConfigLocator(['tests/data/cfg']).locate_config_file(\"config001.cfg\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_config_file_filename_without_extension():\n    assert ConfigLocator(['tests/data/cfg']).locate_config_file(\"config001\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_config_file_in_directory_filename():\n    assert ConfigLocator().locate_config_file_in_directory('tests/data/cfg',\n                                                           \"config001.cfg\") == \"tests/data/cfg/config001.cfg\"\n\n\ndef test_locate_config_file_in_directory_filename_without_extension():\n    assert ConfigLocator().locate_config_file_in_directory('tests/data/cfg',\n                                                           \"config001\") == \"tests/data/cfg/config001.cfg\"\n"
  },
  {
    "path": "tests/config/test_parser.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport sys\n\nimport pytest\n\nfrom rainbow import ansi\nfrom rainbow.config.parser import ConfigParser\nfrom rainbow.transformer import IdentityTransformer\nfrom rainbow.transformer import InsertBeforeAndAfterRegexTransformer\nfrom rainbow.transformer import ListTransformer\nfrom rainbow.transformer import TransformerBuilder\n\n\ndef parse(config):\n    stdout_builder = TransformerBuilder()\n    stderr_builder = TransformerBuilder()\n    errors = []\n\n    ConfigParser(stdout_builder=stdout_builder,\n                 stderr_builder=stderr_builder,\n                 paths=None,\n                 error_handler=errors.append) \\\n        .parse_file(config)\n\n    return stdout_builder.build(), stderr_builder.build(), errors\n\n\ndef test_parse_inexistent_config():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'does_not_exist')\n    assert errors == ['Could not open config file \"does_not_exist\"']\n\n\ndef test_parse_empty_config():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config001.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_empty_filters_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config002.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_empty_general_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config003.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_empty_filters_and_general_sections():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config004.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\n@pytest.mark.skipif(condition=sys.version_info[0] < 3, reason=\"Issue #2: Python 2 does not detect duplicate sections\")\ndef test_parse_two_empty_filters_sections():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config005.cfg')\n    assert errors == ['Duplicate section \"filters\" in \"tests/data/cfg/config005.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_one_filter():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config006.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_two_different_filters():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config007.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, ListTransformer)\n    assert isinstance(stderr_transformer, ListTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stderr_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[1].regex.pattern == 'WARN'\n    assert stderr_transformer.transformers[1].regex.pattern == 'WARN'\n    assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_YELLOW\n    assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_YELLOW\n    assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n\n\n@pytest.mark.skip(reason=\"Issue #2: Duplicate key support not implemented\")\ndef test_parse_two_times_same_filter():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config008.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, ListTransformer)\n    assert isinstance(stderr_transformer, ListTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stderr_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[1].regex.pattern == 'WARN'\n    assert stderr_transformer.transformers[1].regex.pattern == 'WARN'\n    assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n\n\n@pytest.mark.skip(reason=\"Issue #2: Support of filters in global section not implemented\")\ndef test_parse_filter_in_global_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config009.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_one_filter_and_stderr_setting_enabled():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config010.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_and_stderr_setting_enabled_uppercase():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config011.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_and_stderr_setting_disabled():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config012.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_and_stderr_setting_disabled_uppercase():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config013.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_and_stderr_setting_disabled_with_no():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config030.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_uppercase():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config014.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_one_filter_extra_spaces_before_regex():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config015.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_unknown_filter():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config016.cfg')\n    assert errors == ['Unknown filter \"foo\" in config \"tests/data/cfg/config016.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_unresolved_import():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config017.cfg')\n    assert errors == ['Failed to resolve import of \"foo\" in config \"tests/data/cfg/config017.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_unresolved_import_and_valid_filter():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config018.cfg')\n    assert errors == ['Failed to resolve import of \"foo\" in config \"tests/data/cfg/config018.cfg\"']\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_relative_import_without_extension():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config019.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_relative_import_with_extension():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config020.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_invalid_key_in_general_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config021.cfg')\n    assert errors == ['Invalid key \"foo\" in general section of config \"tests/data/cfg/config021.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_two_times_same_filter_once_in_config_once_in_import():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config022.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, ListTransformer)\n    assert isinstance(stderr_transformer, ListTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stderr_transformer.transformers[0].regex.pattern == 'ERROR'\n    assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.transformers[1].regex.pattern == 'WARNING'\n    assert stderr_transformer.transformers[1].regex.pattern == 'WARNING'\n    assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_multiple_relative_imports_without_extension():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config023.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_filter_using_filter_name():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config024.cfg')\n    assert not errors\n    assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer)\n    assert stdout_transformer.regex.pattern == 'ERROR'\n    assert stderr_transformer.regex.pattern == 'ERROR'\n    assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED\n    assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET\n    assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET\n\n\ndef test_parse_filter_with_empty_pattern():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config025.cfg')\n    assert errors == ['Empty pattern for \"red\" in config \"tests/data/cfg/config025.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_empty_imports_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config026.cfg')\n    assert errors == ['Empty imports section in config \"tests/data/cfg/config026.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_multiple_imports_with_empty_one():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config027.cfg')\n    assert errors == ['Empty import in config \"tests/data/cfg/config027.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_invalid_section():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config028.cfg')\n    assert errors == ['Invalid section \"foo\" in config \"tests/data/cfg/config028.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n\n\ndef test_parse_invalid_stderr_filtering_value():\n    (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config029.cfg')\n    assert errors == ['Invalid value \"foo\" for key \"enable-stderr-filtering\" in config \"tests/data/cfg/config029.cfg\"']\n    assert isinstance(stdout_transformer, IdentityTransformer)\n    assert isinstance(stderr_transformer, IdentityTransformer)\n"
  },
  {
    "path": "tests/data/cfg/config001.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n"
  },
  {
    "path": "tests/data/cfg/config002.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\n"
  },
  {
    "path": "tests/data/cfg/config003.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\n"
  },
  {
    "path": "tests/data/cfg/config004.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\n\n[filters]\n"
  },
  {
    "path": "tests/data/cfg/config005.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\n[filters]\n"
  },
  {
    "path": "tests/data/cfg/config006.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config007.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nred: ERROR\nyellow: WARN\n"
  },
  {
    "path": "tests/data/cfg/config008.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nred: ERROR\nred: WARN\n"
  },
  {
    "path": "tests/data/cfg/config009.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config010.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering=true\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config011.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering=True\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config012.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering=false\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config013.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering=False\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config014.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nRED: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config015.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nred:      ERROR\n"
  },
  {
    "path": "tests/data/cfg/config016.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nfoo: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config017.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: foo\n"
  },
  {
    "path": "tests/data/cfg/config018.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: foo\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config019.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: config006\n"
  },
  {
    "path": "tests/data/cfg/config020.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: config006.cfg\n"
  },
  {
    "path": "tests/data/cfg/config021.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nfoo: bar\n"
  },
  {
    "path": "tests/data/cfg/config022.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: config006\n\n[filters]\nred: WARNING\n"
  },
  {
    "path": "tests/data/cfg/config023.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: config006, config002\n"
  },
  {
    "path": "tests/data/cfg/config024.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nforeground-red: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config025.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nred:\n"
  },
  {
    "path": "tests/data/cfg/config026.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports:\n"
  },
  {
    "path": "tests/data/cfg/config027.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nimports: config001, , config002\n"
  },
  {
    "path": "tests/data/cfg/config028.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[foo]\n"
  },
  {
    "path": "tests/data/cfg/config029.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering=foo\n"
  },
  {
    "path": "tests/data/cfg/config030.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[general]\nenable-stderr-filtering: no\n\n[filters]\nred: ERROR\n"
  },
  {
    "path": "tests/data/cfg/config031.cfg",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[filters]\nforeground-red: test\nr: test\nred: test\nforeground-light-red: test\nlightred: test\nforeground-green: test\ng: test\ngreen: test\nforeground-light-green: test\nlightgreen: test\nforeground-yellow: test\ny: test\nyellow: test\nforeground-light-yellow: test\nlightyellow: test\nforeground-blue: test\nb: test\nblue: test\nforeground-light-blue: test\nlightblue: test\nforeground-magenta: test\nm: test\nmagenta: test\nforeground-cyan: test\nc: test\ncyan: test\nforeground-light-cyan: test\nlightcyan: test\nforeground-red-before: test\nred-before: test\nforeground-light-red-before: test\nlightred-before: test\nforeground-green-before: test\ngreen-before: test\nforeground-light-green-before: test\nlightgreen-before: test\nforeground-yellow-before: test\nyellow-before: test\nforeground-light-yellow-before: test\nlightyellow-before: test\nforeground-blue-before: test\nblue-before: test\nforeground-magenta-before: test\nforeground-light-blue-before: test\nlightblue-before: test\nmagenta-before: test\nforeground-cyan-before: test\ncyan-before: test\nforeground-light-cyan-before: test\nlightcyan-before: test\nforeground-reset-before: test\nreset-before: test\nforeground-red-after: test\nred-after: test\nforeground-light-red-after: test\nlightred-after: test\nforeground-green-after: test\ngreen-after: test\nforeground-light-green-after: test\nlightgreen-after: test\nforeground-yellow-after: test\nyellow-after: test\nforeground-light-yellow-after: test\nlightyellow-after: test\nforeground-blue-after: test\nblue-after: test\nforeground-light-blue-after: test\nlightblue-after: test\nforeground-magenta-after: test\nmagenta-after: test\nforeground-cyan-after: test\ncyan-after: test\nforeground-light-cyan-after: test\nlightcyan-after: test\nforeground-reset-after: test\nreset-after: test\nbackground-red: test\nbackground-light-red: test\nbackground-lightred: test\nbackground-green: test\nbackground-light-green: test\nbackground-lightgreen: test\nbackground-yellow: test\nbackground-light-yellow: test\nbackground-lightyellow: test\nbackground-blue: test\nbackground-light-blue: test\nbackground-lightblue: test\nbackground-magenta: test\nbackground-cyan: test\nbackground-light-cyan: test\nbackground-lightcyan: test\nbackground-red-before: test\nbackground-light-red-before: test\nbackground-lightred-before: test\nbackground-green-before: test\nbackground-light-green-before: test\nbackground-lightgreen-before: test\nbackground-yellow-before: test\nbackground-light-yellow-before: test\nbackground-lightyellow-before: test\nbackground-blue-before: test\nbackground-light-blue-before: test\nbackground-lightblue-before: test\nbackground-magenta-before: test\nbackground-cyan-before: test\nbackground-light-cyan-before: test\nbackground-lightcyan-before: test\nbackground-reset-before: test\nbackground-red-after: test\nbackground-light-red-after: test\nbackground-lightred-after: test\nbackground-green-after: test\nbackground-light-green-after: test\nbackground-lightgreen-after: test\nbackground-yellow-after: test\nbackground-light-yellow-after: test\nbackground-lightyellow-after: test\nbackground-blue-after: test\nbackground-light-blue-after: test\nbackground-lightblue-after: test\nbackground-magenta-after: test\nbackground-cyan-after: test\nbackground-light-cyan-after: test\nbackground-lightcyan-after: test\nbackground-reset-after: test\nbold: test\nbold-before: test\nbold-after: test\nfaint: test\nfaint-before: test\nfaint-after: test\nintensity-reset-before: test\nintensity-reset-after: test\nitalic: test\nitalic-before: test\nitalic-after: test\nitalic-reset-before: test\nitalic-reset-after: test\nunderline: test\nunderline-before: test\nunderline-after: test\nunderline-double: test\nunderline-double-before: test\nunderline-double-after: test\nunderline-reset-before: test\nunderline-reset-after: test\nblink: test\nblink-before: test\nblink-after: test\nblink-rapid: test\nblink-rapid-before: test\nblink-rapid-after: test\nblink-reset-before: test\nblink-reset-after: test\nnegative: test\nnegative-before: test\nnegative-after: test\nnegative-reset-before: test\nnegative-reset-after: test\nhide: test\nhide-before: test\nhide-after: test\nhide-reset-before: test\nhide-reset-after: test\n"
  },
  {
    "path": "tests/data/ref/df-001.log",
    "content": "Filesystem     1K-blocks      Used Available Use% Mounted on\ndev              8184284         0   8184284   0% /dev\nrun              8189212      1452   8187760   1% /run\n/dev/sda6      279005228  98120552 166688964  38% /\ntmpfs            8189212     74428   8114784   1% /dev/shm\ntmpfs            8189212         0   8189212   0% /sys/fs/cgroup\ntmpfs            8189212   1016812   7172400  13% /tmp\n/dev/sda2          97280     25975     71305  27% /boot/efi\n/dev/sdb1      976760828 902367760  74393068  93% /mnt/data1\ntmpfs            1637840        16   1637824   1% /run/user/120\ntmpfs            1637840        36   1637804   1% /run/user/1000\n"
  },
  {
    "path": "tests/data/ref/df-001.log.out",
    "content": "Filesystem     1K-blocks      Used Available Use% Mounted on\ndev              8184284         0   8184284   0% /dev\nrun              8189212      1452   8187760   1% /run\n/dev/sda6      279005228  98120552 166688964  38% /\ntmpfs            8189212     74428   8114784   1% /dev/shm\ntmpfs            8189212         0   8189212   0% /sys/fs/cgroup\ntmpfs            8189212   1016812   7172400  13% /tmp\n/dev/sda2          97280     25975     71305  27% /boot/efi\n/dev/sdb1      976760828 902367760  74393068  [FOREGROUND_RED]93%[FOREGROUND_RESET] /mnt/data1\ntmpfs            1637840        16   1637824   1% /run/user/120\ntmpfs            1637840        36   1637804   1% /run/user/1000\n"
  },
  {
    "path": "tests/data/ref/df-002.log",
    "content": "df: unrecognized option '--test'\nTry 'df --help' for more information.\n"
  },
  {
    "path": "tests/data/ref/df-002.log.out",
    "content": "df: unrecognized option '--test'\nTry 'df --help' for more information.\n"
  },
  {
    "path": "tests/data/ref/diff-001.log",
    "content": "diff: missing operand after 'diff'\ndiff: Try 'diff --help' for more information.\n"
  },
  {
    "path": "tests/data/ref/diff-001.log.out",
    "content": "diff: missing operand after 'diff'\ndiff: Try 'diff --help' for more information.\n"
  },
  {
    "path": "tests/data/ref/diff-002.log",
    "content": "0a1\n> #!/usr/bin/env python\n19,25c20\n< [clean]\n< paths = .cache,\n<         .tox,\n<         build,\n<         dist,\n<         rainbow.egg-info,\n<         .coverage\n---\n> import os\n27,29c22\n< [build_completion_bash]\n< shell = bash\n< output = build/completion/rainbow\n---\n> from setuptools import setup, find_packages\n31,33c24,25\n< [build_completion_zsh]\n< shell = zsh\n< output = build/completion/_rainbow\n---\n> from rainbow import VERSION\n> from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage\n35,39c27,76\n< [build_man_page]\n< output = build/man/rainbow.1\n< \n< [bdist_wheel]\n< universal = 1\n---\n> setup(\n>     name='rainbow',\n>     version=VERSION,\n>     author='Julien Nicoulaud',\n>     author_email='julien.nicoulaud@gmail.com',\n>     description='Colorize commands output or STDIN using patterns.',\n>     long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),\n>     license='GPLv3',\n>     url='https://github.com/nicoulaj/rainbow',\n>     keywords='color colorize colorizer pattern',\n>     classifiers=[\n>         'Development Status :: 5 - Production/Stable',\n>         'Environment :: Console',\n>         'Operating System :: MacOS :: MacOS X',\n>         'Operating System :: POSIX',\n>         'Topic :: System',\n>         'Topic :: Utilities',\n>         'Intended Audience :: Developers',\n>         'Intended Audience :: End Users/Desktop',\n>         'Intended Audience :: System Administrators',\n>         'Natural Language :: English',\n>         'Programming Language :: Python',\n>         'Programming Language :: Python :: 2',\n>         'Programming Language :: Python :: 2.6',\n>         'Programming Language :: Python :: 2.7',\n>         'Programming Language :: Python :: 3',\n>         'Programming Language :: Python :: 3.3',\n>         'Programming Language :: Python :: 3.4',\n>         'Programming Language :: Python :: 3.5',\n>         'Programming Language :: Python :: 3.6',\n>         'Programming Language :: Python :: Implementation :: CPython',\n>         'Programming Language :: Python :: Implementation :: PyPy',\n>         'License :: OSI Approved :: GNU General Public License (GPL)'\n>     ],\n>     packages=find_packages(exclude=['tests*']),\n>     include_package_data=True,\n>     data_files=[\n>         ('/etc/bash_completion.d', ['build/completion/rainbow']),\n>         ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']),\n>         ('/usr/share/man/man1', ['build/man/rainbow.1.gz'])\n>     ],\n>     scripts=['scripts/rainbow'],\n>     cmdclass={\n>         'clean': Clean,\n>         'build': Build,\n>         'build_completion_bash': GenerateCompletion,\n>         'build_completion_zsh': GenerateCompletion,\n>         'build_man_page': GenerateManPage\n>     }\n> )\n"
  },
  {
    "path": "tests/data/ref/diff-002.log.out",
    "content": "0a1\n> #!/usr/bin/env python\n19,25c20\n< [clean]\n< paths = .cache,\n<         .tox,\n<         build,\n<         dist,\n<         rainbow.egg-info,\n<         .coverage\n[FOREGROUND_RED]---[FOREGROUND_RESET]\n> import os\n27,29c22\n< [build_completion_bash]\n< shell = bash\n< output = build/completion/rainbow\n[FOREGROUND_RED]---[FOREGROUND_RESET]\n> from setuptools import setup, find_packages\n31,33c24,25\n< [build_completion_zsh]\n< shell = zsh\n< output = build/completion/_rainbow\n[FOREGROUND_RED]---[FOREGROUND_RESET]\n> from rainbow import VERSION\n> from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage\n35,39c27,76\n< [build_man_page]\n< output = build/man/rainbow.1\n< \n< [bdist_wheel]\n< universal = 1\n[FOREGROUND_RED]---[FOREGROUND_RESET]\n> setup(\n>     name='rainbow',\n>     version=VERSION,\n>     author='Julien Nicoulaud',\n>     author_email='julien.nicoulaud@gmail.com',\n>     description='Colorize commands output or STDIN using patterns.',\n>     long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),\n>     license='GPLv3',\n>     url='https://github.com/nicoulaj/rainbow',\n>     keywords='color colorize colorizer pattern',\n>     classifiers=[\n>         'Development Status :: 5 - Production/Stable',\n>         'Environment :: Console',\n>         'Operating System :: MacOS :: MacOS X',\n>         'Operating System :: POSIX',\n>         'Topic :: System',\n>         'Topic :: Utilities',\n>         'Intended Audience :: Developers',\n>         'Intended Audience :: End Users/Desktop',\n>         'Intended Audience :: System Administrators',\n>         'Natural Language :: English',\n>         'Programming Language :: Python',\n>         'Programming Language :: Python :: 2',\n>         'Programming Language :: Python :: 2.6',\n>         'Programming Language :: Python :: 2.7',\n>         'Programming Language :: Python :: 3',\n>         'Programming Language :: Python :: 3.3',\n>         'Programming Language :: Python :: 3.4',\n>         'Programming Language :: Python :: 3.5',\n>         'Programming Language :: Python :: 3.6',\n>         'Programming Language :: Python :: Implementation :: CPython',\n>         'Programming Language :: Python :: Implementation :: PyPy',\n>         'License :: OSI Approved :: GNU General Public License (GPL)'\n>     ],\n>     packages=find_packages(exclude=['tests*']),\n>     include_package_data=True,\n>     data_files=[\n>         ('/etc/bash_completion.d', ['build/completion/rainbow']),\n>         ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']),\n>         ('/usr/share/man/man1', ['build/man/rainbow.1.gz'])\n>     ],\n>     scripts=['scripts/rainbow'],\n>     cmdclass={\n>         'clean': Clean,\n>         'build': Build,\n>         'build_completion_bash': GenerateCompletion,\n>         'build_completion_zsh': GenerateCompletion,\n>         'build_man_page': GenerateManPage\n>     }\n> )\n"
  },
  {
    "path": "tests/data/ref/diff-003.log",
    "content": "--- setup.cfg\t2017-03-18 22:27:04.430726575 +0100\n+++ setup.py\t2017-03-19 11:54:17.386754769 +0100\n@@ -1,3 +1,4 @@\n+#!/usr/bin/env python\n # ----------------------------------------------------------------------\n # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n # copyright (c) 2010-2018 rainbow contributors\n@@ -16,24 +17,60 @@\n # along with this program.  If not, see <http://www.gnu.org/licenses/>.\n # ----------------------------------------------------------------------\n \n-[clean]\n-paths = .cache,\n-        .tox,\n-        build,\n-        dist,\n-        rainbow.egg-info,\n-        .coverage\n+import os\n \n-[build_completion_bash]\n-shell = bash\n-output = build/completion/rainbow\n+from setuptools import setup, find_packages\n \n-[build_completion_zsh]\n-shell = zsh\n-output = build/completion/_rainbow\n+from rainbow import VERSION\n+from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage\n \n-[build_man_page]\n-output = build/man/rainbow.1\n-\n-[bdist_wheel]\n-universal = 1\n+setup(\n+    name='rainbow',\n+    version=VERSION,\n+    author='Julien Nicoulaud',\n+    author_email='julien.nicoulaud@gmail.com',\n+    description='Colorize commands output or STDIN using patterns.',\n+    long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),\n+    license='GPLv3',\n+    url='https://github.com/nicoulaj/rainbow',\n+    keywords='color colorize colorizer pattern',\n+    classifiers=[\n+        'Development Status :: 5 - Production/Stable',\n+        'Environment :: Console',\n+        'Operating System :: MacOS :: MacOS X',\n+        'Operating System :: POSIX',\n+        'Topic :: System',\n+        'Topic :: Utilities',\n+        'Intended Audience :: Developers',\n+        'Intended Audience :: End Users/Desktop',\n+        'Intended Audience :: System Administrators',\n+        'Natural Language :: English',\n+        'Programming Language :: Python',\n+        'Programming Language :: Python :: 2',\n+        'Programming Language :: Python :: 2.6',\n+        'Programming Language :: Python :: 2.7',\n+        'Programming Language :: Python :: 3',\n+        'Programming Language :: Python :: 3.3',\n+        'Programming Language :: Python :: 3.4',\n+        'Programming Language :: Python :: 3.5',\n+        'Programming Language :: Python :: 3.6',\n+        'Programming Language :: Python :: Implementation :: CPython',\n+        'Programming Language :: Python :: Implementation :: PyPy',\n+        'License :: OSI Approved :: GNU General Public License (GPL)'\n+    ],\n+    packages=find_packages(exclude=['tests*']),\n+    include_package_data=True,\n+    data_files=[\n+        ('/etc/bash_completion.d', ['build/completion/rainbow']),\n+        ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']),\n+        ('/usr/share/man/man1', ['build/man/rainbow.1.gz'])\n+    ],\n+    scripts=['scripts/rainbow'],\n+    cmdclass={\n+        'clean': Clean,\n+        'build': Build,\n+        'build_completion_bash': GenerateCompletion,\n+        'build_completion_zsh': GenerateCompletion,\n+        'build_man_page': GenerateManPage\n+    }\n+)\n"
  },
  {
    "path": "tests/data/ref/diff-003.log.out",
    "content": "[FOREGROUND_RED]--- setup.cfg\t2017-03-18 22:27:04.430726575 +0100[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+++ setup.py\t2017-03-19 11:54:17.386754769 +0100[FOREGROUND_RESET]\n[FOREGROUND_MAGENTA]@@ -1,3 +1,4 @@[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+#!/usr/bin/env python[FOREGROUND_RESET]\n[FAINT] # ----------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT] # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow[RESET_INTENSITY]\n[FAINT] # copyright (c) 2010-2018 rainbow contributors[RESET_INTENSITY]\n[FOREGROUND_MAGENTA]@@ -16,24 +17,60 @@[FOREGROUND_RESET]\n[FAINT] # along with this program.  If not, see <http://www.gnu.org/licenses/>.[RESET_INTENSITY]\n[FAINT] # ----------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT] [RESET_INTENSITY]\n[FOREGROUND_RED]-[clean][FOREGROUND_RESET]\n[FOREGROUND_RED]-paths = .cache,[FOREGROUND_RESET]\n[FOREGROUND_RED]-        .tox,[FOREGROUND_RESET]\n[FOREGROUND_RED]-        build,[FOREGROUND_RESET]\n[FOREGROUND_RED]-        dist,[FOREGROUND_RESET]\n[FOREGROUND_RED]-        rainbow.egg-info,[FOREGROUND_RESET]\n[FOREGROUND_RED]-        .coverage[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+import os[FOREGROUND_RESET]\n[FAINT] [RESET_INTENSITY]\n[FOREGROUND_RED]-[build_completion_bash][FOREGROUND_RESET]\n[FOREGROUND_RED]-shell = bash[FOREGROUND_RESET]\n[FOREGROUND_RED]-output = build/completion/rainbow[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+from setuptools import setup, find_packages[FOREGROUND_RESET]\n[FAINT] [RESET_INTENSITY]\n[FOREGROUND_RED]-[build_completion_zsh][FOREGROUND_RESET]\n[FOREGROUND_RED]-shell = zsh[FOREGROUND_RESET]\n[FOREGROUND_RED]-output = build/completion/_rainbow[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+from rainbow import VERSION[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage[FOREGROUND_RESET]\n[FAINT] [RESET_INTENSITY]\n[FOREGROUND_RED]-[build_man_page][FOREGROUND_RESET]\n[FOREGROUND_RED]-output = build/man/rainbow.1[FOREGROUND_RESET]\n[FOREGROUND_RED]-[FOREGROUND_RESET]\n[FOREGROUND_RED]-[bdist_wheel][FOREGROUND_RESET]\n[FOREGROUND_RED]-universal = 1[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+setup([FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    name='rainbow',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    version=VERSION,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    author='Julien Nicoulaud',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    author_email='julien.nicoulaud@gmail.com',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    description='Colorize commands output or STDIN using patterns.',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    license='GPLv3',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    url='https://github.com/nicoulaj/rainbow',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    keywords='color colorize colorizer pattern',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    classifiers=[[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Development Status :: 5 - Production/Stable',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Environment :: Console',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Operating System :: MacOS :: MacOS X',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Operating System :: POSIX',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Topic :: System',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Topic :: Utilities',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Intended Audience :: Developers',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Intended Audience :: End Users/Desktop',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Intended Audience :: System Administrators',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Natural Language :: English',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 2',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 2.6',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 2.7',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 3',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 3.3',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 3.4',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 3.5',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: 3.6',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: Implementation :: CPython',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'Programming Language :: Python :: Implementation :: PyPy',[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'License :: OSI Approved :: GNU General Public License (GPL)'[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    ],[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    packages=find_packages(exclude=['tests*']),[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    include_package_data=True,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    data_files=[[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        ('/etc/bash_completion.d', ['build/completion/rainbow']),[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']),[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        ('/usr/share/man/man1', ['build/man/rainbow.1.gz'])[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    ],[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    scripts=['scripts/rainbow'],[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    cmdclass={[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'clean': Clean,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'build': Build,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'build_completion_bash': GenerateCompletion,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'build_completion_zsh': GenerateCompletion,[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+        'build_man_page': GenerateManPage[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+    }[FOREGROUND_RESET]\n[FOREGROUND_GREEN]+)[FOREGROUND_RESET]\n"
  },
  {
    "path": "tests/data/ref/env-001.log",
    "content": "LANG=C\nDISPLAY=:1\nSHLVL=1\nLOGNAME=nicoulaj\nXDG_VTNR=2\nFREETYPE_PROPERTIES=truetype:interpreter-version=38\nPWD=/home/nicoulaj/workspace/rainbow\nHG=/usr/bin/hg\nMOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins\nXAUTHORITY=/run/user/1000/gdm/Xauthority\nGIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop\nMAVEN_OPTS=-Xmx512m\nJOURNAL_STREAM=8:248308\nANT_HOME=/usr/share/apache-ant\nXDG_SESSION_ID=c4\nDESKTOP_SESSION=cinnamon\nQT_QPA_PLATFORMTHEME=qt5ct\nXDG_SESSION_DESKTOP=cinnamon\nGDMSESSION=cinnamon\nUSERNAME=nicoulaj\nWINDOWPATH=2\nCOLORTERM=truecolor\nGNOME_DESKTOP_SESSION_ID=this-is-deprecated\nCINNAMON_VERSION=3.2.8\nDBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus\nTERMINATOR_UUID=urn:uuid:9aee5f5b-e7f2-4d9e-9974-58474fbaed2a\nGTK_OVERLAY_SCROLLING=1\nGJS_DEBUG_TOPICS=JS ERROR;JS LOG\nTERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d\nVTE_VERSION=4601\nTERMINATOR_DBUS_PATH=/net/tenshu/Terminator2\nGDM_LANG=fr_FR.utf8\nSHELL=/bin/zsh\nGRADLE_HOME=/usr/share/java/gradle\nXDG_SESSION_TYPE=x11\nGJS_DEBUG_OUTPUT=stderr\nTERM=xterm-256color\nGTK_MODULES=canberra-gtk-module\nSESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369\nXDG_CURRENT_DESKTOP=X-Cinnamon\nPATH=/home/nicoulaj/bin/systemd:/home/nicoulaj/bin/arch:/usr/lib/colorgcc/bin:/home/nicoulaj/.gem/ruby/2.4.0/bin:/home/nicoulaj/bin:/opt/jython/bin/:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl\nSSH_AUTH_SOCK=/run/user/1000/keyring/ssh\nHOME=/home/nicoulaj\nXDG_SEAT=seat0\nANDROID_HOME=/opt/android-sdk\nXDG_RUNTIME_DIR=/run/user/1000\nGIO_LAUNCHED_DESKTOP_FILE_PID=17585\nUSER=nicoulaj\nOLDPWD=/home/nicoulaj/workspace/rainbow\nMAIN_USER_HOME=/home/nicoulaj\nMAIN_USER=nicoulaj\nHISTFILE=/home/nicoulaj/.zshhistory\nHISTFILESIZE=65536\nHISTSIZE=4096\nSAVEHIST=4096\nEDITOR=vim\nVISUAL=geany\nBROWSER=google-chrome\nPAGER=less\nMANPAGER=less\nLESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS\nLESSCHARSET=utf-8\nLESSHISTFILE=/home/nicoulaj/.lesshst\nLESSHISTSIZE=2000\nLS_COLORS=no=00:fi=00:di=00;38;05;012:ln=target:pi=38;05;142;48;05;235:so=01;38;05;176:do=01;38;05;176:bd=38;05;142;48;05;235;01:cd=38;05;142;48;05;235;01:or=01;06;38;05;254;48;05;124:mi=01;05;38;05;254;48;05;124:su=38;05;255;48;05;124:sg=38;05;237;48;05;221:tw=38;05;16;48;05;41:ow=34;42:st=01;38;05;254;48;05;21:ex=01;38;05;46:*.tar=00;38;05;33:*.tgz=00;38;05;33:*.svgz=00;38;05;33:*.arj=00;38;05;33:*.taz=00;38;05;33:*.lzh=00;38;05;33:*.lzma=00;38;05;33:*.zip=00;38;05;33:*.z=00;38;05;33:*.Z=00;38;05;33:*.dz=00;38;05;33:*.gz=00;38;05;33:*.bz2=00;38;05;33:*.bz=00;38;05;33:*.tbz2=00;38;05;33:*.xz=00;38;05;33:*.tz=00;38;05;33:*.deb=00;38;05;33:*.rpm=00;38;05;33:*.jar=00;38;05;33:*.rar=00;38;05;33:*.ace=00;38;05;33:*.zoo=00;38;05;33:*.cpio=00;38;05;33:*.7z=00;38;05;33:*.rz=00;38;05;33:*.sqfs=00;38;05;33:*.sqfs3=00;38;05;33:*.db=00;38;05;33:*.sqlite=00;38;05;33:*.iso=00;38;05;33:*.pdb=00;38;05;33:*.img=00;38;05;33:*.gho=00;38;05;33:*.yml=00;38;05;33:*.bib=00;38;05;33:*.jpg=00;38;05;170:*.eps=00;38;05;170:*.JPG=00;38;05;170:*.jpeg=00;38;05;170:*.gif=00;38;05;170:*.bmp=00;38;05;170:*.pbm=00;38;05;170:*.pgm=00;38;05;170:*.ppm=00;38;05;170:*.tga=00;38;05;170:*.xbm=00;38;05;170:*.xpm=00;38;05;170:*.tif=00;38;05;170:*.tiff=00;38;05;170:*.png=00;38;05;170:*.svg=00;38;05;170:*.mng=00;38;05;170:*.pcx=00;38;05;170:*.mov=00;38;05;197:*.mpg=00;38;05;197:*.mpeg=00;38;05;197:*.m2v=00;38;05;197:*.mkv=00;38;05;197:*.ogm=00;38;05;197:*.mp4=00;38;05;197:*.m4v=00;38;05;197:*.mp4v=00;38;05;197:*.vob=00;38;05;197:*.qt=00;38;05;197:*.nuv=00;38;05;197:*.wmv=00;38;05;197:*.ogv=00;38;05;197:*.asf=00;38;05;197:*.rm=00;38;05;197:*.rmvb=00;38;05;197:*.flc=00;38;05;197:*.flv=00;38;05;197:*.avi=00;38;05;197:*.AVI=00;38;05;197:*.3gp=00;38;05;197:*.fli=00;38;05;197:*.gl=00;38;05;197:*.dl=00;38;05;197:*.xcf=00;38;05;197:*.xwd=00;38;05;197:*.yuv=00;38;05;197:*.pdf=00;38;05;231:*.ps=00;38;05;123:*.patch=00;38;05;123:*.diff=00;38;05;123:*.log=00;38;05;123:*.doc=00;38;05;231:*.chm=00;38;05;123:*.css=00;38;05;123:*.dsl=00;38;05;123:*.ebuild=00;38;05;123:*.htm=00;38;05;231:*.html=00;38;05;231:*.odb=00;38;05;123:*.odf=00;38;05;231:*.odg=00;38;05;123:*.odp=00;38;05;123:*.ods=00;38;05;123:*.odt=00;38;05;123:*.rnc=00;38;05;123:*.rng=00;38;05;123:*.sgml=00;38;05;123:*.xml=00;38;05;123:*.xsl=00;38;05;123:*.rst=01;38;05;147:*.lyx=01;38;05;147:*.mkd=01;38;05;147:*.mdown=01;38;05;147:*.markdown=01;38;05;147:*.md=01;38;05;147:*.lyx=01;38;05;147:*.tex=01;38;05;147:*.txt=01;38;05;123:*INSTALL=01;38;05;123:*FAQ=01;38;05;123:*TODO=01;38;05;123:*README=01;38;05;123:*README.txt=01;38;05;123:*README.md=01;38;05;123:*README.markdown=01;38;05;123:*readme.txt=01;38;05;123:*COPYING=01;38;05;123:*LICENSE=01;38;05;123:*.aac=01;38;05;132:*.au=01;38;05;132:*.flac=01;38;05;132:*.gsf=01;38;05;132:*.h2song=01;38;05;132:*.mid=01;38;05;132:*.midi=01;38;05;132:*.mka=01;38;05;132:*.mp3=01;38;05;132:*.mpc=01;38;05;132:*.ogg=01;38;05;132:*.ra=01;38;05;132:*.rg=01;38;05;132:*.tta=01;38;05;132:*.wav=01;38;05;132:*.wma=01;38;05;132:*.cfg=00;38;05;227:*.conf=00;38;05;227:*rc=00;38;05;227:*.ini=00;38;05;227:*.reg=00;38;05;227:*.F=00;38;05;172:*.c=00;38;05;172:*.cc=00;38;05;172:*.cpp=00;38;05;172:*.cpp=00;38;05;172:*.cxx=00;38;05;172:*.f=00;38;05;172:*.f90=00;38;05;172:*.h=00;38;05;172:*.hs=00;38;05;172:*.lua=00;38;05;172:*.mp=00;38;05;172:*.pl=00;38;05;172:*.po=00;38;05;172:*.py=00;38;05;172:*.sh=00;38;05;172:*.bash=00;38;05;172:*.zsh=00;38;05;172:*.gmo=00;38;05;172:*.ko=00;38;05;172:*.mo=00;38;05;172:*.o=00;38;05;172:*.rb=00;38;05;172:*Makefile=00;38;05;172:*CMakeLists.txt=00;38;05;172:*.cmake=00;38;05;172:*.java=00;38;05;172:*.as=00;38;05;172:*.mxml=00;38;05;172:*.groovy=00;38;05;172:*.gtmpl=00;38;05;172:*pom.xml=00;38;05;172:*build.xml=00;38;05;172:*.flex=00;38;05;172:*.cup=00;38;05;172:*.btm=00;38;05;172:*.gitignore=00;38;05;245:*.gitattributes=00;38;05;245:*.gitmodules=00;38;05;245:*.svnignore=00;38;05;245:*.hgignore=00;38;05;245:*.hgtags=00;38;05;245:*.settings=00;38;05;245:*.project=00;38;05;245:*.classpath=00;38;05;245:*.iml=00;38;05;245:*.iws=00;38;05;245:*.ipr=00;38;05;245:*~=00;38;05;008:*.exe=00;38;05;26:\nLESS_TERMCAP_mb=\u001b[1m\u001b[38;5;12m\nLESS_TERMCAP_md=\u001b[1m\u001b[38;5;12m\nLESS_TERMCAP_me=\u001b(B\u001b[m\nLESS_TERMCAP_so=\u001b[48;5;8m\u001b[38;5;15m\nLESS_TERMCAP_se=\u001b(B\u001b[m\nLESS_TERMCAP_us=\u001b[4m\nLESS_TERMCAP_ue=\u001b[24m\u001b(B\u001b[m\nLESS_TERMCAP_mr=\u001b[7m\u001b[1m\nLESS_TERMCAP_mh=\u001b[1m\nLESSOPEN=| src-hilite-lesspipe.sh %s\nANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger\nWORKON_HOME=/home/nicoulaj/.virtualenvs\nPROJECT_HOME=/home/nicoulaj/workspace\n_=/usr/bin/env\n"
  },
  {
    "path": "tests/data/ref/env-001.log.out",
    "content": "[FOREGROUND_BLUE][BOLD]LANG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]C[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]DISPLAY[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]1[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]SHLVL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]1[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LOGNAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_VTNR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]FREETYPE_PROPERTIES[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]truetype[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]interpreter-version=38[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]PWD[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace/rainbow[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]HG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/bin/hg[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]MOZ_PLUGIN_PATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/lib/mozilla/plugins[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XAUTHORITY[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000/gdm/Xauthority[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GIO_LAUNCHED_DESKTOP_FILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/applications/terminator.desktop[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]MAVEN_OPTS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]-Xmx512m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]JOURNAL_STREAM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]8[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]248308[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]ANT_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/apache-ant[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_SESSION_ID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]c4[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]DESKTOP_SESSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]QT_QPA_PLATFORMTHEME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]qt5ct[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_SESSION_DESKTOP[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GDMSESSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]USERNAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]WINDOWPATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]COLORTERM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]truecolor[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GNOME_DESKTOP_SESSION_ID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]this-is-deprecated[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]CINNAMON_VERSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]3.2.8[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]DBUS_SESSION_BUS_ADDRESS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]unix[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]path=/run/user/1000/bus[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]TERMINATOR_UUID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]urn[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]uuid[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]9aee5f5b-e7f2-4d9e-9974-58474fbaed2a[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GTK_OVERLAY_SCROLLING[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]1[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GJS_DEBUG_TOPICS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]JS ERROR[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]JS LOG[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]TERMINATOR_DBUS_NAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]net.tenshu.Terminator20x1a6021154d881d[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]VTE_VERSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4601[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]TERMINATOR_DBUS_PATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/net/tenshu/Terminator2[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GDM_LANG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]fr_FR.utf8[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]SHELL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/bin/zsh[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GRADLE_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/java/gradle[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_SESSION_TYPE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]x11[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GJS_DEBUG_OUTPUT[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]stderr[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]TERM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]xterm-256color[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GTK_MODULES[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]canberra-gtk-module[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]SESSION_MANAGER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]local/storm[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]@/tmp/.ICE-unix/31369[BOLD][FOREGROUND_BLUE],[FOREGROUND_RESET][RESET_INTENSITY]unix/storm[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/tmp/.ICE-unix/31369[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_CURRENT_DESKTOP[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]X-Cinnamon[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]PATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/bin/systemd[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/home/nicoulaj/bin/arch[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/lib/colorgcc/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/home/nicoulaj/.gem/ruby/2.4.0/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/home/nicoulaj/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/opt/jython/bin/[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/local/sbin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/local/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/opt/android-sdk/platform-tools[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/opt/android-sdk/tools[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/opt/android-sdk/tools/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/lib/jvm/default/bin[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/bin/site_perl[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/bin/vendor_perl[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]/usr/bin/core_perl[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]SSH_AUTH_SOCK[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000/keyring/ssh[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_SEAT[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]seat0[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]ANDROID_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/opt/android-sdk[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]XDG_RUNTIME_DIR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]GIO_LAUNCHED_DESKTOP_FILE_PID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]17585[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]USER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]OLDPWD[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace/rainbow[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]MAIN_USER_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]MAIN_USER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]HISTFILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.zshhistory[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]HISTFILESIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]65536[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]HISTSIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4096[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]SAVEHIST[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4096[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]EDITOR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]vim[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]VISUAL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]geany[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]BROWSER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]google-chrome[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]PAGER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]less[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]MANPAGER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]less[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESSCHARSET[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]utf-8[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESSHISTFILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.lesshst[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESSHISTSIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2000[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LS_COLORS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]no=00[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]fi=00[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]di=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]012[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]ln=target[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]pi=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]142[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]235[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]so=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]176[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]do=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]176[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]bd=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]142[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]235[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]01[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]cd=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]142[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]235[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]01[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]or=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]06[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]254[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]124[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]mi=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]254[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]124[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]su=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]255[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]124[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]sg=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]237[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]221[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]tw=38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]16[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]41[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]ow=34[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]42[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]st=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]254[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]21[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]ex=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]46[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tar=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tgz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.svgz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.arj=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.taz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.lzh=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.lzma=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.zip=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.z=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.Z=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.dz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.bz2=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.bz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tbz2=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.deb=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rpm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.jar=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rar=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ace=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.zoo=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cpio=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.7z=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rz=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.sqfs=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.sqfs3=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.db=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.sqlite=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.iso=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pdb=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.img=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gho=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.yml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.bib=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]33[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.jpg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.eps=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.JPG=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.jpeg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gif=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.bmp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pbm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pgm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ppm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tga=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xbm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xpm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tif=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tiff=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.png=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.svg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mng=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pcx=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]170[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mov=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mpg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mpeg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.m2v=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mkv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ogm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mp4=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.m4v=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mp4v=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.vob=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.qt=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.nuv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.wmv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ogv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.asf=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rmvb=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.flc=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.flv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.avi=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.AVI=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.3gp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.fli=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.dl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xcf=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xwd=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.yuv=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]197[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pdf=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]231[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ps=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.patch=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.diff=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.log=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.doc=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]231[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.chm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.css=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.dsl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ebuild=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.htm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]231[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.html=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]231[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.odb=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.odf=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]231[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.odg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.odp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ods=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.odt=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rnc=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rng=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.sgml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.xsl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rst=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.lyx=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mkd=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mdown=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.markdown=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.md=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.lyx=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tex=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]147[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.txt=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*INSTALL=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*FAQ=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*TODO=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*README=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*README.txt=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*README.md=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*README.markdown=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*readme.txt=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*COPYING=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*LICENSE=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]123[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.aac=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.au=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.flac=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gsf=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.h2song=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mid=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.midi=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mka=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mp3=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mpc=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ogg=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ra=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rg=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.tta=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.wav=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.wma=01[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]132[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cfg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]227[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.conf=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]227[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*rc=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]227[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ini=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]227[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.reg=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]227[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.F=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.c=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cc=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cpp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cpp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cxx=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.f=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.f90=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.h=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.hs=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.lua=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mp=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.pl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.po=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.py=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.sh=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.bash=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.zsh=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gmo=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ko=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mo=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.o=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.rb=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*Makefile=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*CMakeLists.txt=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cmake=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.java=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.as=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.mxml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.groovy=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gtmpl=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*pom.xml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*build.xml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.flex=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.cup=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.btm=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]172[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gitignore=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gitattributes=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.gitmodules=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.svnignore=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.hgignore=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.hgtags=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.settings=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.project=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.classpath=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.iml=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.iws=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.ipr=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]245[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*~=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]008[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]*.exe=00[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]05[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]26[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY][RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mb[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD]\u001b[38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]12m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_md[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD]\u001b[38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]12m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_me[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]\u001b(B\u001b[m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_so[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]\u001b[48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]8m\u001b[38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]15m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_se[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]\u001b(B\u001b[m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_us[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][UNDERLINE][RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_ue[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][RESET_UNDERLINE]\u001b(B\u001b[m[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mr[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][NEGATIVE][BOLD][RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mh[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][RESET_ALL]\n[FOREGROUND_BLUE][BOLD]LESSOPEN[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]| src-hilite-lesspipe.sh %s[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]ANT_ARGS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]-logger org.apache.tools.ant.listener.AnsiColorLogger[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]WORKON_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.virtualenvs[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]PROJECT_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace[RESET_ALL]\n[FOREGROUND_BLUE][BOLD]_[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/bin/env[RESET_ALL]\n"
  },
  {
    "path": "tests/data/ref/host-001.log",
    "content": "google.com has address 216.58.205.14\ngoogle.com has IPv6 address 2a00:1450:4007:80a::200e\ngoogle.com mail is handled by 10 aspmx.l.google.com.\ngoogle.com mail is handled by 50 alt4.aspmx.l.google.com.\ngoogle.com mail is handled by 20 alt1.aspmx.l.google.com.\ngoogle.com mail is handled by 30 alt2.aspmx.l.google.com.\ngoogle.com mail is handled by 40 alt3.aspmx.l.google.com.\n"
  },
  {
    "path": "tests/data/ref/host-001.log.out",
    "content": "[BOLD]google.com has address 216.58.205.14[RESET_INTENSITY]\ngoogle.com has IPv6 address 2a00:1450:4007:80a::200e\n[BOLD]google.com mail is handled by 10 aspmx.l.google.com.[RESET_INTENSITY]\n[BOLD]google.com mail is handled by 50 alt4.aspmx.l.google.com.[RESET_INTENSITY]\n[BOLD]google.com mail is handled by 20 alt1.aspmx.l.google.com.[RESET_INTENSITY]\n[BOLD]google.com mail is handled by 30 alt2.aspmx.l.google.com.[RESET_INTENSITY]\n[BOLD]google.com mail is handled by 40 alt3.aspmx.l.google.com.[RESET_INTENSITY]\n"
  },
  {
    "path": "tests/data/ref/host-002.log",
    "content": "Host wwwww.google.com not found: 3(NXDOMAIN)\n"
  },
  {
    "path": "tests/data/ref/host-002.log.out",
    "content": "Host wwwww.google.com not found: 3(NXDOMAIN)\n"
  },
  {
    "path": "tests/data/ref/ifconfig-001.log",
    "content": "docker0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500\n        inet 172.17.0.1  netmask 255.255.0.0  broadcast 0.0.0.0\n        ether 02:42:9f:f3:01:56  txqueuelen 0  (Ethernet)\n        RX packets 0  bytes 0 (0.0 B)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 0  bytes 0 (0.0 B)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n\neno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500\n        inet 192.168.1.2  netmask 255.255.255.0  broadcast 192.168.1.255\n        inet6 2a01:cb15:8281:8a00:d349:122f:d366:b85b  prefixlen 64  scopeid 0x0<global>\n        inet6 fe80::d1e9:e05d:707a:6a84  prefixlen 64  scopeid 0x20<link>\n        ether 40:16:7e:ac:38:09  txqueuelen 1000  (Ethernet)\n        RX packets 3064555  bytes 3647530318 (3.3 GiB)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 1233714  bytes 151930472 (144.8 MiB)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n        device interrupt 20  memory 0xf7200000-f7220000  \n\nlo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536\n        inet 127.0.0.1  netmask 255.0.0.0\n        inet6 ::1  prefixlen 128  scopeid 0x10<host>\n        loop  txqueuelen 1000  (Local Loopback)\n        RX packets 346116  bytes 281096663 (268.0 MiB)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 346116  bytes 281096663 (268.0 MiB)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n\n"
  },
  {
    "path": "tests/data/ref/ifconfig-001.log.out",
    "content": "[UNDERLINE]docker0:[RESET_UNDERLINE] flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500\n        inet 172.17.0.1  netmask 255.255.0.0  broadcast 0.0.0.0\n        ether 02:42:9f:f3:01:56  txqueuelen 0  (Ethernet)\n        RX packets 0  bytes 0 (0.0 B)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 0  bytes 0 (0.0 B)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n\n[UNDERLINE]eno1:[RESET_UNDERLINE] flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500\n        inet 192.168.1.2  netmask 255.255.255.0  broadcast 192.168.1.255\n        inet6 2a01:cb15:8281:8a00:d349:122f:d366:b85b  prefixlen 64  scopeid 0x0<global>\n        inet6 fe80::d1e9:e05d:707a:6a84  prefixlen 64  scopeid 0x20<link>\n        ether 40:16:7e:ac:38:09  txqueuelen 1000  (Ethernet)\n        RX packets 3064555  bytes 3647530318 (3.3 GiB)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 1233714  bytes 151930472 (144.8 MiB)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n        device interrupt 20  memory 0xf7200000-f7220000  \n\n[UNDERLINE]lo:[RESET_UNDERLINE] flags=73<UP,LOOPBACK,RUNNING>  mtu 65536\n        inet 127.0.0.1  netmask 255.0.0.0\n        inet6 ::1  prefixlen 128  scopeid 0x10<host>\n        loop  txqueuelen 1000  (Local Loopback)\n        RX packets 346116  bytes 281096663 (268.0 MiB)\n        RX errors 0  dropped 0  overruns 0  frame 0\n        TX packets 346116  bytes 281096663 (268.0 MiB)\n        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0\n\n"
  },
  {
    "path": "tests/data/ref/ifconfig-002.log",
    "content": "ifconfig: option `--test' not recognised.\nifconfig: `--help' gives usage information.\n"
  },
  {
    "path": "tests/data/ref/ifconfig-002.log.out",
    "content": "[UNDERLINE]ifconfig:[RESET_UNDERLINE] option `--test' not recognised.\n[UNDERLINE]ifconfig:[RESET_UNDERLINE] `--help' gives usage information.\n"
  },
  {
    "path": "tests/data/ref/java-stack-trace-001.log",
    "content": "Exception in thread \"main\" java.lang.NullPointerException\n        at com.example.myproject.Book.getTitle(Book.java:16)\n        at com.example.myproject.Author.getBookTitles(Author.java:25)\n        at com.example.myproject.Bootstrap.main(Bootstrap.java:14)\n"
  },
  {
    "path": "tests/data/ref/java-stack-trace-001.log.out",
    "content": "[FOREGROUND_RED]Exception in thread \"main\" java.lang.NullPointerException[FOREGROUND_RESET]\n[FOREGROUND_RED]        at com.example.myproject.Book.getTitle(Book.java:16)[FOREGROUND_RESET]\n[FOREGROUND_RED]        at com.example.myproject.Author.getBookTitles(Author.java:25)[FOREGROUND_RESET]\n[FOREGROUND_RED]        at com.example.myproject.Bootstrap.main(Bootstrap.java:14)[FOREGROUND_RESET]\n"
  },
  {
    "path": "tests/data/ref/jboss-001.log",
    "content": ""
  },
  {
    "path": "tests/data/ref/jboss-001.log.out",
    "content": ""
  },
  {
    "path": "tests/data/ref/md5sum-001.log",
    "content": "0bc2ee1037199736ad2b8b144f7834f1  setup.py\n"
  },
  {
    "path": "tests/data/ref/md5sum-001.log.out",
    "content": "[FAINT]0bc2ee1037199736ad2b8b144f7834f1[RESET_INTENSITY]  setup.py\n"
  },
  {
    "path": "tests/data/ref/md5sum-002.log",
    "content": "md5sum: setup.pyy: No such file or directory\n"
  },
  {
    "path": "tests/data/ref/md5sum-002.log.out",
    "content": "[FAINT]md5sum:[RESET_INTENSITY] setup.pyy: No such file or directory\n"
  },
  {
    "path": "tests/data/ref/mvn-001.log",
    "content": "[INFO] Scanning for projects...\n[INFO]                                                                         \n[INFO] ------------------------------------------------------------------------\n[INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT\n[INFO] ------------------------------------------------------------------------\nDownloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.pom\n3/5 KB   \r5/5 KB   \r         \rDownloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.pom (5 KB at 11.0 KB/sec)\nDownloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.jar\n3/30 KB   \r5/30 KB   \r8/30 KB   \r11/30 KB   \r13/30 KB   \r16/30 KB   \r19/30 KB   \r21/30 KB   \r24/30 KB   \r27/30 KB   \r29/30 KB   \r30/30 KB   \r           \rDownloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.jar (30 KB at 365.0 KB/sec)\n[INFO] \n[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---\n\n-------------------------------------------------------\n T E S T S\n-------------------------------------------------------\nRunning TestSuite\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.276 sec - in TestSuite\n\nResults :\n\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0\n\n[INFO] \n[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---\n[INFO] Building: IT-01/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (4.4 s)\n[INFO] Building: IT-03/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.0 s)\n[INFO] Building: IT-02/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[INFO] Building: IT-05/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.5 s)\n[INFO] Building: IT-04/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.9 s)\n[INFO] -------------------------------------------------\n[INFO] Build Summary:\n[INFO]   Passed: 5, Failed: 0, Errors: 0, Skipped: 0\n[INFO] -------------------------------------------------\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] ------------------------------------------------------------------------\n[INFO] BUILD SUCCESS\n[INFO] ------------------------------------------------------------------------\n[INFO] Total time: 20.525 s\n[INFO] Finished at: 2017-03-19T16:27:04+01:00\n[INFO] Final Memory: 35M/329M\n[INFO] ------------------------------------------------------------------------\n"
  },
  {
    "path": "tests/data/ref/mvn-001.log.out",
    "content": "[FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]...\n[INFO]                                                                         \n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FOREGROUND_MAGENTA]Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.pom[FOREGROUND_RESET]\n3/5 KB   \n5/5 KB   \n         \nDownloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.pom (5 KB at 11.0 KB/sec)\n[FOREGROUND_MAGENTA]Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.jar[FOREGROUND_RESET]\n3/30 KB   \n5/30 KB   \n8/30 KB   \n11/30 KB   \n13/30 KB   \n16/30 KB   \n19/30 KB   \n21/30 KB   \n24/30 KB   \n27/30 KB   \n29/30 KB   \n30/30 KB   \n           \nDownloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.jar (30 KB at 365.0 KB/sec)\n[INFO] \n[FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY]\n\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\n[FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET]\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\nRunning TestSuite\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.276 sec - in TestSuite[FOREGROUND_RESET]\n\n[BOLD]Results :[RESET_INTENSITY]\n\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET]\n\n[INFO] \n[FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Building: IT-01/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (4.4 s)\n[INFO] Building: IT-03/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.0 s)\n[INFO] Building: IT-02/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[INFO] Building: IT-05/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.5 s)\n[INFO] Building: IT-04/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.9 s)\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[INFO] Build Summary:\n[INFO]   Passed: 5, Failed: 0, Errors: 0, Skipped: 0\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[FAINT][INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FOREGROUND_GREEN][INFO] BUILD SUCCESS[FOREGROUND_RESET]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT][INFO] Total time: 20.525 s[RESET_INTENSITY]\n[FAINT][INFO] Finished at: 2017-03-19T16:27:04+01:00[RESET_INTENSITY]\n[FAINT][INFO] Final Memory: 35M/329M[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n"
  },
  {
    "path": "tests/data/ref/mvn-002.log",
    "content": "[INFO] Scanning for projects...\n[INFO]                                                                         \n[INFO] ------------------------------------------------------------------------\n[INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT\n[INFO] ------------------------------------------------------------------------\n[INFO] \n[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---\n\n-------------------------------------------------------\n T E S T S\n-------------------------------------------------------\nRunning TestSuite\nTests run: 28, Failures: 28, Errors: 0, Skipped: 0, Time elapsed: 1.274 sec <<< FAILURE! - in TestSuite\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.446 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.021 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.022 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.021 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.016 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.026 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.025 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.027 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.031 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.022 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.012 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.016 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.026 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.02 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\n\nResults :\n\nFailed tests: \nnet.nicoulaj.compilecommand.CompileCommandProcessorTest.test(net.nicoulaj.compilecommand.CompileCommandProcessorTest)\n  Run 1: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 2: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 3: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 4: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 5: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 6: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 7: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 8: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 9: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 10: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 11: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 12: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 13: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 14: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 15: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 16: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 17: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 18: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 19: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 20: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 21: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 22: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 23: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 24: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 25: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 26: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 27: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 28: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n\n\nTests run: 1, Failures: 1, Errors: 0, Skipped: 0\n\n[INFO] ------------------------------------------------------------------------\n[INFO] BUILD FAILURE\n[INFO] ------------------------------------------------------------------------\n[INFO] Total time: 3.563 s\n[INFO] Finished at: 2017-03-19T16:28:06+01:00\n[INFO] Final Memory: 23M/276M\n[INFO] ------------------------------------------------------------------------\n[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project compile-command-annotations: There are test failures.\n[ERROR] \n[ERROR] Please refer to /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports for the individual test results.\n[ERROR] -> [Help 1]\n[ERROR] \n[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.\n[ERROR] Re-run Maven using the -X switch to enable full debug logging.\n[ERROR] \n[ERROR] For more information about the errors and possible solutions, please read the following articles:\n[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException\n"
  },
  {
    "path": "tests/data/ref/mvn-002.log.out",
    "content": "[FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]...\n[INFO]                                                                         \n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY]\n\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\n[FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET]\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\nRunning TestSuite\n[FOREGROUND_RED]Tests run: 28, Failures: 28, Errors: 0, Skipped: 0, Time elapsed: 1.274 sec <<< FAILURE! - in TestSuite[FOREGROUND_RESET]\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.446 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.021 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.022 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.021 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.016 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.026 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.025 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.027 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.031 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.022 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.012 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.019 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.016 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.014 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.026 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.02 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\ntest(net.nicoulaj.compilecommand.CompileCommandProcessorTest)  Time elapsed: 0.017 sec  <<< FAILURE!\njava.lang.AssertionError: expected [true] but found [false]\n\tat net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76)\n\n\n[BOLD]Results :[RESET_INTENSITY]\n\nFailed tests: \nnet.nicoulaj.compilecommand.CompileCommandProcessorTest.test(net.nicoulaj.compilecommand.CompileCommandProcessorTest)\n  Run 1: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 2: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 3: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 4: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 5: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 6: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 7: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 8: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 9: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 10: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 11: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 12: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 13: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 14: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 15: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 16: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 17: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 18: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 19: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 20: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 21: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 22: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 23: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 24: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 25: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 26: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 27: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n  Run 28: CompileCommandProcessorTest.test:76 expected [true] but found [false]\n\n\n[FOREGROUND_RED]Tests run: 1, Failures: 1, Errors: 0, Skipped: 0[FOREGROUND_RESET]\n\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FOREGROUND_RED][INFO] BUILD FAILURE[FOREGROUND_RESET]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT][INFO] Total time: 3.563 s[RESET_INTENSITY]\n[FAINT][INFO] Finished at: 2017-03-19T16:28:06+01:00[RESET_INTENSITY]\n[FAINT][INFO] Final Memory: 23M/276M[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][FOREGROUND_RED][ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project compile-command-annotations: There are test failures.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] Please refer to /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports for the individual test results.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] -> [Help 1][RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] Re-run Maven using the -X switch to enable full debug logging.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] For more information about the errors and possible solutions, please read the following articles:[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException[RESET_INTENSITY][FOREGROUND_RESET]\n"
  },
  {
    "path": "tests/data/ref/mvn-003.log",
    "content": "[INFO] Scanning for projects...\n[INFO]                                                                         \n[INFO] ------------------------------------------------------------------------\n[INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT\n[INFO] ------------------------------------------------------------------------\n[INFO] \n[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---\n\n-------------------------------------------------------\n T E S T S\n-------------------------------------------------------\nRunning TestSuite\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.266 sec - in TestSuite\n\nResults :\n\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0\n\n[INFO] \n[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---\n[INFO] Building: IT-01/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (4.7 s)\n[INFO] Building: IT-03/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.0 s)\n[INFO] Building: IT-02/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..FAILED (3.0 s)\n[INFO]   The post-build script returned false.\n[INFO] Building: IT-05/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.3 s)\n[INFO] Building: IT-04/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.9 s)\n[INFO] -------------------------------------------------\n[INFO] Build Summary:\n[INFO]   Passed: 4, Failed: 1, Errors: 0, Skipped: 0\n[INFO] -------------------------------------------------\n[ERROR] The following builds failed:\n[ERROR] *  IT-02/pom.xml\n[INFO] -------------------------------------------------\n[INFO] ------------------------------------------------------------------------\n[INFO] BUILD FAILURE\n[INFO] ------------------------------------------------------------------------\n[INFO] Total time: 19.879 s\n[INFO] Finished at: 2017-03-19T16:28:56+01:00\n[INFO] Final Memory: 28M/338M\n[INFO] ------------------------------------------------------------------------\n[ERROR] Failed to execute goal org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests) on project compile-command-annotations: 1 build failed. See console output above for details. -> [Help 1]\n[ERROR] \n[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.\n[ERROR] Re-run Maven using the -X switch to enable full debug logging.\n[ERROR] \n[ERROR] For more information about the errors and possible solutions, please read the following articles:\n[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException\n"
  },
  {
    "path": "tests/data/ref/mvn-003.log.out",
    "content": "[FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]...\n[INFO]                                                                         \n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] \n[FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 1 resource\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[INFO] Copying 24 resources\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Changes detected - recompiling the module!\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY]\n\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\n[FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET]\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\nRunning TestSuite\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.266 sec - in TestSuite[FOREGROUND_RESET]\n\n[BOLD]Results :[RESET_INTENSITY]\n\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET]\n\n[INFO] \n[FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[INFO] Building: IT-01/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (4.7 s)\n[INFO] Building: IT-03/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (3.0 s)\n[INFO] Building: IT-02/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..FAILED (3.0 s)\n[INFO]   The post-build script returned false.\n[INFO] Building: IT-05/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.3 s)\n[INFO] Building: IT-04/pom.xml\n[INFO] run script postbuild.groovy\n[INFO] ..SUCCESS (2.9 s)\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[INFO] Build Summary:\n[INFO]   Passed: 4, Failed: 1, Errors: 0, Skipped: 0\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[BOLD][FOREGROUND_RED][ERROR] The following builds failed:[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] *  IT-02/pom.xml[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FOREGROUND_RED][INFO] BUILD FAILURE[FOREGROUND_RESET]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT][INFO] Total time: 19.879 s[RESET_INTENSITY]\n[FAINT][INFO] Finished at: 2017-03-19T16:28:56+01:00[RESET_INTENSITY]\n[FAINT][INFO] Final Memory: 28M/338M[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][FOREGROUND_RED][ERROR] Failed to execute goal org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests) on project compile-command-annotations: 1 build failed. See console output above for details. -> [Help 1][RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] Re-run Maven using the -X switch to enable full debug logging.[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] For more information about the errors and possible solutions, please read the following articles:[RESET_INTENSITY][FOREGROUND_RESET]\n[BOLD][FOREGROUND_RED][ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException[RESET_INTENSITY][FOREGROUND_RESET]\n"
  },
  {
    "path": "tests/data/ref/mvn-004.log",
    "content": "Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00)\nMaven home: /opt/maven\nJava version: 1.8.0_121, vendor: Oracle Corporation\nJava home: /usr/lib/jvm/java-8-jdk/jre\nDefault locale: en_US, platform encoding: ANSI_X3.4-1968\nOS name: \"linux\", version: \"4.10.2-1-arch\", arch: \"amd64\", family: \"unix\"\n[DEBUG] Created new class realm maven.api\n[DEBUG] Importing foreign packages into class realm maven.api\n[DEBUG]   Imported: javax.enterprise.inject.* < plexus.core\n[DEBUG]   Imported: javax.enterprise.util.* < plexus.core\n[DEBUG]   Imported: javax.inject.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.artifact < plexus.core\n[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core\n[DEBUG]   Imported: org.apache.maven.cli < plexus.core\n[DEBUG]   Imported: org.apache.maven.configuration < plexus.core\n[DEBUG]   Imported: org.apache.maven.exception < plexus.core\n[DEBUG]   Imported: org.apache.maven.execution < plexus.core\n[DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core\n[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core\n[DEBUG]   Imported: org.apache.maven.model < plexus.core\n[DEBUG]   Imported: org.apache.maven.monitor < plexus.core\n[DEBUG]   Imported: org.apache.maven.plugin < plexus.core\n[DEBUG]   Imported: org.apache.maven.profiles < plexus.core\n[DEBUG]   Imported: org.apache.maven.project < plexus.core\n[DEBUG]   Imported: org.apache.maven.reporting < plexus.core\n[DEBUG]   Imported: org.apache.maven.repository < plexus.core\n[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core\n[DEBUG]   Imported: org.apache.maven.settings < plexus.core\n[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core\n[DEBUG]   Imported: org.apache.maven.usability < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core\n[DEBUG]   Imported: org.codehaus.classworlds < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.* < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.collection < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.graph < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.impl < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.installation < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.repository < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.spi < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.version < plexus.core\n[DEBUG]   Imported: org.slf4j.* < plexus.core\n[DEBUG]   Imported: org.slf4j.helpers.* < plexus.core\n[DEBUG]   Imported: org.slf4j.spi.* < plexus.core\n[DEBUG] Populating class realm maven.api\n[INFO] Error stacktraces are turned on.\n[DEBUG] Reading global settings from /opt/maven/conf/settings.xml\n[DEBUG] Reading user settings from /home/nicoulaj/.m2/settings.xml\n[DEBUG] Reading global toolchains from /opt/maven/conf/toolchains.xml\n[DEBUG] Reading user toolchains from /home/nicoulaj/.m2/toolchains.xml\n[DEBUG] Using local repository at /home/nicoulaj/.m2/repository\n[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /home/nicoulaj/.m2/repository\n[INFO] Scanning for projects...\n[DEBUG] Extension realms for project net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT: (none)\n[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]\n[DEBUG] Extension realms for project net.nicoulaj:parent:pom:48: (none)\n[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]\n[DEBUG] === REACTOR BUILD PLAN ================================================\n[DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG] Tasks:   [clean, install]\n[DEBUG] Style:   Regular\n[DEBUG] =======================================================================\n[INFO]                                                                         \n[INFO] ------------------------------------------------------------------------\n[INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT\n[INFO] ------------------------------------------------------------------------\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] === PROJECT BUILD PLAN ================================================\n[DEBUG] Project:       net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT\n[DEBUG] Dependencies (collect): [test]\n[DEBUG] Dependencies (resolve): [compile, runtime, test]\n[DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]\n[DEBUG] Repositories (plugins)     : [central (https://repo.maven.apache.org/maven2, default, releases)]\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <directory default-value=\"${project.build.directory}\"/>\n  <excludeDefaultDirectories default-value=\"false\">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories>\n  <failOnError default-value=\"true\">${maven.clean.failOnError}</failOnError>\n  <followSymLinks default-value=\"false\">${maven.clean.followSymLinks}</followSymLinks>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <reportDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <retryOnError default-value=\"true\">${maven.clean.retryOnError}</retryOnError>\n  <skip default-value=\"false\">${maven.clean.skip}</skip>\n  <testOutputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <verbose>${maven.clean.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <fail default-value=\"true\">${enforcer.fail}</fail>\n  <failFast default-value=\"false\">${enforcer.failFast}</failFast>\n  <ignoreCache default-value=\"false\">${enforcer.ignoreCache}</ignoreCache>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <project default-value=\"${project}\"/>\n  <rules>\n    <requireMavenVersion>\n      <version>[3.2.1,)</version>\n      <message>Maven v3.2.1+ is required to build this project, please update.</message>\n    </requireMavenVersion>\n  </rules>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${enforcer.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <address>${jacoco.address}</address>\n  <append>${jacoco.append}</append>\n  <classDumpDir>${jacoco.classDumpDir}</classDumpDir>\n  <destFile default-value=\"${project.build.directory}/jacoco.exec\">${jacoco.destFile}</destFile>\n  <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit>\n  <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders>\n  <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses>\n  <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses>\n  <jmx>${jacoco.jmx}</jmx>\n  <output>${jacoco.output}</output>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <port>${jacoco.port}</port>\n  <project>${project}</project>\n  <propertyName>${jacoco.propertyName}</propertyName>\n  <sessionId>${jacoco.sessionId}</sessionId>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources (default-resources)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addDefaultExcludes default-value=\"true\"/>\n  <buildFilters default-value=\"${project.build.filters}\"/>\n  <encoding default-value=\"${project.build.sourceEncoding}\"/>\n  <escapeString default-value=\"\\\"/>\n  <escapeWindowsPaths default-value=\"true\"/>\n  <fileNameFiltering default-value=\"false\"/>\n  <includeEmptyDirs default-value=\"false\"/>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <overwrite default-value=\"false\"/>\n  <project default-value=\"${project}\"/>\n  <resources default-value=\"${project.resources}\"/>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${maven.resources.skip}</skip>\n  <supportMultiLineFiltering default-value=\"false\"/>\n  <useBuildFilters default-value=\"true\"/>\n  <useDefaultDelimiters default-value=\"true\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile (default-compile)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <basedir default-value=\"${basedir}\"/>\n  <buildDirectory default-value=\"${project.build.directory}\"/>\n  <compilePath default-value=\"${project.compileClasspathElements}\"/>\n  <compileSourceRoots default-value=\"${project.compileSourceRoots}\"/>\n  <compilerArgument>-proc:none</compilerArgument>\n  <compilerId default-value=\"javac\">${maven.compiler.compilerId}</compilerId>\n  <compilerReuseStrategy default-value=\"${reuseCreated}\">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>\n  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>\n  <debug default-value=\"true\">${maven.compiler.debug}</debug>\n  <debuglevel>${maven.compiler.debuglevel}</debuglevel>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <executable>${maven.compiler.executable}</executable>\n  <failOnError default-value=\"true\">${maven.compiler.failOnError}</failOnError>\n  <failOnWarning default-value=\"false\">${maven.compiler.failOnWarning}</failOnWarning>\n  <forceJavacCompilerUse default-value=\"false\">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>\n  <fork default-value=\"false\">${maven.compiler.fork}</fork>\n  <generatedSourcesDirectory default-value=\"${project.build.directory}/generated-sources/annotations\"/>\n  <maxmem>${maven.compiler.maxmem}</maxmem>\n  <meminitial>${maven.compiler.meminitial}</meminitial>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <optimize default-value=\"false\">${maven.compiler.optimize}</optimize>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <project default-value=\"${project}\"/>\n  <projectArtifact default-value=\"${project.artifact}\"/>\n  <release>${maven.compiler.release}</release>\n  <session default-value=\"${session}\"/>\n  <showDeprecation default-value=\"false\">${maven.compiler.showDeprecation}</showDeprecation>\n  <showWarnings default-value=\"false\">${maven.compiler.showWarnings}</showWarnings>\n  <skipMain>${maven.main.skip}</skipMain>\n  <skipMultiThreadWarning default-value=\"false\">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>\n  <source default-value=\"1.5\">1.6</source>\n  <staleMillis default-value=\"0\">${lastModGranularityMs}</staleMillis>\n  <target default-value=\"1.5\">1.6</target>\n  <useIncrementalCompilation default-value=\"true\">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>\n  <verbose default-value=\"false\">${maven.compiler.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <project default-value=\"${project}\"/>\n  <sources>\n    <source>/home/nicoulaj/workspace/compile-command-annotations/src/samples/java</source>\n  </sources>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources (default-testResources)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addDefaultExcludes default-value=\"true\"/>\n  <buildFilters default-value=\"${project.build.filters}\"/>\n  <encoding default-value=\"${project.build.sourceEncoding}\"/>\n  <escapeString default-value=\"\\\"/>\n  <escapeWindowsPaths default-value=\"true\"/>\n  <fileNameFiltering default-value=\"false\"/>\n  <includeEmptyDirs default-value=\"false\"/>\n  <outputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <overwrite default-value=\"false\"/>\n  <project default-value=\"${project}\"/>\n  <resources default-value=\"${project.testResources}\"/>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${maven.test.skip}</skip>\n  <supportMultiLineFiltering default-value=\"false\"/>\n  <useBuildFilters default-value=\"true\"/>\n  <useDefaultDelimiters default-value=\"true\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile (default-testCompile)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <basedir default-value=\"${basedir}\"/>\n  <buildDirectory default-value=\"${project.build.directory}\"/>\n  <compilePath default-value=\"${project.compileClasspathElements}\"/>\n  <compileSourceRoots default-value=\"${project.testCompileSourceRoots}\"/>\n  <compilerArgument>-proc:none</compilerArgument>\n  <compilerId default-value=\"javac\">${maven.compiler.compilerId}</compilerId>\n  <compilerReuseStrategy default-value=\"${reuseCreated}\">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>\n  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>\n  <debug default-value=\"true\">${maven.compiler.debug}</debug>\n  <debuglevel>${maven.compiler.debuglevel}</debuglevel>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <executable>${maven.compiler.executable}</executable>\n  <failOnError default-value=\"true\">${maven.compiler.failOnError}</failOnError>\n  <failOnWarning default-value=\"false\">${maven.compiler.failOnWarning}</failOnWarning>\n  <forceJavacCompilerUse default-value=\"false\">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>\n  <fork default-value=\"false\">${maven.compiler.fork}</fork>\n  <generatedTestSourcesDirectory default-value=\"${project.build.directory}/generated-test-sources/test-annotations\"/>\n  <maxmem>${maven.compiler.maxmem}</maxmem>\n  <meminitial>${maven.compiler.meminitial}</meminitial>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <optimize default-value=\"false\">${maven.compiler.optimize}</optimize>\n  <outputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <project default-value=\"${project}\"/>\n  <release>${maven.compiler.release}</release>\n  <session default-value=\"${session}\"/>\n  <showDeprecation default-value=\"false\">${maven.compiler.showDeprecation}</showDeprecation>\n  <showWarnings default-value=\"false\">${maven.compiler.showWarnings}</showWarnings>\n  <skip>${maven.test.skip}</skip>\n  <skipMultiThreadWarning default-value=\"false\">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>\n  <source default-value=\"1.5\">1.6</source>\n  <staleMillis default-value=\"0\">${lastModGranularityMs}</staleMillis>\n  <target default-value=\"1.5\">1.6</target>\n  <testPath default-value=\"${project.testClasspathElements}\"/>\n  <testRelease>${maven.compiler.testRelease}</testRelease>\n  <testSource>${maven.compiler.testSource}</testSource>\n  <testTarget>${maven.compiler.testTarget}</testTarget>\n  <useIncrementalCompilation default-value=\"true\">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>\n  <verbose default-value=\"false\">${maven.compiler.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <additionalClasspathElements>${maven.test.additionalClasspath}</additionalClasspathElements>\n  <argLine>${argLine}</argLine>\n  <basedir default-value=\"${basedir}\"/>\n  <childDelegation default-value=\"false\">${childDelegation}</childDelegation>\n  <classesDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <classpathDependencyExcludes>${maven.test.dependency.excludes}</classpathDependencyExcludes>\n  <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>\n  <dependenciesToScan>${dependenciesToScan}</dependenciesToScan>\n  <disableXmlReport default-value=\"false\">${disableXmlReport}</disableXmlReport>\n  <enableAssertions default-value=\"true\">${enableAssertions}</enableAssertions>\n  <excludedGroups>${excludedGroups}</excludedGroups>\n  <excludesFile>${surefire.excludesFile}</excludesFile>\n  <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>\n  <failIfNoTests>${failIfNoTests}</failIfNoTests>\n  <forkCount default-value=\"1\">${forkCount}</forkCount>\n  <forkMode default-value=\"once\">${forkMode}</forkMode>\n  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>\n  <groups>${groups}</groups>\n  <includesFile>${surefire.includesFile}</includesFile>\n  <junitArtifactName default-value=\"junit:junit\">${junitArtifactName}</junitArtifactName>\n  <jvm>${jvm}</jvm>\n  <localRepository default-value=\"${localRepository}\"/>\n  <objectFactory>${objectFactory}</objectFactory>\n  <parallel>${parallel}</parallel>\n  <parallelMavenExecution default-value=\"${session.parallel}\"/>\n  <parallelOptimized default-value=\"true\">${parallelOptimized}</parallelOptimized>\n  <parallelTestsTimeoutForcedInSeconds>${surefire.parallel.forcedTimeout}</parallelTestsTimeoutForcedInSeconds>\n  <parallelTestsTimeoutInSeconds>${surefire.parallel.timeout}</parallelTestsTimeoutInSeconds>\n  <perCoreThreadCount default-value=\"true\">${perCoreThreadCount}</perCoreThreadCount>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <pluginDescriptor default-value=\"${plugin}\"/>\n  <printSummary default-value=\"true\">${surefire.printSummary}</printSummary>\n  <projectArtifactMap>${project.artifactMap}</projectArtifactMap>\n  <redirectTestOutputToFile default-value=\"false\">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>\n  <remoteRepositories default-value=\"${project.pluginArtifactRepositories}\"/>\n  <reportFormat default-value=\"brief\">${surefire.reportFormat}</reportFormat>\n  <reportNameSuffix default-value=\"\">${surefire.reportNameSuffix}</reportNameSuffix>\n  <reportsDirectory default-value=\"${project.build.directory}/surefire-reports\"/>\n  <rerunFailingTestsCount default-value=\"0\">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>\n  <reuseForks default-value=\"true\">${reuseForks}</reuseForks>\n  <runOrder default-value=\"filesystem\">${surefire.runOrder}</runOrder>\n  <shutdown default-value=\"testset\">${surefire.shutdown}</shutdown>\n  <skip default-value=\"false\">${maven.test.skip}</skip>\n  <skipAfterFailureCount default-value=\"0\">${surefire.skipAfterFailureCount}</skipAfterFailureCount>\n  <skipExec>${maven.test.skip.exec}</skipExec>\n  <skipTests default-value=\"false\">${skipTests}</skipTests>\n  <suiteXmlFiles>${surefire.suiteXmlFiles}</suiteXmlFiles>\n  <test>${test}</test>\n  <testClassesDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <testFailureIgnore default-value=\"false\">${maven.test.failure.ignore}</testFailureIgnore>\n  <testNGArtifactName default-value=\"org.testng:testng\">${testNGArtifactName}</testNGArtifactName>\n  <testSourceDirectory default-value=\"${project.build.testSourceDirectory}\"/>\n  <threadCount>${threadCount}</threadCount>\n  <threadCountClasses default-value=\"0\">${threadCountClasses}</threadCountClasses>\n  <threadCountMethods default-value=\"0\">${threadCountMethods}</threadCountMethods>\n  <threadCountSuites default-value=\"0\">${threadCountSuites}</threadCountSuites>\n  <trimStackTrace default-value=\"true\">${trimStackTrace}</trimStackTrace>\n  <useFile default-value=\"true\">${surefire.useFile}</useFile>\n  <useManifestOnlyJar default-value=\"true\">${surefire.useManifestOnlyJar}</useManifestOnlyJar>\n  <useSystemClassLoader default-value=\"true\">${surefire.useSystemClassLoader}</useSystemClassLoader>\n  <useUnlimitedThreads default-value=\"false\">${useUnlimitedThreads}</useUnlimitedThreads>\n  <workingDirectory>${basedir}</workingDirectory>\n  <project default-value=\"${project}\"/>\n  <session default-value=\"${session}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar (default-jar)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <classesDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <finalName default-value=\"${project.build.finalName}\"/>\n  <forceCreation default-value=\"false\">${maven.jar.forceCreation}</forceCreation>\n  <outputDirectory default-value=\"${project.build.directory}\"/>\n  <project default-value=\"${project}\"/>\n  <session default-value=\"${session}\"/>\n  <skipIfEmpty default-value=\"false\"/>\n  <useDefaultManifestFile default-value=\"false\">${jar.useDefaultManifestFile}</useDefaultManifestFile>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install (run-integration-tests)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <localRepository>${localRepository}</localRepository>\n  <localRepositoryPath>/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath>\n  <project default-value=\"${project}\"/>\n  <reactorProjects default-value=\"${reactorProjects}\"/>\n  <remoteArtifactRepositories default-value=\"${project.remoteArtifactRepositories}\"/>\n  <remotePluginRepositories default-value=\"${project.pluginArtifactRepositories}\"/>\n  <skipInstallation default-value=\"false\">false</skipInstallation>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <address>${jacoco.address}</address>\n  <append>${jacoco.append}</append>\n  <classDumpDir>${jacoco.classDumpDir}</classDumpDir>\n  <destFile default-value=\"${project.build.directory}/jacoco-it.exec\">${jacoco.destFile}</destFile>\n  <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit>\n  <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders>\n  <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses>\n  <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses>\n  <jmx>${jacoco.jmx}</jmx>\n  <output>${jacoco.output}</output>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <port>${jacoco.port}</port>\n  <project>${project}</project>\n  <propertyName>invoker.mavenOpts</propertyName>\n  <sessionId>${jacoco.sessionId}</sessionId>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addTestClassPath default-value=\"false\">true</addTestClassPath>\n  <cloneAllFiles default-value=\"false\"/>\n  <cloneClean default-value=\"false\"/>\n  <cloneProjectsTo>/home/nicoulaj/workspace/compile-command-annotations/target/it/tests</cloneProjectsTo>\n  <debug default-value=\"false\">false</debug>\n  <disableReports default-value=\"false\">${invoker.disableReports}</disableReports>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <failIfNoProjects>${invoker.failIfNoProjects}</failIfNoProjects>\n  <goals>\n    <goal>clean</goal>\n    <goal>install</goal>\n  </goals>\n  <goalsFile default-value=\"goals.txt\">${invoker.goalsFile}</goalsFile>\n  <ignoreFailures default-value=\"false\">${maven.test.failure.ignore}</ignoreFailures>\n  <invokerPropertiesFile default-value=\"invoker.properties\">${invoker.invokerPropertiesFile}</invokerPropertiesFile>\n  <invokerTest>${invoker.test}</invokerTest>\n  <javaHome>${invoker.javaHome}</javaHome>\n  <localRepositoryPath default-value=\"${settings.localRepository}\">/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath>\n  <mavenExecutable>${invoker.mavenExecutable}</mavenExecutable>\n  <mavenHome>${invoker.mavenHome}</mavenHome>\n  <mavenOpts>${invoker.mavenOpts}</mavenOpts>\n  <mergeUserSettings default-value=\"false\">${invoker.mergeUserSettings}</mergeUserSettings>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <noLog default-value=\"false\">${invoker.noLog}</noLog>\n  <parallelThreads default-value=\"1\">${invoker.parallelThreads}</parallelThreads>\n  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>\n  <pom>${invoker.pom}</pom>\n  <pomIncludes>\n    <pomInclude>*/pom.xml</pomInclude>\n  </pomIncludes>\n  <postBuildHookScript default-value=\"postbuild\">${invoker.postBuildHookScript}</postBuildHookScript>\n  <preBuildHookScript default-value=\"prebuild\">${invoker.preBuildHookScript}</preBuildHookScript>\n  <profilesFile default-value=\"profiles.txt\">${invoker.profilesFile}</profilesFile>\n  <project default-value=\"${project}\"/>\n  <projectsDirectory default-value=\"${basedir}/src/it/\">src/it/tests</projectsDirectory>\n  <reportsDirectory default-value=\"${project.build.directory}/invoker-reports\">/home/nicoulaj/workspace/compile-command-annotations/target/it/reports</reportsDirectory>\n  <selectorScript default-value=\"selector\">selector.bsh</selectorScript>\n  <settings default-value=\"${settings}\"/>\n  <settingsFile>src/it/settings.xml</settingsFile>\n  <showErrors default-value=\"false\">true</showErrors>\n  <showVersion default-value=\"false\">${invoker.showVersion}</showVersion>\n  <skipInvocation default-value=\"false\">false</skipInvocation>\n  <streamLogs default-value=\"false\">${invoker.streamLogs}</streamLogs>\n  <suppressSummaries default-value=\"false\"/>\n  <testClassPath default-value=\"${project.testClasspathElements}\"/>\n  <testPropertiesFile default-value=\"test.properties\">${invoker.testPropertiesFile}</testPropertiesFile>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <dataFile default-value=\"${project.build.directory}/jacoco.exec\"/>\n  <outputDirectory default-value=\"${project.reporting.outputDirectory}/jacoco\"/>\n  <outputEncoding default-value=\"UTF-8\">${project.reporting.outputEncoding}</outputEncoding>\n  <project>${project}</project>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n  <sourceEncoding default-value=\"UTF-8\">${project.build.sourceEncoding}</sourceEncoding>\n  <title default-value=\"${project.name}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <dataFile default-value=\"${project.build.directory}/jacoco-it.exec\"/>\n  <outputDirectory default-value=\"${project.reporting.outputDirectory}/jacoco-it\"/>\n  <outputEncoding default-value=\"UTF-8\">${project.reporting.outputEncoding}</outputEncoding>\n  <project>${project}</project>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n  <sourceEncoding default-value=\"UTF-8\">${project.build.sourceEncoding}</sourceEncoding>\n  <title default-value=\"${project.name}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <artifact default-value=\"${project.artifact}\"/>\n  <attachedArtifacts default-value=\"${project.attachedArtifacts}\"/>\n  <createChecksum default-value=\"false\">${createChecksum}</createChecksum>\n  <localRepository>${localRepository}</localRepository>\n  <packaging default-value=\"${project.packaging}\"/>\n  <pomFile default-value=\"${project.file}\"/>\n  <skip default-value=\"false\">${maven.install.skip}</skip>\n  <updateReleaseInfo default-value=\"false\">${updateReleaseInfo}</updateReleaseInfo>\n</configuration>\n[DEBUG] =======================================================================\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=6, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=5, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=5, DefaultDependencyCollector.collectTime=26, DefaultDependencyCollector.transformTime=5}\n[DEBUG] net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]    org.testng:testng:jar:6.10:test\n[DEBUG]       com.beust:jcommander:jar:1.48:test\n[DEBUG]    com.google.guava:guava:jar:21.0:test\n[DEBUG]    commons-io:commons-io:jar:2.5:test\n[DEBUG]    org.assertj:assertj-core:jar:3.6.2:test\n[INFO] \n[INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=15, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=13, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=15, DefaultDependencyCollector.collectTime=48, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]          org.codehaus.plexus:plexus-utils:jar:2.0.4:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]       commons-io:commons-io:jar:2.4:compile\n[DEBUG]       com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->\n[DEBUG]   (f) directory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) excludeDefaultDirectories = false\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) followSymLinks = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) reportDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) retryOnError = true\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) testOutputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] -- end configuration --\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/IT-04-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/IT-04-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/IT-02-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/IT-02-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/IT-03-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/IT-03-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/IT-01-1.0-SNAPSHOT.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/IT-01-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/maven-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/maven-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/maven-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.lastUpdated\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.lastUpdated\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/asm-parent-6.0_ALPHA.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/asm-parent-6.0_ALPHA.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/plexus-compiler-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/plexus-compiler-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/plexus-compilers-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/plexus-compilers-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-03.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/invoker-summary.txt\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-01.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-02.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-04.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-05.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/reports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand/IT04.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/IT-04-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand/IT04.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/my-compile-command-file\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand/IT05.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand/IT02.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/IT-02-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand/IT02.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand/IT03.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/hotspot_pid11375.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/IT-03-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand/IT03.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand/IT01.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/IT-01-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand/IT01.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.css\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/emailable-report.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/navigator-bullet.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/jquery-1.7.1.min.js\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.js\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/failed.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TEST-TestSuite.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/bullet_point.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/passed.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports/TEST-net.nicoulaj.compilecommand.CompileCommandProcessorTest.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/skipped.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-results.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/index.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TestSuite.txt\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/reporter-output.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/classes.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/Surefire test.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/testng.xml.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/groups.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/main.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-alphabetical.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/index.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-not-run.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/toc.html\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/index.html\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/collapseall.gif\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng.css\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester$Report.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_03_Logging.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/ITAssert.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_04_Options.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/CompileCommandProcessorTest.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases/Test21.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand/Sample_04_Options.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases/Test09.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases/Test24.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases/Test19.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases/Test22.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases/Test10.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases/Test11.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases/Test05.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases/Test12.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases/Test01.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases/Test16.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases/Test20.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases/Test13.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases/Test17.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases/Test14.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases/Test15.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases/Test07.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases/Test08.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases/Test06.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases/Test02.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases/Test04.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases/Test18.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases/Test03.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases/Test23.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand/Sample_03_Logging.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$3.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$1.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Log.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/CompileOnly.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Options.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/DontInline.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Break.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Quiet.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Inline.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Option.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Print.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Exclude.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$2.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=137, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=49, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=112, DefaultDependencyCollector.collectTime=125, DefaultDependencyCollector.transformTime=4}\n[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1:\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.22:compile\n[DEBUG]    commons-lang:commons-lang:jar:2.3:compile\n[DEBUG]    org.apache.maven.enforcer:enforcer-api:jar:1.4.1:compile\n[DEBUG]    org.apache.maven.enforcer:enforcer-rules:jar:1.4.1:compile\n[DEBUG]       org.apache.maven.shared:maven-common-artifact-filters:jar:1.4:compile\n[DEBUG]       org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]       org.apache.maven.shared:maven-dependency-tree:jar:2.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.eclipse.aether:aether-util:jar:0.9.0.M2:compile\n[DEBUG]       org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile\n[DEBUG]    org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:2.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-io:jar:2.0.4:compile\n[DEBUG]       junit:junit:jar:4.11:compile\n[DEBUG]          org.hamcrest:hamcrest-core:jar:1.3:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.3\n[DEBUG]   Included: org.apache.maven.enforcer:enforcer-api:jar:1.4.1\n[DEBUG]   Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4.1\n[DEBUG]   Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.4\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.apache.maven.shared:maven-dependency-tree:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.eclipse.aether:aether-util:jar:0.9.0.M2\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6\n[DEBUG]   Included: org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3\n[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.0.4\n[DEBUG]   Included: junit:junit:jar:4.11\n[DEBUG]   Included: org.hamcrest:hamcrest-core:jar:1.3\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce' with basic configurator -->\n[DEBUG]   (s) fail = true\n[DEBUG]   (s) failFast = false\n[DEBUG]   (f) ignoreCache = false\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce {execution: enforce-maven-version}\n[DEBUG]   (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) version = [3.2.1,)\n[DEBUG]   (s) message = Maven v3.2.1+ is required to build this project, please update.\n[DEBUG]   (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6622a690]\n[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (s) skip = false\n[DEBUG] -- end configuration --\n[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion\n[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.\n[DEBUG] Detected Maven Version: 3.3.9\n[DEBUG] Detected Maven Version: 3.3.9 is allowed in the range [3.2.1,).\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=158, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=47, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=108, DefaultDependencyCollector.collectTime=115, DefaultDependencyCollector.transformTime=3}\n[DEBUG] org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:4.8.2:compile\n[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.22:compile\n[DEBUG]    org.apache.maven.shared:file-management:jar:1.2.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-io:jar:1.1:compile\n[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-core:jar:1.1.2:compile\n[DEBUG]          xerces:xercesImpl:jar:2.8.1:compile\n[DEBUG]          commons-lang:commons-lang:jar:2.4:compile\n[DEBUG]          commons-httpclient:commons-httpclient:jar:3.1:compile\n[DEBUG]             commons-codec:commons-codec:jar:1.2:compile\n[DEBUG]       org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile\n[DEBUG]          org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile\n[DEBUG]          org.apache.velocity:velocity:jar:1.5:compile\n[DEBUG]          commons-collections:commons-collections:jar:3.2:compile\n[DEBUG]       commons-validator:commons-validator:jar:1.2.0:compile\n[DEBUG]          commons-beanutils:commons-beanutils:jar:1.7.0:compile\n[DEBUG]          commons-digester:commons-digester:jar:1.6:compile\n[DEBUG]          commons-logging:commons-logging:jar:1.0.4:compile\n[DEBUG]          oro:oro:jar:2.0.8:compile\n[DEBUG]          xml-apis:xml-apis:jar:1.0.b2:compile\n[DEBUG]    org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile\n[DEBUG]    org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile\n[DEBUG]       org.ow2.asm:asm-debug-all:jar:5.1:compile\n[DEBUG]    org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile\n[DEBUG] Created new class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG] Importing foreign packages into class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG]   Included: org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: junit:junit:jar:4.8.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22\n[DEBUG]   Included: org.apache.maven.shared:file-management:jar:1.2.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-io:jar:1.1\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-core:jar:1.1.2\n[DEBUG]   Included: xerces:xercesImpl:jar:2.8.1\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.4\n[DEBUG]   Included: commons-httpclient:commons-httpclient:jar:3.1\n[DEBUG]   Included: commons-codec:commons-codec:jar:1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7\n[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7\n[DEBUG]   Included: org.apache.velocity:velocity:jar:1.5\n[DEBUG]   Included: commons-collections:commons-collections:jar:3.2\n[DEBUG]   Included: commons-validator:commons-validator:jar:1.2.0\n[DEBUG]   Included: commons-beanutils:commons-beanutils:jar:1.7.0\n[DEBUG]   Included: commons-digester:commons-digester:jar:1.6\n[DEBUG]   Included: commons-logging:commons-logging:jar:1.0.4\n[DEBUG]   Included: oro:oro:jar:2.0.8\n[DEBUG]   Included: xml-apis:xml-apis:jar:1.0.b2\n[DEBUG]   Included: org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606\n[DEBUG]   Included: org.jacoco:org.jacoco.core:jar:0.7.7.201606060606\n[DEBUG]   Included: org.ow2.asm:asm-debug-all:jar:5.1\n[DEBUG]   Included: org.jacoco:org.jacoco.report:jar:0.7.7.201606060606\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent' with basic configurator -->\n[DEBUG]   (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (f) pluginArtifactMap = {org.jacoco:jacoco-maven-plugin=org.jacoco:jacoco-maven-plugin:maven-plugin:0.7.7.201606060606:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.8.2:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1-alpha-2:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.22:compile, org.apache.maven.shared:file-management=org.apache.maven.shared:file-management:jar:1.2.1:compile, org.apache.maven.shared:maven-shared-io=org.apache.maven.shared:maven-shared-io:jar:1.1:compile, org.apache.maven.wagon:wagon-provider-api=org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile, org.apache.maven.doxia:doxia-logging-api=org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile, org.apache.maven.reporting:maven-reporting-impl=org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile, org.apache.maven.doxia:doxia-core=org.apache.maven.doxia:doxia-core:jar:1.1.2:compile, xerces:xercesImpl=xerces:xercesImpl:jar:2.8.1:compile, commons-lang:commons-lang=commons-lang:commons-lang:jar:2.4:compile, commons-httpclient:commons-httpclient=commons-httpclient:commons-httpclient:jar:3.1:compile, commons-codec:commons-codec=commons-codec:commons-codec:jar:1.2:compile, org.apache.maven.doxia:doxia-site-renderer=org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile, org.apache.maven.doxia:doxia-decoration-model=org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-xhtml=org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-fml=org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile, org.codehaus.plexus:plexus-i18n=org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile, org.codehaus.plexus:plexus-velocity=org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity=org.apache.velocity:velocity:jar:1.5:compile, commons-collections:commons-collections=commons-collections:commons-collections:jar:3.2:compile, commons-validator:commons-validator=commons-validator:commons-validator:jar:1.2.0:compile, commons-beanutils:commons-beanutils=commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester=commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.0.4:compile, oro:oro=oro:oro:jar:2.0.8:compile, xml-apis:xml-apis=xml-apis:xml-apis:jar:1.0.b2:compile, org.jacoco:org.jacoco.agent=org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile, org.jacoco:org.jacoco.core=org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile, org.ow2.asm:asm-debug-all=org.ow2.asm:asm-debug-all:jar:5.1:compile, org.jacoco:org.jacoco.report=org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile}\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG] -- end configuration --\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=69, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=68, DefaultDependencyCollector.collectTime=26, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG]    org.apache.maven.shared:maven-filtering:jar:3.1.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]          commons-io:commons-io:jar:2.4:compile\n[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile\n[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.22:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.1.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.22\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources' with basic configurator -->\n[DEBUG]   (f) addDefaultExcludes = true\n[DEBUG]   (f) buildFilters = []\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) escapeString = \\\n[DEBUG]   (f) escapeWindowsPaths = true\n[DEBUG]   (f) fileNameFiltering = false\n[DEBUG]   (s) includeEmptyDirs = false\n[DEBUG]   (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (s) overwrite = false\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) supportMultiLineFiltering = false\n[DEBUG]   (f) useBuildFilters = true\n[DEBUG]   (s) useDefaultDelimiters = true\n[DEBUG] -- end configuration --\n[DEBUG] properties used {env.DESKTOP_SESSION=cinnamon, env.OLDPWD=/home/nicoulaj/workspace/compile-command-annotations, file.encoding.pkg=sun.io, maven-changelog-plugin.version=2.3, env.LESS_TERMCAP_mr=\u001b[7m\u001b[1m, maven-surefire-plugin.version=2.19.1, java.home=/usr/lib/jvm/java-8-jdk/jre, maven-jaxb-schemagen-plugin.version=1.2, jacoco-maven-plugin.version=0.7.7.201606060606, env.LESS_TERMCAP_mh=\u001b[1m, env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=\u001b(B\u001b[m, env.DISPLAY=:1, env.LESS_TERMCAP_md=\u001b[1m\u001b[38;5;12m, github-downloads-maven-plugin.version=0.6, env.LS_COLORS=no=00:fi=00:di=00;38;05;012:ln=target:pi=38;05;142;48;05;235:so=01;38;05;176:do=01;38;05;176:bd=38;05;142;48;05;235;01:cd=38;05;142;48;05;235;01:or=01;06;38;05;254;48;05;124:mi=01;05;38;05;254;48;05;124:su=38;05;255;48;05;124:sg=38;05;237;48;05;221:tw=38;05;16;48;05;41:ow=34;42:st=01;38;05;254;48;05;21:ex=01;38;05;46:*.tar=00;38;05;33:*.tgz=00;38;05;33:*.svgz=00;38;05;33:*.arj=00;38;05;33:*.taz=00;38;05;33:*.lzh=00;38;05;33:*.lzma=00;38;05;33:*.zip=00;38;05;33:*.z=00;38;05;33:*.Z=00;38;05;33:*.dz=00;38;05;33:*.gz=00;38;05;33:*.bz2=00;38;05;33:*.bz=00;38;05;33:*.tbz2=00;38;05;33:*.xz=00;38;05;33:*.tz=00;38;05;33:*.deb=00;38;05;33:*.rpm=00;38;05;33:*.jar=00;38;05;33:*.rar=00;38;05;33:*.ace=00;38;05;33:*.zoo=00;38;05;33:*.cpio=00;38;05;33:*.7z=00;38;05;33:*.rz=00;38;05;33:*.sqfs=00;38;05;33:*.sqfs3=00;38;05;33:*.db=00;38;05;33:*.sqlite=00;38;05;33:*.iso=00;38;05;33:*.pdb=00;38;05;33:*.img=00;38;05;33:*.gho=00;38;05;33:*.yml=00;38;05;33:*.bib=00;38;05;33:*.jpg=00;38;05;170:*.eps=00;38;05;170:*.JPG=00;38;05;170:*.jpeg=00;38;05;170:*.gif=00;38;05;170:*.bmp=00;38;05;170:*.pbm=00;38;05;170:*.pgm=00;38;05;170:*.ppm=00;38;05;170:*.tga=00;38;05;170:*.xbm=00;38;05;170:*.xpm=00;38;05;170:*.tif=00;38;05;170:*.tiff=00;38;05;170:*.png=00;38;05;170:*.svg=00;38;05;170:*.mng=00;38;05;170:*.pcx=00;38;05;170:*.mov=00;38;05;197:*.mpg=00;38;05;197:*.mpeg=00;38;05;197:*.m2v=00;38;05;197:*.mkv=00;38;05;197:*.ogm=00;38;05;197:*.mp4=00;38;05;197:*.m4v=00;38;05;197:*.mp4v=00;38;05;197:*.vob=00;38;05;197:*.qt=00;38;05;197:*.nuv=00;38;05;197:*.wmv=00;38;05;197:*.ogv=00;38;05;197:*.asf=00;38;05;197:*.rm=00;38;05;197:*.rmvb=00;38;05;197:*.flc=00;38;05;197:*.flv=00;38;05;197:*.avi=00;38;05;197:*.AVI=00;38;05;197:*.3gp=00;38;05;197:*.fli=00;38;05;197:*.gl=00;38;05;197:*.dl=00;38;05;197:*.xcf=00;38;05;197:*.xwd=00;38;05;197:*.yuv=00;38;05;197:*.pdf=00;38;05;231:*.ps=00;38;05;123:*.patch=00;38;05;123:*.diff=00;38;05;123:*.log=00;38;05;123:*.doc=00;38;05;231:*.chm=00;38;05;123:*.css=00;38;05;123:*.dsl=00;38;05;123:*.ebuild=00;38;05;123:*.htm=00;38;05;231:*.html=00;38;05;231:*.odb=00;38;05;123:*.odf=00;38;05;231:*.odg=00;38;05;123:*.odp=00;38;05;123:*.ods=00;38;05;123:*.odt=00;38;05;123:*.rnc=00;38;05;123:*.rng=00;38;05;123:*.sgml=00;38;05;123:*.xml=00;38;05;123:*.xsl=00;38;05;123:*.rst=01;38;05;147:*.lyx=01;38;05;147:*.mkd=01;38;05;147:*.mdown=01;38;05;147:*.markdown=01;38;05;147:*.md=01;38;05;147:*.lyx=01;38;05;147:*.tex=01;38;05;147:*.txt=01;38;05;123:*INSTALL=01;38;05;123:*FAQ=01;38;05;123:*TODO=01;38;05;123:*README=01;38;05;123:*README.txt=01;38;05;123:*README.md=01;38;05;123:*README.markdown=01;38;05;123:*readme.txt=01;38;05;123:*COPYING=01;38;05;123:*LICENSE=01;38;05;123:*.aac=01;38;05;132:*.au=01;38;05;132:*.flac=01;38;05;132:*.gsf=01;38;05;132:*.h2song=01;38;05;132:*.mid=01;38;05;132:*.midi=01;38;05;132:*.mka=01;38;05;132:*.mp3=01;38;05;132:*.mpc=01;38;05;132:*.ogg=01;38;05;132:*.ra=01;38;05;132:*.rg=01;38;05;132:*.tta=01;38;05;132:*.wav=01;38;05;132:*.wma=01;38;05;132:*.cfg=00;38;05;227:*.conf=00;38;05;227:*rc=00;38;05;227:*.ini=00;38;05;227:*.reg=00;38;05;227:*.F=00;38;05;172:*.c=00;38;05;172:*.cc=00;38;05;172:*.cpp=00;38;05;172:*.cpp=00;38;05;172:*.cxx=00;38;05;172:*.f=00;38;05;172:*.f90=00;38;05;172:*.h=00;38;05;172:*.hs=00;38;05;172:*.lua=00;38;05;172:*.mp=00;38;05;172:*.pl=00;38;05;172:*.po=00;38;05;172:*.py=00;38;05;172:*.sh=00;38;05;172:*.bash=00;38;05;172:*.zsh=00;38;05;172:*.gmo=00;38;05;172:*.ko=00;38;05;172:*.mo=00;38;05;172:*.o=00;38;05;172:*.rb=00;38;05;172:*Makefile=00;38;05;172:*CMakeLists.txt=00;38;05;172:*.cmake=00;38;05;172:*.java=00;38;05;172:*.as=00;38;05;172:*.mxml=00;38;05;172:*.groovy=00;38;05;172:*.gtmpl=00;38;05;172:*pom.xml=00;38;05;172:*build.xml=00;38;05;172:*.flex=00;38;05;172:*.cup=00;38;05;172:*.btm=00;38;05;172:*.gitignore=00;38;05;245:*.gitattributes=00;38;05;245:*.gitmodules=00;38;05;245:*.svnignore=00;38;05;245:*.hgignore=00;38;05;245:*.hgtags=00;38;05;245:*.settings=00;38;05;245:*.project=00;38;05;245:*.classpath=00;38;05;245:*.iml=00;38;05;245:*.iws=00;38;05;245:*.ipr=00;38;05;245:*~=00;38;05;008:*.exe=00;38;05;26:, debug=false, env.XDG_VTNR=2, env.LESS_TERMCAP_mb=\u001b[1m\u001b[38;5;12m, classworlds.conf=/opt/maven/bin/m2.conf, wagon-gitsite.version=0.3.5, templating-maven-plugin.version=1.0.0, java.endorsed.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/endorsed, env.LOGNAME=nicoulaj, env.USERNAME=nicoulaj, env.XDG_SEAT=seat0, maven-plugin-tools-javadoc.version=3.5, assertj-core.version=3.6.2, env.SESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369, sun.os.patch.level=unknown, java.vendor.url=http://java.oracle.com/, env.PROJECT_HOME=/home/nicoulaj/workspace, java.version=1.8.0_121, env.ANDROID_HOME=/opt/android-sdk, env.LESSHISTFILE=/home/nicoulaj/.lesshst, maven-jaxb2-plugin.version=0.13.1, exec-maven-plugin.version=1.5.0, env.VISUAL=geany, env.MAVEN_OPTS= -Xmx512m, jmh.version=1.2.1, env.HG=/usr/bin/hg, maven-javadoc-plugin.version=2.10.4, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, skipTests=false, license.header=/home/nicoulaj/workspace/compile-command-annotations/etc/license/header.txt, maven-failsafe-plugin.version=2.19.1, user.name=nicoulaj, env.LANG=C, java.level=1.6, encoding=UTF-8, sun.io.unicode.encoding=UnicodeLittle, maven-fluido-skin.version=1.6, sun.jnu.encoding=ANSI_X3.4-1968, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, java.runtime.name=Java(TM) SE Runtime Environment, env.BROWSER=google-chrome, env.DEBEMAIL=julien.nicoulaud@gmail.com, java.specification.name=Java Platform API Specification, user.timezone=Europe/Paris, env.CINNAMON_VERSION=3.2.8, env.LESSOPEN=| src-hilite-lesspipe.sh %s, env.GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop, versions-maven-plugin.version=2.3, checksum-maven-plugin.version=1.5, path.separator=:, env.MAVEN_CMD_LINE_ARGS= --debug clean install, file.encoding=ANSI_X3.4-1968, env.HOME=/home/nicoulaj, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher --debug clean install, maven-android-plugin.version=2.8.4, maven-release-plugin.version=2.5.3, maven-pmd-plugin.version=3.7, maven-enforcer-plugin.version=1.4.1, maven-dependency-plugin.version=2.10, maven-gpg-plugin.version=1.6, java.io.tmpdir=/tmp, user.language=en, line.separator=\n, project.baseUri=file:/home/nicoulaj/workspace/compile-command-annotations/, additionalparam=-Xdoclint:none, env.JOURNAL_STREAM=8:248308, env.ANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger, maven-checkstyle-plugin.version=2.17, env.HISTSIZE=4096, m2e-lifecycle-mapping.version=1.0.0, env.LESS_TERMCAP_us=\u001b[4m, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=\u001b[24m\u001b(B\u001b[m, env.MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins, commons-io.version=2.5, maven-resources-plugin.version=3.0.1, env.EDITOR=vim, maven-jxr-plugin.version=2.5, env.GDMSESSION=cinnamon, env.XDG_SESSION_DESKTOP=cinnamon, java.awt.printerjob=sun.print.PSPrinterJob, env.VTE_VERSION=4601, maven-jar-plugin.version=3.0.2, sonar-maven-plugin.version=3.2, env.XDG_SESSION_TYPE=x11, taglist-maven-plugin.version=2.4, env.GPGKEY=A20BF77D, maven.build.timestamp=2017-03-19T15:29:20Z, os.name=Linux, java.specification.vendor=Oracle Corporation, sql-maven-plugin.version=1.5, env.TERM=xterm-256color, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.LESS_TERMCAP_so=\u001b[48;5;8m\u001b[38;5;15m, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/home/nicoulaj/bin/systemd:/home/nicoulaj/bin/arch:/usr/lib/colorgcc/bin:/home/nicoulaj/.gem/ruby/2.4.0/bin:/home/nicoulaj/bin:/opt/jython/bin/:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl, env.LESS_TERMCAP_se=\u001b(B\u001b[m, java.class.version=52.0, env.SHLVL=1, maven.multiModuleProjectDirectory=/home/nicoulaj/workspace/compile-command-annotations, env.GJS_DEBUG_OUTPUT=stderr, env.TERMINATOR_UUID=urn:uuid:97c9379c-b0b6-4044-975f-2a40a7cf6038, sun.boot.library.path=/usr/lib/jvm/java-8-jdk/jre/lib/amd64, project.build.sourceEncoding=UTF-8, maven-jarsigner-plugin.version=1.4, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, year=2016, maven-shade-plugin.version=2.4.3, env.MAIN_USER_HOME=/home/nicoulaj, env.LESSCHARSET=utf-8, license.name=The Apache License, Version 2.0, env.USER=nicoulaj, env.GTK_MODULES=canberra-gtk-module, env.HISTFILESIZE=65536, env.HISTFILE=/home/nicoulaj/.zshhistory, junit.version=4.12, izpack-maven-plugin.version=5.0.10, env.NAME=Julien Nicoulaud, jaxb2-maven-plugin.version=2.3, env.LESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS, java.vm.specification.version=1.8, env.TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2, build-helper-maven-plugin.version=1.12, doxia-module-markdown.version=1.7, animal-sniffer-maven-plugin.version=1.15, env.MAIN_USER=nicoulaj, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, slf4j.version=1.7.24, env.MANPAGER=less, awt.toolkit=sun.awt.X11.XToolkit, sun.cpu.isalist=, env.MAVEN_PROJECTBASEDIR=/home/nicoulaj/workspace/compile-command-annotations, maven-compiler-plugin.version=3.6.0, java.ext.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=4.10.2-1-ARCH, env.FREETYPE_PROPERTIES=truetype:interpreter-version=38, env.QT_QPA_PLATFORMTHEME=qt5ct, user.home=/home/nicoulaj, env.XDG_CURRENT_DESKTOP=X-Cinnamon, java.vm.vendor=Oracle Corporation, maven-jaxb22-plugin.version=0.13.1, logback.version=1.2.1, maven-clean-plugin.version=3.0.0, env.GTK_OVERLAY_SCROLLING=1, env.JAVA_HOME=/usr/lib/jvm/java-8-jdk, maven-plugin-plugin.version=3.5, maven-replacer-plugin.version=1.4.1, env.XDG_SESSION_ID=c4, env.XAUTHORITY=/run/user/1000/gdm/Xauthority, user.dir=/home/nicoulaj/workspace/compile-command-annotations, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=2, env.WORKON_HOME=/home/nicoulaj/.virtualenvs, env.MAIL=julien.nicoulaud@gmail.com, maven-surefire-report-plugin.version=2.19.1, env.PWD=/home/nicoulaj/workspace/compile-command-annotations, env.DEBFULLNAME=Julien Nicoulaud, log4j.version=2.8, sun.cpu.endian=little, env.PAGER=less, env.LESSHISTSIZE=2000, buildnumber-maven-plugin.version=1.4, gpg.passphrase=, java.vm.version=25.121-b13, java.class.path=/opt/maven/boot/plexus-classworlds-2.5.2.jar, org.slf4j.simpleLogger.defaultLogLevel=debug, env.TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d, os.arch=amd64, maven.build.version=Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00), guava.version=21.0, env.GIO_LAUNCHED_DESKTOP_FILE_PID=17585, sun.java.launcher=SUN_STANDARD, flexmojos-maven-plugin.version=3.8, java.vm.specification.vendor=Oracle Corporation, maven-war-plugin.version=3.0.0, file.separator=/, license-maven-plugin.version=3.0, java.runtime.version=1.8.0_121-b13, env.SSH_AUTH_SOCK=/run/user/1000/keyring/ssh, sun.boot.class.path=/usr/lib/jvm/java-8-jdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-jdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-jdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-jdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-jdk/jre/classes, maven-assembly-plugin.version=3.0.0, env.XDG_RUNTIME_DIR=/run/user/1000, maven.version=3.3.9, maven-source-plugin.version=3.0.1, maven-ear-plugin.version=2.10.1, env.ANT_HOME=/usr/share/apache-ant, user.country=US, maven.home=/opt/maven, env.SHELL=/bin/zsh, rpm-maven-plugin.version=2.1.5, maven-deploy-plugin.version=2.8.2, proguard-maven-plugin.version=2.0.13, maven-project-info-reports-plugin.version=2.9, maven-site-plugin.version=3.6, cobertura-maven-plugin.version=2.7, maven-invoker-plugin.version=2.0.0, testng.version=6.10, github-site-maven-plugin.version=0.12, java.vendor=Oracle Corporation, license=apache_v2, env.GRADLE_HOME=/usr/share/java/gradle, license.url=https://www.apache.org/licenses/LICENSE-2.0, java.specification.version=1.8, argLine=-javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[DEBUG] resource with targetPath null\ndirectory /home/nicoulaj/workspace/compile-command-annotations/src/main/resources\nexcludes []\nincludes []\n[DEBUG] ignoreDelta true\n[INFO] Copying 1 resource\n[DEBUG] Copying file META-INF/services/javax.annotation.processing.Processor\n[DEBUG] file javax.annotation.processing.Processor has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/main/resources/META-INF/services/javax.annotation.processing.Processor to /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor\n[DEBUG] no use filter components\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=116, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=43, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=70, DefaultDependencyCollector.collectTime=21, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]       org.codehaus.plexus:plexus-utils:jar:2.0.4:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile\n[DEBUG]       commons-io:commons-io:jar:2.5:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile\n[DEBUG]    org.ow2.asm:asm:jar:6.0_ALPHA:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1:runtime\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.5\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1\n[DEBUG]   Included: org.ow2.asm:asm:jar:6.0_ALPHA\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile' with basic configurator -->\n[DEBUG]   (f) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG]   (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/main/java]\n[DEBUG]   (f) compilerArgument = -proc:none\n[DEBUG]   (f) compilerId = javac\n[DEBUG]   (f) debug = true\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) failOnWarning = false\n[DEBUG]   (f) forceJavacCompilerUse = false\n[DEBUG]   (f) fork = false\n[DEBUG]   (f) generatedSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile {execution: default-compile}\n[DEBUG]   (f) optimize = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) projectArtifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) showDeprecation = false\n[DEBUG]   (f) showWarnings = false\n[DEBUG]   (f) skipMultiThreadWarning = false\n[DEBUG]   (f) source = 1.6\n[DEBUG]   (f) staleMillis = 0\n[DEBUG]   (f) target = 1.6\n[DEBUG]   (f) useIncrementalCompilation = true\n[DEBUG]   (f) verbose = false\n[DEBUG] -- end configuration --\n[DEBUG] Using compiler 'javac'.\n[DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations to compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n[DEBUG] New compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n  /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG] CompilerReuseStrategy: reuseCreated\n[DEBUG] useIncrementalCompilation enabled\n[DEBUG] classpathElements: [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Exclude.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Log.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Option.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/CompileOnly.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/CompileCommandProcessor.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/package-info.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/DontInline.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Inline.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Options.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Print.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Quiet.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Break.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/package-info.java\n[INFO] Changes detected - recompiling the module!\n[DEBUG] Classpath:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] Source roots:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG] Command line options:\n[DEBUG] -d /home/nicoulaj/workspace/compile-command-annotations/target/classes -classpath /home/nicoulaj/workspace/compile-command-annotations/target/classes: -sourcepath /home/nicoulaj/workspace/compile-command-annotations/src/main/java:/home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations: -s /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations -g -nowarn -target 1.6 -source 1.6 -encoding UTF-8 -proc:none\n[DEBUG] incrementalBuildHelper#beforeRebuildExecution\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] incrementalBuildHelper#afterRebuildExecution\n[INFO] \n[INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=166, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=52, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=107, DefaultDependencyCollector.collectTime=24, DefaultDependencyCollector.transformTime=2}\n[DEBUG] org.codehaus.mojo:build-helper-maven-plugin:jar:1.12:\n[DEBUG]    org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:4.12:test\n[DEBUG]             org.hamcrest:hamcrest-core:jar:1.3:test\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG]    org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]    org.apache.maven.shared:file-management:jar:3.0.0:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-io:jar:3.0.0:compile\n[DEBUG]          org.apache.maven:maven-compat:jar:3.0:compile\n[DEBUG]             org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]             org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]                org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]                org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]                   org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]             org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]          commons-io:commons-io:jar:2.4:compile\n[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG] Created new class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG] Importing foreign packages into class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG]   Included: org.codehaus.mojo:build-helper-maven-plugin:jar:1.12\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.apache.maven.shared:file-management:jar:3.0.0\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-io:jar:3.0.0\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG] Configuring mojo org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source from plugin realm ClassRealm[plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source' with basic configurator -->\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) sources = [/home/nicoulaj/workspace/compile-command-annotations/src/samples/java]\n[DEBUG] -- end configuration --\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources' with basic configurator -->\n[DEBUG]   (f) addDefaultExcludes = true\n[DEBUG]   (f) buildFilters = []\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) escapeString = \\\n[DEBUG]   (f) escapeWindowsPaths = true\n[DEBUG]   (f) fileNameFiltering = false\n[DEBUG]   (s) includeEmptyDirs = false\n[DEBUG]   (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (s) overwrite = false\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/test/resources, PatternSet [includes: {}, excludes: {}]}}]\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) supportMultiLineFiltering = false\n[DEBUG]   (f) useBuildFilters = true\n[DEBUG]   (s) useDefaultDelimiters = true\n[DEBUG] -- end configuration --\n[DEBUG] properties used {env.DESKTOP_SESSION=cinnamon, env.OLDPWD=/home/nicoulaj/workspace/compile-command-annotations, file.encoding.pkg=sun.io, maven-changelog-plugin.version=2.3, env.LESS_TERMCAP_mr=\u001b[7m\u001b[1m, maven-surefire-plugin.version=2.19.1, java.home=/usr/lib/jvm/java-8-jdk/jre, maven-jaxb-schemagen-plugin.version=1.2, jacoco-maven-plugin.version=0.7.7.201606060606, env.LESS_TERMCAP_mh=\u001b[1m, env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=\u001b(B\u001b[m, env.DISPLAY=:1, env.LESS_TERMCAP_md=\u001b[1m\u001b[38;5;12m, github-downloads-maven-plugin.version=0.6, env.LS_COLORS=no=00:fi=00:di=00;38;05;012:ln=target:pi=38;05;142;48;05;235:so=01;38;05;176:do=01;38;05;176:bd=38;05;142;48;05;235;01:cd=38;05;142;48;05;235;01:or=01;06;38;05;254;48;05;124:mi=01;05;38;05;254;48;05;124:su=38;05;255;48;05;124:sg=38;05;237;48;05;221:tw=38;05;16;48;05;41:ow=34;42:st=01;38;05;254;48;05;21:ex=01;38;05;46:*.tar=00;38;05;33:*.tgz=00;38;05;33:*.svgz=00;38;05;33:*.arj=00;38;05;33:*.taz=00;38;05;33:*.lzh=00;38;05;33:*.lzma=00;38;05;33:*.zip=00;38;05;33:*.z=00;38;05;33:*.Z=00;38;05;33:*.dz=00;38;05;33:*.gz=00;38;05;33:*.bz2=00;38;05;33:*.bz=00;38;05;33:*.tbz2=00;38;05;33:*.xz=00;38;05;33:*.tz=00;38;05;33:*.deb=00;38;05;33:*.rpm=00;38;05;33:*.jar=00;38;05;33:*.rar=00;38;05;33:*.ace=00;38;05;33:*.zoo=00;38;05;33:*.cpio=00;38;05;33:*.7z=00;38;05;33:*.rz=00;38;05;33:*.sqfs=00;38;05;33:*.sqfs3=00;38;05;33:*.db=00;38;05;33:*.sqlite=00;38;05;33:*.iso=00;38;05;33:*.pdb=00;38;05;33:*.img=00;38;05;33:*.gho=00;38;05;33:*.yml=00;38;05;33:*.bib=00;38;05;33:*.jpg=00;38;05;170:*.eps=00;38;05;170:*.JPG=00;38;05;170:*.jpeg=00;38;05;170:*.gif=00;38;05;170:*.bmp=00;38;05;170:*.pbm=00;38;05;170:*.pgm=00;38;05;170:*.ppm=00;38;05;170:*.tga=00;38;05;170:*.xbm=00;38;05;170:*.xpm=00;38;05;170:*.tif=00;38;05;170:*.tiff=00;38;05;170:*.png=00;38;05;170:*.svg=00;38;05;170:*.mng=00;38;05;170:*.pcx=00;38;05;170:*.mov=00;38;05;197:*.mpg=00;38;05;197:*.mpeg=00;38;05;197:*.m2v=00;38;05;197:*.mkv=00;38;05;197:*.ogm=00;38;05;197:*.mp4=00;38;05;197:*.m4v=00;38;05;197:*.mp4v=00;38;05;197:*.vob=00;38;05;197:*.qt=00;38;05;197:*.nuv=00;38;05;197:*.wmv=00;38;05;197:*.ogv=00;38;05;197:*.asf=00;38;05;197:*.rm=00;38;05;197:*.rmvb=00;38;05;197:*.flc=00;38;05;197:*.flv=00;38;05;197:*.avi=00;38;05;197:*.AVI=00;38;05;197:*.3gp=00;38;05;197:*.fli=00;38;05;197:*.gl=00;38;05;197:*.dl=00;38;05;197:*.xcf=00;38;05;197:*.xwd=00;38;05;197:*.yuv=00;38;05;197:*.pdf=00;38;05;231:*.ps=00;38;05;123:*.patch=00;38;05;123:*.diff=00;38;05;123:*.log=00;38;05;123:*.doc=00;38;05;231:*.chm=00;38;05;123:*.css=00;38;05;123:*.dsl=00;38;05;123:*.ebuild=00;38;05;123:*.htm=00;38;05;231:*.html=00;38;05;231:*.odb=00;38;05;123:*.odf=00;38;05;231:*.odg=00;38;05;123:*.odp=00;38;05;123:*.ods=00;38;05;123:*.odt=00;38;05;123:*.rnc=00;38;05;123:*.rng=00;38;05;123:*.sgml=00;38;05;123:*.xml=00;38;05;123:*.xsl=00;38;05;123:*.rst=01;38;05;147:*.lyx=01;38;05;147:*.mkd=01;38;05;147:*.mdown=01;38;05;147:*.markdown=01;38;05;147:*.md=01;38;05;147:*.lyx=01;38;05;147:*.tex=01;38;05;147:*.txt=01;38;05;123:*INSTALL=01;38;05;123:*FAQ=01;38;05;123:*TODO=01;38;05;123:*README=01;38;05;123:*README.txt=01;38;05;123:*README.md=01;38;05;123:*README.markdown=01;38;05;123:*readme.txt=01;38;05;123:*COPYING=01;38;05;123:*LICENSE=01;38;05;123:*.aac=01;38;05;132:*.au=01;38;05;132:*.flac=01;38;05;132:*.gsf=01;38;05;132:*.h2song=01;38;05;132:*.mid=01;38;05;132:*.midi=01;38;05;132:*.mka=01;38;05;132:*.mp3=01;38;05;132:*.mpc=01;38;05;132:*.ogg=01;38;05;132:*.ra=01;38;05;132:*.rg=01;38;05;132:*.tta=01;38;05;132:*.wav=01;38;05;132:*.wma=01;38;05;132:*.cfg=00;38;05;227:*.conf=00;38;05;227:*rc=00;38;05;227:*.ini=00;38;05;227:*.reg=00;38;05;227:*.F=00;38;05;172:*.c=00;38;05;172:*.cc=00;38;05;172:*.cpp=00;38;05;172:*.cpp=00;38;05;172:*.cxx=00;38;05;172:*.f=00;38;05;172:*.f90=00;38;05;172:*.h=00;38;05;172:*.hs=00;38;05;172:*.lua=00;38;05;172:*.mp=00;38;05;172:*.pl=00;38;05;172:*.po=00;38;05;172:*.py=00;38;05;172:*.sh=00;38;05;172:*.bash=00;38;05;172:*.zsh=00;38;05;172:*.gmo=00;38;05;172:*.ko=00;38;05;172:*.mo=00;38;05;172:*.o=00;38;05;172:*.rb=00;38;05;172:*Makefile=00;38;05;172:*CMakeLists.txt=00;38;05;172:*.cmake=00;38;05;172:*.java=00;38;05;172:*.as=00;38;05;172:*.mxml=00;38;05;172:*.groovy=00;38;05;172:*.gtmpl=00;38;05;172:*pom.xml=00;38;05;172:*build.xml=00;38;05;172:*.flex=00;38;05;172:*.cup=00;38;05;172:*.btm=00;38;05;172:*.gitignore=00;38;05;245:*.gitattributes=00;38;05;245:*.gitmodules=00;38;05;245:*.svnignore=00;38;05;245:*.hgignore=00;38;05;245:*.hgtags=00;38;05;245:*.settings=00;38;05;245:*.project=00;38;05;245:*.classpath=00;38;05;245:*.iml=00;38;05;245:*.iws=00;38;05;245:*.ipr=00;38;05;245:*~=00;38;05;008:*.exe=00;38;05;26:, debug=false, env.XDG_VTNR=2, env.LESS_TERMCAP_mb=\u001b[1m\u001b[38;5;12m, classworlds.conf=/opt/maven/bin/m2.conf, wagon-gitsite.version=0.3.5, templating-maven-plugin.version=1.0.0, java.endorsed.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/endorsed, env.LOGNAME=nicoulaj, env.USERNAME=nicoulaj, env.XDG_SEAT=seat0, maven-plugin-tools-javadoc.version=3.5, assertj-core.version=3.6.2, env.SESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369, sun.os.patch.level=unknown, java.vendor.url=http://java.oracle.com/, env.PROJECT_HOME=/home/nicoulaj/workspace, java.version=1.8.0_121, env.ANDROID_HOME=/opt/android-sdk, env.LESSHISTFILE=/home/nicoulaj/.lesshst, maven-jaxb2-plugin.version=0.13.1, exec-maven-plugin.version=1.5.0, env.VISUAL=geany, env.MAVEN_OPTS= -Xmx512m, jmh.version=1.2.1, env.HG=/usr/bin/hg, maven-javadoc-plugin.version=2.10.4, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, skipTests=false, license.header=/home/nicoulaj/workspace/compile-command-annotations/etc/license/header.txt, maven-failsafe-plugin.version=2.19.1, user.name=nicoulaj, env.LANG=C, java.level=1.6, encoding=UTF-8, sun.io.unicode.encoding=UnicodeLittle, maven-fluido-skin.version=1.6, sun.jnu.encoding=ANSI_X3.4-1968, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, java.runtime.name=Java(TM) SE Runtime Environment, env.BROWSER=google-chrome, env.DEBEMAIL=julien.nicoulaud@gmail.com, java.specification.name=Java Platform API Specification, user.timezone=Europe/Paris, env.CINNAMON_VERSION=3.2.8, env.LESSOPEN=| src-hilite-lesspipe.sh %s, env.GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop, versions-maven-plugin.version=2.3, checksum-maven-plugin.version=1.5, path.separator=:, env.MAVEN_CMD_LINE_ARGS= --debug clean install, file.encoding=ANSI_X3.4-1968, env.HOME=/home/nicoulaj, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher --debug clean install, maven-android-plugin.version=2.8.4, maven-release-plugin.version=2.5.3, maven-pmd-plugin.version=3.7, maven-enforcer-plugin.version=1.4.1, maven-dependency-plugin.version=2.10, maven-gpg-plugin.version=1.6, java.io.tmpdir=/tmp, user.language=en, line.separator=\n, project.baseUri=file:/home/nicoulaj/workspace/compile-command-annotations/, additionalparam=-Xdoclint:none, env.JOURNAL_STREAM=8:248308, env.ANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger, maven-checkstyle-plugin.version=2.17, env.HISTSIZE=4096, m2e-lifecycle-mapping.version=1.0.0, env.LESS_TERMCAP_us=\u001b[4m, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=\u001b[24m\u001b(B\u001b[m, env.MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins, commons-io.version=2.5, maven-resources-plugin.version=3.0.1, env.EDITOR=vim, maven-jxr-plugin.version=2.5, env.GDMSESSION=cinnamon, env.XDG_SESSION_DESKTOP=cinnamon, java.awt.printerjob=sun.print.PSPrinterJob, env.VTE_VERSION=4601, maven-jar-plugin.version=3.0.2, sonar-maven-plugin.version=3.2, env.XDG_SESSION_TYPE=x11, taglist-maven-plugin.version=2.4, env.GPGKEY=A20BF77D, maven.build.timestamp=2017-03-19T15:29:21Z, os.name=Linux, java.specification.vendor=Oracle Corporation, sql-maven-plugin.version=1.5, env.TERM=xterm-256color, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.LESS_TERMCAP_so=\u001b[48;5;8m\u001b[38;5;15m, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/home/nicoulaj/bin/systemd:/home/nicoulaj/bin/arch:/usr/lib/colorgcc/bin:/home/nicoulaj/.gem/ruby/2.4.0/bin:/home/nicoulaj/bin:/opt/jython/bin/:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl, env.LESS_TERMCAP_se=\u001b(B\u001b[m, java.class.version=52.0, env.SHLVL=1, maven.multiModuleProjectDirectory=/home/nicoulaj/workspace/compile-command-annotations, env.GJS_DEBUG_OUTPUT=stderr, env.TERMINATOR_UUID=urn:uuid:97c9379c-b0b6-4044-975f-2a40a7cf6038, sun.boot.library.path=/usr/lib/jvm/java-8-jdk/jre/lib/amd64, project.build.sourceEncoding=UTF-8, maven-jarsigner-plugin.version=1.4, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, year=2016, maven-shade-plugin.version=2.4.3, env.MAIN_USER_HOME=/home/nicoulaj, env.LESSCHARSET=utf-8, license.name=The Apache License, Version 2.0, env.USER=nicoulaj, env.GTK_MODULES=canberra-gtk-module, env.HISTFILESIZE=65536, env.HISTFILE=/home/nicoulaj/.zshhistory, junit.version=4.12, izpack-maven-plugin.version=5.0.10, env.NAME=Julien Nicoulaud, jaxb2-maven-plugin.version=2.3, env.LESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS, java.vm.specification.version=1.8, env.TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2, build-helper-maven-plugin.version=1.12, doxia-module-markdown.version=1.7, animal-sniffer-maven-plugin.version=1.15, env.MAIN_USER=nicoulaj, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, slf4j.version=1.7.24, env.MANPAGER=less, awt.toolkit=sun.awt.X11.XToolkit, sun.cpu.isalist=, env.MAVEN_PROJECTBASEDIR=/home/nicoulaj/workspace/compile-command-annotations, maven-compiler-plugin.version=3.6.0, java.ext.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=4.10.2-1-ARCH, env.FREETYPE_PROPERTIES=truetype:interpreter-version=38, env.QT_QPA_PLATFORMTHEME=qt5ct, user.home=/home/nicoulaj, env.XDG_CURRENT_DESKTOP=X-Cinnamon, java.vm.vendor=Oracle Corporation, maven-jaxb22-plugin.version=0.13.1, logback.version=1.2.1, maven-clean-plugin.version=3.0.0, env.GTK_OVERLAY_SCROLLING=1, env.JAVA_HOME=/usr/lib/jvm/java-8-jdk, maven-plugin-plugin.version=3.5, maven-replacer-plugin.version=1.4.1, env.XDG_SESSION_ID=c4, env.XAUTHORITY=/run/user/1000/gdm/Xauthority, user.dir=/home/nicoulaj/workspace/compile-command-annotations, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=2, env.WORKON_HOME=/home/nicoulaj/.virtualenvs, env.MAIL=julien.nicoulaud@gmail.com, maven-surefire-report-plugin.version=2.19.1, env.PWD=/home/nicoulaj/workspace/compile-command-annotations, env.DEBFULLNAME=Julien Nicoulaud, log4j.version=2.8, sun.cpu.endian=little, env.PAGER=less, env.LESSHISTSIZE=2000, buildnumber-maven-plugin.version=1.4, gpg.passphrase=, java.vm.version=25.121-b13, java.class.path=/opt/maven/boot/plexus-classworlds-2.5.2.jar, org.slf4j.simpleLogger.defaultLogLevel=debug, env.TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d, os.arch=amd64, maven.build.version=Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00), guava.version=21.0, env.GIO_LAUNCHED_DESKTOP_FILE_PID=17585, sun.java.launcher=SUN_STANDARD, flexmojos-maven-plugin.version=3.8, java.vm.specification.vendor=Oracle Corporation, maven-war-plugin.version=3.0.0, file.separator=/, license-maven-plugin.version=3.0, java.runtime.version=1.8.0_121-b13, env.SSH_AUTH_SOCK=/run/user/1000/keyring/ssh, sun.boot.class.path=/usr/lib/jvm/java-8-jdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-jdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-jdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-jdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-jdk/jre/classes, maven-assembly-plugin.version=3.0.0, env.XDG_RUNTIME_DIR=/run/user/1000, maven.version=3.3.9, maven-source-plugin.version=3.0.1, maven-ear-plugin.version=2.10.1, env.ANT_HOME=/usr/share/apache-ant, user.country=US, maven.home=/opt/maven, env.SHELL=/bin/zsh, rpm-maven-plugin.version=2.1.5, maven-deploy-plugin.version=2.8.2, proguard-maven-plugin.version=2.0.13, maven-project-info-reports-plugin.version=2.9, maven-site-plugin.version=3.6, cobertura-maven-plugin.version=2.7, maven-invoker-plugin.version=2.0.0, testng.version=6.10, github-site-maven-plugin.version=0.12, java.vendor=Oracle Corporation, license=apache_v2, env.GRADLE_HOME=/usr/share/java/gradle, license.url=https://www.apache.org/licenses/LICENSE-2.0, java.specification.version=1.8, argLine=-javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[DEBUG] resource with targetPath null\ndirectory /home/nicoulaj/workspace/compile-command-annotations/src/test/resources\nexcludes []\nincludes []\n[DEBUG] ignoreDelta true\n[INFO] Copying 24 resources\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test05\n[DEBUG] file Test05 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test05 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test17\n[DEBUG] file Test17 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test17 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test01\n[DEBUG] file Test01 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test01 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test04\n[DEBUG] file Test04 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test04 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test19\n[DEBUG] file Test19 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test19 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test15\n[DEBUG] file Test15 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test15 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test23\n[DEBUG] file Test23 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test23 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test12\n[DEBUG] file Test12 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test12 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test10\n[DEBUG] file Test10 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test10 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test08\n[DEBUG] file Test08 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test08 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test03\n[DEBUG] file Test03 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test03 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test13\n[DEBUG] file Test13 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test13 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test02\n[DEBUG] file Test02 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test02 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test21\n[DEBUG] file Test21 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test21 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test11\n[DEBUG] file Test11 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test11 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test14\n[DEBUG] file Test14 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test14 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test22\n[DEBUG] file Test22 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test22 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test18\n[DEBUG] file Test18 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test18 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test07\n[DEBUG] file Test07 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test07 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test06\n[DEBUG] file Test06 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test06 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test24\n[DEBUG] file Test24 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test24 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test09\n[DEBUG] file Test09 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test09 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test16\n[DEBUG] file Test16 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test16 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test20\n[DEBUG] file Test20 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test20 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20\n[DEBUG] no use filter components\n[INFO] \n[INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile' with basic configurator -->\n[DEBUG]   (f) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG]   (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/test/java, /home/nicoulaj/workspace/compile-command-annotations/src/samples/java]\n[DEBUG]   (f) compilerArgument = -proc:none\n[DEBUG]   (f) compilerId = javac\n[DEBUG]   (f) debug = true\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) failOnWarning = false\n[DEBUG]   (f) forceJavacCompilerUse = false\n[DEBUG]   (f) fork = false\n[DEBUG]   (f) generatedTestSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile {execution: default-testCompile}\n[DEBUG]   (f) optimize = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) showDeprecation = false\n[DEBUG]   (f) showWarnings = false\n[DEBUG]   (f) skipMultiThreadWarning = false\n[DEBUG]   (f) source = 1.6\n[DEBUG]   (f) staleMillis = 0\n[DEBUG]   (f) target = 1.6\n[DEBUG]   (f) testPath = [/home/nicoulaj/workspace/compile-command-annotations/target/test-classes, /home/nicoulaj/workspace/compile-command-annotations/target/classes, /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar, /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar, /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar, /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar, /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar]\n[DEBUG]   (f) useIncrementalCompilation = true\n[DEBUG]   (f) verbose = false\n[DEBUG] -- end configuration --\n[DEBUG] Using compiler 'javac'.\n[DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations to test-compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n[DEBUG] New test-compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n  /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG] CompilerReuseStrategy: reuseCreated\n[DEBUG] useIncrementalCompilation enabled\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test15.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test12.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test04.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test20.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test07.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/package-info.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test23.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test18.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test03.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test17.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test09.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test11.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_03_Logging.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test06.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test22.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test14.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test05.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test08.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/ITAssert.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test13.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test10.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test02.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test24.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test21.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/JavaCompilationTester.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test01.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_01_Inlining.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_02_Compilation.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test19.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test16.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_04_Options.java\n[INFO] Changes detected - recompiling the module!\n[DEBUG] Classpath:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar\n[DEBUG] Source roots:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG] Command line options:\n[DEBUG] -d /home/nicoulaj/workspace/compile-command-annotations/target/test-classes -classpath /home/nicoulaj/workspace/compile-command-annotations/target/test-classes:/home/nicoulaj/workspace/compile-command-annotations/target/classes:/home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar:/home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar:/home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar:/home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar:/home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar: -sourcepath /home/nicoulaj/workspace/compile-command-annotations/src/test/java:/home/nicoulaj/workspace/compile-command-annotations/src/samples/java:/home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations: -s /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations -g -nowarn -target 1.6 -source 1.6 -encoding UTF-8 -proc:none\n[DEBUG] incrementalBuildHelper#beforeRebuildExecution\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] incrementalBuildHelper#afterRebuildExecution\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=114, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=34, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=80, DefaultDependencyCollector.collectTime=14, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile\n[DEBUG]       org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-utils:jar:1.5.15:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]             junit:junit:jar:4.12:compile\n[DEBUG]                org.hamcrest:hamcrest-core:jar:1.3:compile\n[DEBUG]       org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]             backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]          org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]             org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]          org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile\n[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]          classworlds:classworlds:jar:1.1:compile\n[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]       org.apache.commons:commons-lang3:jar:3.1:compile\n[DEBUG]    org.apache.maven.surefire:surefire-api:jar:2.19.1:compile\n[DEBUG]    org.apache.maven:maven-toolchain:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.surefire:maven-surefire-common:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.surefire:surefire-booter:jar:2.19.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:1.5.15\n[DEBUG]   Included: junit:junit:jar:4.12\n[DEBUG]   Included: org.hamcrest:hamcrest-core:jar:1.3\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.1\n[DEBUG]   Included: org.apache.maven.surefire:surefire-api:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test' with basic configurator -->\n[DEBUG]   (s) additionalClasspathElements = []\n[DEBUG]   (s) argLine = -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (s) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (s) childDelegation = false\n[DEBUG]   (s) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (s) classpathDependencyExcludes = []\n[DEBUG]   (s) dependenciesToScan = []\n[DEBUG]   (s) disableXmlReport = false\n[DEBUG]   (s) enableAssertions = true\n[DEBUG]   (f) forkCount = 1\n[DEBUG]   (s) forkMode = once\n[DEBUG]   (s) junitArtifactName = junit:junit\n[DEBUG]   (s) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) parallelMavenExecution = false\n[DEBUG]   (s) parallelOptimized = true\n[DEBUG]   (s) perCoreThreadCount = true\n[DEBUG]   (s) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.19.1:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven.surefire:maven-surefire-common=org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:1.5.15:compile, org.apache.maven:maven-plugin-descriptor=org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.12:compile, org.hamcrest:hamcrest-core=org.hamcrest:hamcrest-core:jar:1.3:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-core=org.apache.maven:maven-core:jar:2.2.1:compile, org.apache.maven:maven-plugin-parameter-documenter=org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile, org.slf4j:slf4j-jdk14=org.slf4j:slf4j-jdk14:jar:1.5.6:runtime, org.slf4j:slf4j-api=org.slf4j:slf4j-api:jar:1.5.6:runtime, org.slf4j:jcl-over-slf4j=org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, org.apache.maven:maven-error-diagnostics=org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile, org.apache.maven:maven-monitor=org.apache.maven:maven-monitor:jar:2.2.1:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1:compile, org.sonatype.plexus:plexus-sec-dispatcher=org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile, org.sonatype.plexus:plexus-cipher=org.sonatype.plexus:plexus-cipher:jar:1.4:compile, org.apache.commons:commons-lang3=org.apache.commons:commons-lang3:jar:3.1:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.19.1:compile, org.apache.maven:maven-toolchain=org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.apache.maven.plugin-tools:maven-plugin-annotations=org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile}\n[DEBUG]   (f) pluginDescriptor = Component Descriptor: role: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.HelpMojo', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:help'\nrole: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.SurefirePlugin', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test'\n---\n[DEBUG]   (s) printSummary = true\n[DEBUG]   (s) projectArtifactMap = {org.testng:testng=org.testng:testng:jar:6.10:test, com.beust:jcommander=com.beust:jcommander:jar:1.48:test, com.google.guava:guava=com.google.guava:guava:jar:21.0:test, commons-io:commons-io=commons-io:commons-io:jar:2.5:test, org.assertj:assertj-core=org.assertj:assertj-core:jar:3.6.2:test}\n[DEBUG]   (s) redirectTestOutputToFile = false\n[DEBUG]   (s) remoteRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => never]\n]\n[DEBUG]   (s) reportFormat = brief\n[DEBUG]   (s) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[DEBUG]   (f) rerunFailingTestsCount = 0\n[DEBUG]   (f) reuseForks = true\n[DEBUG]   (s) runOrder = filesystem\n[DEBUG]   (f) shutdown = testset\n[DEBUG]   (s) skip = false\n[DEBUG]   (f) skipAfterFailureCount = 0\n[DEBUG]   (s) skipTests = false\n[DEBUG]   (s) suiteXmlFiles = []\n[DEBUG]   (s) testClassesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (s) testFailureIgnore = false\n[DEBUG]   (s) testNGArtifactName = org.testng:testng\n[DEBUG]   (s) testSourceDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n[DEBUG]   (s) threadCountClasses = 0\n[DEBUG]   (s) threadCountMethods = 0\n[DEBUG]   (s) threadCountSuites = 0\n[DEBUG]   (s) trimStackTrace = true\n[DEBUG]   (s) useFile = true\n[DEBUG]   (s) useManifestOnlyJar = true\n[DEBUG]   (s) useSystemClassLoader = true\n[DEBUG]   (s) useUnlimitedThreads = false\n[DEBUG]   (s) workingDirectory = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG] -- end configuration --\n[DEBUG] Surefire report directory: /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[DEBUG] Setting system property [user.dir]=[/home/nicoulaj/workspace/compile-command-annotations]\n[DEBUG] Setting system property [localRepository]=[/home/nicoulaj/.m2/repository]\n[DEBUG] Setting system property [basedir]=[/home/nicoulaj/workspace/compile-command-annotations]\n[DEBUG] dummy:dummy:jar:1.0 (selected for null)\n[DEBUG]   org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile (selected for compile)\n[DEBUG]     org.apache.maven.surefire:surefire-api:jar:2.19.1:compile (selected for compile)\n[DEBUG] Adding to surefire booter test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-booter/2.19.1/surefire-booter-2.19.1.jar Scope: compile\n[DEBUG] Adding to surefire booter test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar Scope: compile\n[DEBUG] Using JVM: /usr/lib/jvm/java-8-jdk/jre/bin/java\n[DEBUG] dummy:dummy:jar:1.0 (selected for null)\n[DEBUG]   org.apache.maven.surefire:surefire-testng:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:common-java5:jar:2.19.1:test (selected for test)\n[DEBUG]       org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:surefire-testng-utils:jar:2.19.1:test (selected for test)\n[DEBUG]       org.apache.maven.surefire:surefire-grouper:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test)\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar Scope: test\n[DEBUG] test classpath:  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes  /home/nicoulaj/workspace/compile-command-annotations/target/classes  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar\n[DEBUG] provider classpath:  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar\n[DEBUG] test(compact) classpath:  test-classes  classes  testng-6.10.jar  jcommander-1.48.jar  guava-21.0.jar  commons-io-2.5.jar  assertj-core-3.6.2.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar\n[DEBUG] provider(compact) classpath:  surefire-testng-2.19.1.jar  common-java5-2.19.1.jar  surefire-api-2.19.1.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar\n\n-------------------------------------------------------\n T E S T S\n-------------------------------------------------------\n[DEBUG] boot classpath:  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-booter/2.19.1/surefire-booter-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes  /home/nicoulaj/workspace/compile-command-annotations/target/classes  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar\n[DEBUG] boot(compact) classpath:  surefire-booter-2.19.1.jar  surefire-api-2.19.1.jar  test-classes  classes  testng-6.10.jar  jcommander-1.48.jar  guava-21.0.jar  commons-io-2.5.jar  assertj-core-3.6.2.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar  surefire-testng-2.19.1.jar  common-java5-2.19.1.jar\nForking command line: /bin/sh -c cd /home/nicoulaj/workspace/compile-command-annotations && /usr/lib/jvm/java-8-jdk/jre/bin/java -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec -jar /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefirebooter5685346919771426495.jar /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefire2652522124614461492tmp /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefire_02277511650090515438tmp\nRunning TestSuite\nConfiguring TestNG with: TestNG60Configurator\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.358 sec - in TestSuite\n\nResults :\n\nTests run: 28, Failures: 0, Errors: 0, Skipped: 0\n\n[INFO] \n[INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=82, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=31, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=75, DefaultDependencyCollector.collectTime=20, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-archiver:jar:3.1.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.1:compile\n[DEBUG]       commons-io:commons-io:jar:2.5:compile\n[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:3.4:compile\n[DEBUG]       org.codehaus.plexus:plexus-io:jar:2.7.1:compile\n[DEBUG]       org.apache.commons:commons-compress:jar:1.11:compile\n[DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile\n[DEBUG]       org.tukaani:xz:jar:1.5:runtime\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG]   Included: org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.1.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.1\n[DEBUG]   Included: commons-io:commons-io:jar:2.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:3.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.7.1\n[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.11\n[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4\n[DEBUG]   Included: org.tukaani:xz:jar:1.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar' with basic configurator -->\n[DEBUG]   (f) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) finalName = compile-command-annotations-1.2.2-SNAPSHOT\n[DEBUG]   (f) forceCreation = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skipIfEmpty = false\n[DEBUG]   (f) useDefaultManifestFile = false\n[DEBUG] -- end configuration --\n[DEBUG] isUp2date: false (Destination /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar not found.)\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] adding directory META-INF/\n[DEBUG] adding entry META-INF/MANIFEST.MF\n[DEBUG] adding directory META-INF/services/\n[DEBUG] adding directory net/\n[DEBUG] adding directory net/nicoulaj/\n[DEBUG] adding directory net/nicoulaj/compilecommand/\n[DEBUG] adding directory net/nicoulaj/compilecommand/annotations/\n[DEBUG] adding entry META-INF/services/javax.annotation.processing.Processor\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$2.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Exclude.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Print.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Option.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Inline.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Quiet.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Break.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/DontInline.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Options.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/CompileOnly.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Log.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$1.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$3.class\n[DEBUG] adding directory META-INF/maven/\n[DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/\n[DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/\n[DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.xml\n[DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.properties\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=206, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=67, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=151, DefaultDependencyCollector.collectTime=56, DefaultDependencyCollector.transformTime=2}\n[DEBUG] org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0:\n[DEBUG]    org.apache.maven.shared:maven-invoker:jar:2.2:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:3.8.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile\n[DEBUG]       org.apache.maven.doxia:doxia-core:jar:1.2:compile\n[DEBUG]          xerces:xercesImpl:jar:2.9.1:compile\n[DEBUG]             xml-apis:xml-apis:jar:1.3.04:compile\n[DEBUG]          commons-lang:commons-lang:jar:2.4:compile\n[DEBUG]          org.apache.httpcomponents:httpclient:jar:4.0.2:compile\n[DEBUG]             org.apache.httpcomponents:httpcore:jar:4.0.1:compile\n[DEBUG]             commons-codec:commons-codec:jar:1.3:compile\n[DEBUG]       commons-validator:commons-validator:jar:1.3.1:compile\n[DEBUG]          commons-beanutils:commons-beanutils:jar:1.7.0:compile\n[DEBUG]          commons-digester:commons-digester:jar:1.6:compile\n[DEBUG]          commons-logging:commons-logging:jar:1.0.4:compile\n[DEBUG]    org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile\n[DEBUG]       org.codehaus.groovy:groovy:jar:2.0.1:compile\n[DEBUG]          antlr:antlr:jar:2.7.7:compile\n[DEBUG]          org.ow2.asm:asm-tree:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-commons:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-util:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-analysis:jar:4.0:compile\n[DEBUG]    org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile\n[DEBUG]    org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile\n[DEBUG]       org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile\n[DEBUG]       org.apache.velocity:velocity:jar:1.5:compile\n[DEBUG]          oro:oro:jar:2.0.8:compile\n[DEBUG]       commons-collections:commons-collections:jar:3.2:compile\n[DEBUG]    org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]    org.codehaus.groovy:groovy-all:jar:2.0.1:compile\n[DEBUG]    org.apache.ant:ant:jar:1.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.21:compile\n[DEBUG]    commons-io:commons-io:jar:2.2:compile\n[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.21:compile\n[DEBUG]    org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0\n[DEBUG]   Included: org.apache.maven.shared:maven-invoker:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: junit:junit:jar:3.8.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-core:jar:1.2\n[DEBUG]   Included: xerces:xercesImpl:jar:2.9.1\n[DEBUG]   Included: xml-apis:xml-apis:jar:1.3.04\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.4\n[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.0.2\n[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.0.1\n[DEBUG]   Included: commons-codec:commons-codec:jar:1.3\n[DEBUG]   Included: commons-validator:commons-validator:jar:1.3.1\n[DEBUG]   Included: commons-beanutils:commons-beanutils:jar:1.7.0\n[DEBUG]   Included: commons-digester:commons-digester:jar:1.6\n[DEBUG]   Included: commons-logging:commons-logging:jar:1.0.4\n[DEBUG]   Included: org.apache.maven.shared:maven-script-interpreter:jar:1.1\n[DEBUG]   Included: org.codehaus.groovy:groovy:jar:2.0.1\n[DEBUG]   Included: antlr:antlr:jar:2.7.7\n[DEBUG]   Included: org.ow2.asm:asm-tree:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-commons:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-util:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-analysis:jar:4.0\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7\n[DEBUG]   Included: org.apache.velocity:velocity:jar:1.5\n[DEBUG]   Included: oro:oro:jar:2.0.8\n[DEBUG]   Included: commons-collections:commons-collections:jar:3.2\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.codehaus.groovy:groovy-all:jar:2.0.1\n[DEBUG]   Included: org.apache.ant:ant:jar:1.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.21\n[DEBUG]   Included: commons-io:commons-io:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.21\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install' with basic configurator -->\n[DEBUG]   (f) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) reactorProjects = [MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml]\n[DEBUG]   (f) remoteArtifactRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => daily]\n]\n[DEBUG]   (f) remotePluginRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => never]\n]\n[DEBUG]   (f) skipInstallation = false\n[DEBUG] -- end configuration --\n[DEBUG] Installing /home/nicoulaj/.m2/repository/net/nicoulaj/parent/48/parent-48.pom to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration' with basic configurator -->\n[DEBUG]   (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) pluginArtifactMap = {org.jacoco:jacoco-maven-plugin=org.jacoco:jacoco-maven-plugin:maven-plugin:0.7.7.201606060606:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.8.2:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1-alpha-2:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.22:compile, org.apache.maven.shared:file-management=org.apache.maven.shared:file-management:jar:1.2.1:compile, org.apache.maven.shared:maven-shared-io=org.apache.maven.shared:maven-shared-io:jar:1.1:compile, org.apache.maven.wagon:wagon-provider-api=org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile, org.apache.maven.doxia:doxia-logging-api=org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile, org.apache.maven.reporting:maven-reporting-impl=org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile, org.apache.maven.doxia:doxia-core=org.apache.maven.doxia:doxia-core:jar:1.1.2:compile, xerces:xercesImpl=xerces:xercesImpl:jar:2.8.1:compile, commons-lang:commons-lang=commons-lang:commons-lang:jar:2.4:compile, commons-httpclient:commons-httpclient=commons-httpclient:commons-httpclient:jar:3.1:compile, commons-codec:commons-codec=commons-codec:commons-codec:jar:1.2:compile, org.apache.maven.doxia:doxia-site-renderer=org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile, org.apache.maven.doxia:doxia-decoration-model=org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-xhtml=org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-fml=org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile, org.codehaus.plexus:plexus-i18n=org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile, org.codehaus.plexus:plexus-velocity=org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity=org.apache.velocity:velocity:jar:1.5:compile, commons-collections:commons-collections=commons-collections:commons-collections:jar:3.2:compile, commons-validator:commons-validator=commons-validator:commons-validator:jar:1.2.0:compile, commons-beanutils:commons-beanutils=commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester=commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.0.4:compile, oro:oro=oro:oro:jar:2.0.8:compile, xml-apis:xml-apis=xml-apis:xml-apis:jar:1.0.b2:compile, org.jacoco:org.jacoco.agent=org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile, org.jacoco:org.jacoco.core=org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile, org.ow2.asm:asm-debug-all=org.ow2.asm:asm-debug-all:jar:5.1:compile, org.jacoco:org.jacoco.report=org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile}\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) propertyName = invoker.mavenOpts\n[DEBUG]   (f) skip = false\n[DEBUG] -- end configuration --\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run' with basic configurator -->\n[DEBUG]   (f) addTestClassPath = true\n[DEBUG]   (f) cloneAllFiles = false\n[DEBUG]   (f) cloneClean = false\n[DEBUG]   (f) cloneProjectsTo = /home/nicoulaj/workspace/compile-command-annotations/target/it/tests\n[DEBUG]   (f) debug = false\n[DEBUG]   (f) disableReports = false\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) goals = [clean, install]\n[DEBUG]   (f) goalsFile = goals.txt\n[DEBUG]   (f) ignoreFailures = false\n[DEBUG]   (f) invokerPropertiesFile = invoker.properties\n[DEBUG]   (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[DEBUG]   (f) mavenOpts = -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) mergeUserSettings = false\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run {execution: run-integration-tests}\n[DEBUG]   (f) noLog = false\n[DEBUG]   (f) parallelThreads = 1\n[DEBUG]   (f) pluginArtifacts = [org.apache.maven.plugins:maven-invoker-plugin:maven-plugin:2.0.0:, org.apache.maven.shared:maven-invoker:jar:2.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile, org.apache.maven:maven-core:jar:2.2.1:compile, org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile, org.slf4j:slf4j-jdk14:jar:1.5.6:runtime, org.slf4j:slf4j-api:jar:1.5.6:runtime, org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime, org.apache.maven:maven-profile:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit:jar:3.8.1:compile, org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile, commons-cli:commons-cli:jar:1.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-monitor:jar:2.2.1:compile, classworlds:classworlds:jar:1.1:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile, org.sonatype.plexus:plexus-cipher:jar:1.4:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-artifact:jar:2.2.1:compile, org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile, org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile, org.apache.maven.doxia:doxia-core:jar:1.2:compile, xerces:xercesImpl:jar:2.9.1:compile, xml-apis:xml-apis:jar:1.3.04:compile, commons-lang:commons-lang:jar:2.4:compile, org.apache.httpcomponents:httpclient:jar:4.0.2:compile, org.apache.httpcomponents:httpcore:jar:4.0.1:compile, commons-codec:commons-codec:jar:1.3:compile, commons-validator:commons-validator:jar:1.3.1:compile, commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging:jar:1.0.4:compile, org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile, org.codehaus.groovy:groovy:jar:2.0.1:compile, antlr:antlr:jar:2.7.7:compile, org.ow2.asm:asm-tree:jar:4.0:compile, org.ow2.asm:asm-commons:jar:4.0:compile, org.ow2.asm:asm:jar:4.0:compile, org.ow2.asm:asm-util:jar:4.0:compile, org.ow2.asm:asm-analysis:jar:4.0:compile, org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile, org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile, org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile, org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile, org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile, org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile, org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity:jar:1.5:compile, oro:oro:jar:2.0.8:compile, commons-collections:commons-collections:jar:3.2:compile, org.beanshell:bsh:jar:2.0b4:compile, org.codehaus.groovy:groovy-all:jar:2.0.1:compile, org.apache.ant:ant:jar:1.8.1:compile, org.codehaus.plexus:plexus-utils:jar:3.0.21:compile, commons-io:commons-io:jar:2.2:compile, org.codehaus.plexus:plexus-interpolation:jar:1.21:compile, org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile]\n[DEBUG]   (f) pomIncludes = [*/pom.xml]\n[DEBUG]   (f) postBuildHookScript = postbuild\n[DEBUG]   (f) preBuildHookScript = prebuild\n[DEBUG]   (f) profilesFile = profiles.txt\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) projectsDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/it/tests\n[DEBUG]   (f) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/it/reports\n[DEBUG]   (f) selectorScript = selector.bsh\n[DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@4d20616a\n[DEBUG]   (f) settingsFile = /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml\n[DEBUG]   (f) showErrors = true\n[DEBUG]   (f) showVersion = false\n[DEBUG]   (f) skipInvocation = false\n[DEBUG]   (f) streamLogs = false\n[DEBUG]   (f) suppressSummaries = false\n[DEBUG]   (f) testClassPath = [/home/nicoulaj/workspace/compile-command-annotations/target/test-classes, /home/nicoulaj/workspace/compile-command-annotations/target/classes, /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar, /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar, /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar, /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar, /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar]\n[DEBUG]   (f) testPropertiesFile = test.properties\n[DEBUG] -- end configuration --\n[DEBUG] Setup projects: []\n[DEBUG] Collecting parent/child projects of IT-01/pom.xml\n[DEBUG] Collecting parent/child projects of IT-03/pom.xml\n[DEBUG] Collecting parent/child projects of IT-02/pom.xml\n[DEBUG] Collecting parent/child projects of IT-05/pom.xml\n[DEBUG] Collecting parent/child projects of IT-04/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml\n[INFO] Building: IT-01/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-01\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy\n[INFO] ..SUCCESS (4.8 s)\n[INFO] Building: IT-03/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-03\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[INFO] Building: IT-02/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-02\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy\n[INFO] ..SUCCESS (3.3 s)\n[INFO] Building: IT-05/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = failure\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-05\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy\n[INFO] ..SUCCESS (2.4 s)\n[INFO] Building: IT-04/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-04\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[INFO] -------------------------------------------------\n[INFO] Build Summary:\n[INFO]   Passed: 5, Failed: 0, Errors: 0, Skipped: 0\n[INFO] -------------------------------------------------\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.\n[DEBUG] Setting property: site.resource.loader.class => 'org.codehaus.plexus.velocity.SiteResourceLoader'.\n[DEBUG] Setting property: velocimacro.messages.on => 'false'.\n[DEBUG] Setting property: resource.loader => 'classpath,site'.\n[DEBUG] Setting property: runtime.log.invalid.references => 'false'.\n[DEBUG] Setting property: resource.manager.logwhenfound => 'false'.\n[DEBUG] Setting property: velocimacro.permissions.allow.inline.to.replace.global => 'true'.\n[DEBUG] *******************************************************************\n[DEBUG] Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29)\n[DEBUG] RuntimeInstance initializing.\n[DEBUG] Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties\n[DEBUG] LogSystem has been deprecated. Please use a LogChute implementation.\n[DEBUG] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)\n[DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader\n[DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.SiteResourceLoader\n[DEBUG] ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl)\n[DEBUG] Default ResourceManager initialization complete.\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach\n[DEBUG] Created '20' parsers.\n[DEBUG] Velocimacro : initialization starting.\n[DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in templates\n[DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may replace previous VM definitions\n[DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.\n[DEBUG] Velocimacro : autoload off : VM system will not automatically reload global library macros\n[DEBUG] Velocimacro : Velocimacro : initialization complete.\n[DEBUG] RuntimeInstance successfully initialized.\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report' with basic configurator -->\n[DEBUG]   (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco\n[DEBUG]   (f) outputEncoding = UTF-8\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) sourceEncoding = UTF-8\n[DEBUG]   (f) title = Hotspot compile command annotations\n[DEBUG] -- end configuration --\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration' with basic configurator -->\n[DEBUG]   (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco-it\n[DEBUG]   (f) outputEncoding = UTF-8\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) sourceEncoding = UTF-8\n[DEBUG]   (f) title = Hotspot compile command annotations\n[DEBUG] -- end configuration --\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=38, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=15, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=35, DefaultDependencyCollector.collectTime=14, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.4:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.6:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:3.8.1:compile\n[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile\n[DEBUG]    org.apache.maven:maven-model:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-artifact-manager:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.5:compile\n[DEBUG]    org.codehaus.plexus:plexus-digest:jar:1.0:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG]   Included: org.apache.maven.plugins:maven-install-plugin:jar:2.4\n[DEBUG]   Included: junit:junit:jar:3.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-digest:jar:1.0\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-install-plugin:2.4:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-install-plugin:2.4, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.4:install' with basic configurator -->\n[DEBUG]   (f) artifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]   (f) attachedArtifacts = []\n[DEBUG]   (f) createChecksum = false\n[DEBUG]   (f) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) packaging = jar\n[DEBUG]   (f) pomFile = /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) skip = false\n[DEBUG]   (f) updateReleaseInfo = false\n[DEBUG] -- end configuration --\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] ------------------------------------------------------------------------\n[INFO] BUILD SUCCESS\n[INFO] ------------------------------------------------------------------------\n[INFO] Total time: 20.999 s\n[INFO] Finished at: 2017-03-19T16:29:40+01:00\n[INFO] Final Memory: 32M/319M\n[INFO] ------------------------------------------------------------------------\n"
  },
  {
    "path": "tests/data/ref/mvn-004.log.out",
    "content": "Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00)\nMaven home: /opt/maven\nJava version: 1.8.0_121, vendor: Oracle Corporation\nJava home: /usr/lib/jvm/java-8-jdk/jre\nDefault locale: en_US, platform encoding: ANSI_X3.4-1968\nOS name: \"linux\", version: \"4.10.2-1-arch\", arch: \"amd64\", family: \"unix\"\n[DEBUG] Created new class realm maven.api\n[DEBUG] Importing foreign packages into class realm maven.api\n[DEBUG]   Imported: javax.enterprise.inject.* < plexus.core\n[DEBUG]   Imported: javax.enterprise.util.* < plexus.core\n[DEBUG]   Imported: javax.inject.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.artifact < plexus.core\n[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core\n[DEBUG]   Imported: org.apache.maven.cli < plexus.core\n[DEBUG]   Imported: org.apache.maven.configuration < plexus.core\n[DEBUG]   Imported: org.apache.maven.exception < plexus.core\n[DEBUG]   Imported: org.apache.maven.execution < plexus.core\n[DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core\n[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core\n[DEBUG]   Imported: org.apache.maven.model < plexus.core\n[DEBUG]   Imported: org.apache.maven.monitor < plexus.core\n[DEBUG]   Imported: org.apache.maven.plugin < plexus.core\n[DEBUG]   Imported: org.apache.maven.profiles < plexus.core\n[DEBUG]   Imported: org.apache.maven.project < plexus.core\n[DEBUG]   Imported: org.apache.maven.reporting < plexus.core\n[DEBUG]   Imported: org.apache.maven.repository < plexus.core\n[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core\n[DEBUG]   Imported: org.apache.maven.settings < plexus.core\n[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core\n[DEBUG]   Imported: org.apache.maven.usability < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core\n[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core\n[DEBUG]   Imported: org.codehaus.classworlds < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core\n[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.* < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.collection < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.graph < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.impl < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.installation < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.repository < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.spi < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core\n[DEBUG]   Imported: org.eclipse.aether.version < plexus.core\n[DEBUG]   Imported: org.slf4j.* < plexus.core\n[DEBUG]   Imported: org.slf4j.helpers.* < plexus.core\n[DEBUG]   Imported: org.slf4j.spi.* < plexus.core\n[DEBUG] Populating class realm maven.api\n[INFO] Error stacktraces are turned on.\n[DEBUG] Reading global settings from /opt/maven/conf/settings.xml\n[DEBUG] Reading user settings from /home/nicoulaj/.m2/settings.xml\n[DEBUG] Reading global toolchains from /opt/maven/conf/toolchains.xml\n[DEBUG] Reading user toolchains from /home/nicoulaj/.m2/toolchains.xml\n[DEBUG] Using local repository at /home/nicoulaj/.m2/repository\n[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /home/nicoulaj/.m2/repository\n[FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]...\n[DEBUG] Extension realms for project net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT: (none)\n[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]\n[DEBUG] Extension realms for project net.nicoulaj:parent:pom:48: (none)\n[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]\n[DEBUG] === REACTOR BUILD PLAN ================================================\n[DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG] Tasks:   [clean, install]\n[DEBUG] Style:   Regular\n[DEBUG] =======================================================================\n[INFO]                                                                         \n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]\n[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]\n[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]\n[DEBUG] === PROJECT BUILD PLAN ================================================\n[DEBUG] Project:       net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT\n[DEBUG] Dependencies (collect): [test]\n[DEBUG] Dependencies (resolve): [compile, runtime, test]\n[DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]\n[DEBUG] Repositories (plugins)     : [central (https://repo.maven.apache.org/maven2, default, releases)]\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <directory default-value=\"${project.build.directory}\"/>\n  <excludeDefaultDirectories default-value=\"false\">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories>\n  <failOnError default-value=\"true\">${maven.clean.failOnError}</failOnError>\n  <followSymLinks default-value=\"false\">${maven.clean.followSymLinks}</followSymLinks>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <reportDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <retryOnError default-value=\"true\">${maven.clean.retryOnError}</retryOnError>\n  <skip default-value=\"false\">${maven.clean.skip}</skip>\n  <testOutputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <verbose>${maven.clean.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <fail default-value=\"true\">${enforcer.fail}</fail>\n  <failFast default-value=\"false\">${enforcer.failFast}</failFast>\n  <ignoreCache default-value=\"false\">${enforcer.ignoreCache}</ignoreCache>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <project default-value=\"${project}\"/>\n  <rules>\n    <requireMavenVersion>\n      <version>[3.2.1,)</version>\n      <message>Maven v3.2.1+ is required to build this project, please update.</message>\n    </requireMavenVersion>\n  </rules>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${enforcer.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <address>${jacoco.address}</address>\n  <append>${jacoco.append}</append>\n  <classDumpDir>${jacoco.classDumpDir}</classDumpDir>\n  <destFile default-value=\"${project.build.directory}/jacoco.exec\">${jacoco.destFile}</destFile>\n  <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit>\n  <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders>\n  <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses>\n  <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses>\n  <jmx>${jacoco.jmx}</jmx>\n  <output>${jacoco.output}</output>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <port>${jacoco.port}</port>\n  <project>${project}</project>\n  <propertyName>${jacoco.propertyName}</propertyName>\n  <sessionId>${jacoco.sessionId}</sessionId>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources (default-resources)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addDefaultExcludes default-value=\"true\"/>\n  <buildFilters default-value=\"${project.build.filters}\"/>\n  <encoding default-value=\"${project.build.sourceEncoding}\"/>\n  <escapeString default-value=\"\\\"/>\n  <escapeWindowsPaths default-value=\"true\"/>\n  <fileNameFiltering default-value=\"false\"/>\n  <includeEmptyDirs default-value=\"false\"/>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <overwrite default-value=\"false\"/>\n  <project default-value=\"${project}\"/>\n  <resources default-value=\"${project.resources}\"/>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${maven.resources.skip}</skip>\n  <supportMultiLineFiltering default-value=\"false\"/>\n  <useBuildFilters default-value=\"true\"/>\n  <useDefaultDelimiters default-value=\"true\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile (default-compile)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <basedir default-value=\"${basedir}\"/>\n  <buildDirectory default-value=\"${project.build.directory}\"/>\n  <compilePath default-value=\"${project.compileClasspathElements}\"/>\n  <compileSourceRoots default-value=\"${project.compileSourceRoots}\"/>\n  <compilerArgument>-proc:none</compilerArgument>\n  <compilerId default-value=\"javac\">${maven.compiler.compilerId}</compilerId>\n  <compilerReuseStrategy default-value=\"${reuseCreated}\">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>\n  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>\n  <debug default-value=\"true\">${maven.compiler.debug}</debug>\n  <debuglevel>${maven.compiler.debuglevel}</debuglevel>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <executable>${maven.compiler.executable}</executable>\n  <failOnError default-value=\"true\">${maven.compiler.failOnError}</failOnError>\n  <failOnWarning default-value=\"false\">${maven.compiler.failOnWarning}</failOnWarning>\n  <forceJavacCompilerUse default-value=\"false\">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>\n  <fork default-value=\"false\">${maven.compiler.fork}</fork>\n  <generatedSourcesDirectory default-value=\"${project.build.directory}/generated-sources/annotations\"/>\n  <maxmem>${maven.compiler.maxmem}</maxmem>\n  <meminitial>${maven.compiler.meminitial}</meminitial>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <optimize default-value=\"false\">${maven.compiler.optimize}</optimize>\n  <outputDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <project default-value=\"${project}\"/>\n  <projectArtifact default-value=\"${project.artifact}\"/>\n  <release>${maven.compiler.release}</release>\n  <session default-value=\"${session}\"/>\n  <showDeprecation default-value=\"false\">${maven.compiler.showDeprecation}</showDeprecation>\n  <showWarnings default-value=\"false\">${maven.compiler.showWarnings}</showWarnings>\n  <skipMain>${maven.main.skip}</skipMain>\n  <skipMultiThreadWarning default-value=\"false\">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>\n  <source default-value=\"1.5\">1.6</source>\n  <staleMillis default-value=\"0\">${lastModGranularityMs}</staleMillis>\n  <target default-value=\"1.5\">1.6</target>\n  <useIncrementalCompilation default-value=\"true\">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>\n  <verbose default-value=\"false\">${maven.compiler.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <project default-value=\"${project}\"/>\n  <sources>\n    <source>/home/nicoulaj/workspace/compile-command-annotations/src/samples/java</source>\n  </sources>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources (default-testResources)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addDefaultExcludes default-value=\"true\"/>\n  <buildFilters default-value=\"${project.build.filters}\"/>\n  <encoding default-value=\"${project.build.sourceEncoding}\"/>\n  <escapeString default-value=\"\\\"/>\n  <escapeWindowsPaths default-value=\"true\"/>\n  <fileNameFiltering default-value=\"false\"/>\n  <includeEmptyDirs default-value=\"false\"/>\n  <outputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <overwrite default-value=\"false\"/>\n  <project default-value=\"${project}\"/>\n  <resources default-value=\"${project.testResources}\"/>\n  <session default-value=\"${session}\"/>\n  <skip default-value=\"false\">${maven.test.skip}</skip>\n  <supportMultiLineFiltering default-value=\"false\"/>\n  <useBuildFilters default-value=\"true\"/>\n  <useDefaultDelimiters default-value=\"true\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile (default-testCompile)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <basedir default-value=\"${basedir}\"/>\n  <buildDirectory default-value=\"${project.build.directory}\"/>\n  <compilePath default-value=\"${project.compileClasspathElements}\"/>\n  <compileSourceRoots default-value=\"${project.testCompileSourceRoots}\"/>\n  <compilerArgument>-proc:none</compilerArgument>\n  <compilerId default-value=\"javac\">${maven.compiler.compilerId}</compilerId>\n  <compilerReuseStrategy default-value=\"${reuseCreated}\">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>\n  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>\n  <debug default-value=\"true\">${maven.compiler.debug}</debug>\n  <debuglevel>${maven.compiler.debuglevel}</debuglevel>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <executable>${maven.compiler.executable}</executable>\n  <failOnError default-value=\"true\">${maven.compiler.failOnError}</failOnError>\n  <failOnWarning default-value=\"false\">${maven.compiler.failOnWarning}</failOnWarning>\n  <forceJavacCompilerUse default-value=\"false\">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>\n  <fork default-value=\"false\">${maven.compiler.fork}</fork>\n  <generatedTestSourcesDirectory default-value=\"${project.build.directory}/generated-test-sources/test-annotations\"/>\n  <maxmem>${maven.compiler.maxmem}</maxmem>\n  <meminitial>${maven.compiler.meminitial}</meminitial>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <optimize default-value=\"false\">${maven.compiler.optimize}</optimize>\n  <outputDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <project default-value=\"${project}\"/>\n  <release>${maven.compiler.release}</release>\n  <session default-value=\"${session}\"/>\n  <showDeprecation default-value=\"false\">${maven.compiler.showDeprecation}</showDeprecation>\n  <showWarnings default-value=\"false\">${maven.compiler.showWarnings}</showWarnings>\n  <skip>${maven.test.skip}</skip>\n  <skipMultiThreadWarning default-value=\"false\">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>\n  <source default-value=\"1.5\">1.6</source>\n  <staleMillis default-value=\"0\">${lastModGranularityMs}</staleMillis>\n  <target default-value=\"1.5\">1.6</target>\n  <testPath default-value=\"${project.testClasspathElements}\"/>\n  <testRelease>${maven.compiler.testRelease}</testRelease>\n  <testSource>${maven.compiler.testSource}</testSource>\n  <testTarget>${maven.compiler.testTarget}</testTarget>\n  <useIncrementalCompilation default-value=\"true\">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>\n  <verbose default-value=\"false\">${maven.compiler.verbose}</verbose>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <additionalClasspathElements>${maven.test.additionalClasspath}</additionalClasspathElements>\n  <argLine>${argLine}</argLine>\n  <basedir default-value=\"${basedir}\"/>\n  <childDelegation default-value=\"false\">${childDelegation}</childDelegation>\n  <classesDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <classpathDependencyExcludes>${maven.test.dependency.excludes}</classpathDependencyExcludes>\n  <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>\n  <dependenciesToScan>${dependenciesToScan}</dependenciesToScan>\n  <disableXmlReport default-value=\"false\">${disableXmlReport}</disableXmlReport>\n  <enableAssertions default-value=\"true\">${enableAssertions}</enableAssertions>\n  <excludedGroups>${excludedGroups}</excludedGroups>\n  <excludesFile>${surefire.excludesFile}</excludesFile>\n  <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>\n  <failIfNoTests>${failIfNoTests}</failIfNoTests>\n  <forkCount default-value=\"1\">${forkCount}</forkCount>\n  <forkMode default-value=\"once\">${forkMode}</forkMode>\n  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>\n  <groups>${groups}</groups>\n  <includesFile>${surefire.includesFile}</includesFile>\n  <junitArtifactName default-value=\"junit:junit\">${junitArtifactName}</junitArtifactName>\n  <jvm>${jvm}</jvm>\n  <localRepository default-value=\"${localRepository}\"/>\n  <objectFactory>${objectFactory}</objectFactory>\n  <parallel>${parallel}</parallel>\n  <parallelMavenExecution default-value=\"${session.parallel}\"/>\n  <parallelOptimized default-value=\"true\">${parallelOptimized}</parallelOptimized>\n  <parallelTestsTimeoutForcedInSeconds>${surefire.parallel.forcedTimeout}</parallelTestsTimeoutForcedInSeconds>\n  <parallelTestsTimeoutInSeconds>${surefire.parallel.timeout}</parallelTestsTimeoutInSeconds>\n  <perCoreThreadCount default-value=\"true\">${perCoreThreadCount}</perCoreThreadCount>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <pluginDescriptor default-value=\"${plugin}\"/>\n  <printSummary default-value=\"true\">${surefire.printSummary}</printSummary>\n  <projectArtifactMap>${project.artifactMap}</projectArtifactMap>\n  <redirectTestOutputToFile default-value=\"false\">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>\n  <remoteRepositories default-value=\"${project.pluginArtifactRepositories}\"/>\n  <reportFormat default-value=\"brief\">${surefire.reportFormat}</reportFormat>\n  <reportNameSuffix default-value=\"\">${surefire.reportNameSuffix}</reportNameSuffix>\n  <reportsDirectory default-value=\"${project.build.directory}/surefire-reports\"/>\n  <rerunFailingTestsCount default-value=\"0\">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>\n  <reuseForks default-value=\"true\">${reuseForks}</reuseForks>\n  <runOrder default-value=\"filesystem\">${surefire.runOrder}</runOrder>\n  <shutdown default-value=\"testset\">${surefire.shutdown}</shutdown>\n  <skip default-value=\"false\">${maven.test.skip}</skip>\n  <skipAfterFailureCount default-value=\"0\">${surefire.skipAfterFailureCount}</skipAfterFailureCount>\n  <skipExec>${maven.test.skip.exec}</skipExec>\n  <skipTests default-value=\"false\">${skipTests}</skipTests>\n  <suiteXmlFiles>${surefire.suiteXmlFiles}</suiteXmlFiles>\n  <test>${test}</test>\n  <testClassesDirectory default-value=\"${project.build.testOutputDirectory}\"/>\n  <testFailureIgnore default-value=\"false\">${maven.test.failure.ignore}</testFailureIgnore>\n  <testNGArtifactName default-value=\"org.testng:testng\">${testNGArtifactName}</testNGArtifactName>\n  <testSourceDirectory default-value=\"${project.build.testSourceDirectory}\"/>\n  <threadCount>${threadCount}</threadCount>\n  <threadCountClasses default-value=\"0\">${threadCountClasses}</threadCountClasses>\n  <threadCountMethods default-value=\"0\">${threadCountMethods}</threadCountMethods>\n  <threadCountSuites default-value=\"0\">${threadCountSuites}</threadCountSuites>\n  <trimStackTrace default-value=\"true\">${trimStackTrace}</trimStackTrace>\n  <useFile default-value=\"true\">${surefire.useFile}</useFile>\n  <useManifestOnlyJar default-value=\"true\">${surefire.useManifestOnlyJar}</useManifestOnlyJar>\n  <useSystemClassLoader default-value=\"true\">${surefire.useSystemClassLoader}</useSystemClassLoader>\n  <useUnlimitedThreads default-value=\"false\">${useUnlimitedThreads}</useUnlimitedThreads>\n  <workingDirectory>${basedir}</workingDirectory>\n  <project default-value=\"${project}\"/>\n  <session default-value=\"${session}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar (default-jar)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <classesDirectory default-value=\"${project.build.outputDirectory}\"/>\n  <finalName default-value=\"${project.build.finalName}\"/>\n  <forceCreation default-value=\"false\">${maven.jar.forceCreation}</forceCreation>\n  <outputDirectory default-value=\"${project.build.directory}\"/>\n  <project default-value=\"${project}\"/>\n  <session default-value=\"${session}\"/>\n  <skipIfEmpty default-value=\"false\"/>\n  <useDefaultManifestFile default-value=\"false\">${jar.useDefaultManifestFile}</useDefaultManifestFile>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install (run-integration-tests)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <localRepository>${localRepository}</localRepository>\n  <localRepositoryPath>/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath>\n  <project default-value=\"${project}\"/>\n  <reactorProjects default-value=\"${reactorProjects}\"/>\n  <remoteArtifactRepositories default-value=\"${project.remoteArtifactRepositories}\"/>\n  <remotePluginRepositories default-value=\"${project.pluginArtifactRepositories}\"/>\n  <skipInstallation default-value=\"false\">false</skipInstallation>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <address>${jacoco.address}</address>\n  <append>${jacoco.append}</append>\n  <classDumpDir>${jacoco.classDumpDir}</classDumpDir>\n  <destFile default-value=\"${project.build.directory}/jacoco-it.exec\">${jacoco.destFile}</destFile>\n  <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit>\n  <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders>\n  <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses>\n  <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses>\n  <jmx>${jacoco.jmx}</jmx>\n  <output>${jacoco.output}</output>\n  <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>\n  <port>${jacoco.port}</port>\n  <project>${project}</project>\n  <propertyName>invoker.mavenOpts</propertyName>\n  <sessionId>${jacoco.sessionId}</sessionId>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <addTestClassPath default-value=\"false\">true</addTestClassPath>\n  <cloneAllFiles default-value=\"false\"/>\n  <cloneClean default-value=\"false\"/>\n  <cloneProjectsTo>/home/nicoulaj/workspace/compile-command-annotations/target/it/tests</cloneProjectsTo>\n  <debug default-value=\"false\">false</debug>\n  <disableReports default-value=\"false\">${invoker.disableReports}</disableReports>\n  <encoding default-value=\"${project.build.sourceEncoding}\">${encoding}</encoding>\n  <failIfNoProjects>${invoker.failIfNoProjects}</failIfNoProjects>\n  <goals>\n    <goal>clean</goal>\n    <goal>install</goal>\n  </goals>\n  <goalsFile default-value=\"goals.txt\">${invoker.goalsFile}</goalsFile>\n  <ignoreFailures default-value=\"false\">${maven.test.failure.ignore}</ignoreFailures>\n  <invokerPropertiesFile default-value=\"invoker.properties\">${invoker.invokerPropertiesFile}</invokerPropertiesFile>\n  <invokerTest>${invoker.test}</invokerTest>\n  <javaHome>${invoker.javaHome}</javaHome>\n  <localRepositoryPath default-value=\"${settings.localRepository}\">/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath>\n  <mavenExecutable>${invoker.mavenExecutable}</mavenExecutable>\n  <mavenHome>${invoker.mavenHome}</mavenHome>\n  <mavenOpts>${invoker.mavenOpts}</mavenOpts>\n  <mergeUserSettings default-value=\"false\">${invoker.mergeUserSettings}</mergeUserSettings>\n  <mojoExecution default-value=\"${mojoExecution}\"/>\n  <noLog default-value=\"false\">${invoker.noLog}</noLog>\n  <parallelThreads default-value=\"1\">${invoker.parallelThreads}</parallelThreads>\n  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>\n  <pom>${invoker.pom}</pom>\n  <pomIncludes>\n    <pomInclude>*/pom.xml</pomInclude>\n  </pomIncludes>\n  <postBuildHookScript default-value=\"postbuild\">${invoker.postBuildHookScript}</postBuildHookScript>\n  <preBuildHookScript default-value=\"prebuild\">${invoker.preBuildHookScript}</preBuildHookScript>\n  <profilesFile default-value=\"profiles.txt\">${invoker.profilesFile}</profilesFile>\n  <project default-value=\"${project}\"/>\n  <projectsDirectory default-value=\"${basedir}/src/it/\">src/it/tests</projectsDirectory>\n  <reportsDirectory default-value=\"${project.build.directory}/invoker-reports\">/home/nicoulaj/workspace/compile-command-annotations/target/it/reports</reportsDirectory>\n  <selectorScript default-value=\"selector\">selector.bsh</selectorScript>\n  <settings default-value=\"${settings}\"/>\n  <settingsFile>src/it/settings.xml</settingsFile>\n  <showErrors default-value=\"false\">true</showErrors>\n  <showVersion default-value=\"false\">${invoker.showVersion}</showVersion>\n  <skipInvocation default-value=\"false\">false</skipInvocation>\n  <streamLogs default-value=\"false\">${invoker.streamLogs}</streamLogs>\n  <suppressSummaries default-value=\"false\"/>\n  <testClassPath default-value=\"${project.testClasspathElements}\"/>\n  <testPropertiesFile default-value=\"test.properties\">${invoker.testPropertiesFile}</testPropertiesFile>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <dataFile default-value=\"${project.build.directory}/jacoco.exec\"/>\n  <outputDirectory default-value=\"${project.reporting.outputDirectory}/jacoco\"/>\n  <outputEncoding default-value=\"UTF-8\">${project.reporting.outputEncoding}</outputEncoding>\n  <project>${project}</project>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n  <sourceEncoding default-value=\"UTF-8\">${project.build.sourceEncoding}</sourceEncoding>\n  <title default-value=\"${project.name}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <dataFile default-value=\"${project.build.directory}/jacoco-it.exec\"/>\n  <outputDirectory default-value=\"${project.reporting.outputDirectory}/jacoco-it\"/>\n  <outputEncoding default-value=\"UTF-8\">${project.reporting.outputEncoding}</outputEncoding>\n  <project>${project}</project>\n  <skip default-value=\"false\">${jacoco.skip}</skip>\n  <sourceEncoding default-value=\"UTF-8\">${project.build.sourceEncoding}</sourceEncoding>\n  <title default-value=\"${project.name}\"/>\n</configuration>\n[DEBUG] -----------------------------------------------------------------------\n[DEBUG] Goal:          org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install)\n[DEBUG] Style:         Regular\n[DEBUG] Configuration: <?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n  <artifact default-value=\"${project.artifact}\"/>\n  <attachedArtifacts default-value=\"${project.attachedArtifacts}\"/>\n  <createChecksum default-value=\"false\">${createChecksum}</createChecksum>\n  <localRepository>${localRepository}</localRepository>\n  <packaging default-value=\"${project.packaging}\"/>\n  <pomFile default-value=\"${project.file}\"/>\n  <skip default-value=\"false\">${maven.install.skip}</skip>\n  <updateReleaseInfo default-value=\"false\">${updateReleaseInfo}</updateReleaseInfo>\n</configuration>\n[DEBUG] =======================================================================\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=6, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=5, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=5, DefaultDependencyCollector.collectTime=26, DefaultDependencyCollector.transformTime=5}\n[DEBUG] net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]    org.testng:testng:jar:6.10:test\n[DEBUG]       com.beust:jcommander:jar:1.48:test\n[DEBUG]    com.google.guava:guava:jar:21.0:test\n[DEBUG]    commons-io:commons-io:jar:2.5:test\n[DEBUG]    org.assertj:assertj-core:jar:3.6.2:test\n[INFO] \n[FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=15, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=13, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=15, DefaultDependencyCollector.collectTime=48, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]          org.codehaus.plexus:plexus-utils:jar:2.0.4:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]       commons-io:commons-io:jar:2.4:compile\n[DEBUG]       com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator -->\n[DEBUG]   (f) directory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) excludeDefaultDirectories = false\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) followSymLinks = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) reportDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) retryOnError = true\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) testOutputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] -- end configuration --\n[INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/IT-04-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT/IT-04-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/IT-02-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT/IT-02-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/IT-03-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT/IT-03-1.0-SNAPSHOT.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/IT-01-1.0-SNAPSHOT.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT/IT-01-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/maven-core-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/maven-model-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/maven-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/maven-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/maven-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0/maven-compiler-plugin-3.6.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.lastUpdated\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.lastUpdated\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/asm-parent-6.0_ALPHA.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/asm-parent-6.0_ALPHA.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/asm-6.0_ALPHA.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/exec-maven-plugin-1.5.0.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/plexus-compiler-api-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/plexus-compiler-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/plexus-compiler-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/plexus-compiler-javac-2.8.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/plexus-compilers-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/plexus-compilers-2.8.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/plexus-compiler-manager-2.8.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/_remote.repositories\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom.sha1\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-03.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/invoker-summary.txt\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-01.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-02.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-04.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-05.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/reports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand/IT04.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/IT-04-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand/IT04.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/my-compile-command-file\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand/IT05.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand/IT02.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/IT-02-1.0-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand/IT02.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand/IT03.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/hotspot_pid11375.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/IT-03-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand/IT03.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/invoker.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand/IT01.java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/IT-01-1.0-SNAPSHOT.jar\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand/IT01.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.css\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/emailable-report.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/navigator-bullet.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/jquery-1.7.1.min.js\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.js\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/failed.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TEST-TestSuite.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/bullet_point.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/passed.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports/TEST-net.nicoulaj.compilecommand.CompileCommandProcessorTest.xml\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/skipped.png\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-results.xml\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/index.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TestSuite.txt\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/reporter-output.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/classes.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/Surefire test.properties\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/testng.xml.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/groups.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/main.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-alphabetical.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/index.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-not-run.html\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/toc.html\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/index.html\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/collapseall.gif\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng.css\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver/pom.properties\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester$Report.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_03_Logging.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/ITAssert.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_04_Options.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/CompileCommandProcessorTest.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases/Test21.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand/Sample_04_Options.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases/Test09.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases/Test24.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases/Test19.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases/Test22.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases/Test10.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases/Test11.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases/Test05.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases/Test12.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases/Test01.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases/Test16.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases/Test20.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases/Test13.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases/Test17.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases/Test14.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases/Test15.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases/Test07.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases/Test08.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases/Test06.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases/Test02.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases/Test04.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases/Test18.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases/Test03.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases/Test23.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/sources\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand/Sample_03_Logging.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF/hotspot_compiler\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$3.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$1.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Log.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/CompileOnly.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Options.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/DontInline.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Break.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Quiet.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Inline.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Option.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Print.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Exclude.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor.class\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$2.class\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net\n[INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[INFO] \n[FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=137, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=49, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=112, DefaultDependencyCollector.collectTime=125, DefaultDependencyCollector.transformTime=4}\n[DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1:\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.22:compile\n[DEBUG]    commons-lang:commons-lang:jar:2.3:compile\n[DEBUG]    org.apache.maven.enforcer:enforcer-api:jar:1.4.1:compile\n[DEBUG]    org.apache.maven.enforcer:enforcer-rules:jar:1.4.1:compile\n[DEBUG]       org.apache.maven.shared:maven-common-artifact-filters:jar:1.4:compile\n[DEBUG]       org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]       org.apache.maven.shared:maven-dependency-tree:jar:2.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.eclipse.aether:aether-util:jar:0.9.0.M2:compile\n[DEBUG]       org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile\n[DEBUG]    org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:2.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-io:jar:2.0.4:compile\n[DEBUG]       junit:junit:jar:4.11:compile\n[DEBUG]          org.hamcrest:hamcrest-core:jar:1.3:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.3\n[DEBUG]   Included: org.apache.maven.enforcer:enforcer-api:jar:1.4.1\n[DEBUG]   Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4.1\n[DEBUG]   Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.4\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.apache.maven.shared:maven-dependency-tree:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.eclipse.aether:aether-util:jar:0.9.0.M2\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6\n[DEBUG]   Included: org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3\n[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.0.4\n[DEBUG]   Included: junit:junit:jar:4.11\n[DEBUG]   Included: org.hamcrest:hamcrest-core:jar:1.3\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce' with basic configurator -->\n[DEBUG]   (s) fail = true\n[DEBUG]   (s) failFast = false\n[DEBUG]   (f) ignoreCache = false\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce {execution: enforce-maven-version}\n[DEBUG]   (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) version = [3.2.1,)\n[DEBUG]   (s) message = Maven v3.2.1+ is required to build this project, please update.\n[DEBUG]   (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6622a690]\n[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (s) skip = false\n[DEBUG] -- end configuration --\n[DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion\n[DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable.\n[DEBUG] Detected Maven Version: 3.3.9\n[DEBUG] Detected Maven Version: 3.3.9 is allowed in the range [3.2.1,).\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=158, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=47, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=108, DefaultDependencyCollector.collectTime=115, DefaultDependencyCollector.transformTime=3}\n[DEBUG] org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:4.8.2:compile\n[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.22:compile\n[DEBUG]    org.apache.maven.shared:file-management:jar:1.2.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-io:jar:1.1:compile\n[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile\n[DEBUG]       org.apache.maven.doxia:doxia-core:jar:1.1.2:compile\n[DEBUG]          xerces:xercesImpl:jar:2.8.1:compile\n[DEBUG]          commons-lang:commons-lang:jar:2.4:compile\n[DEBUG]          commons-httpclient:commons-httpclient:jar:3.1:compile\n[DEBUG]             commons-codec:commons-codec:jar:1.2:compile\n[DEBUG]       org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile\n[DEBUG]          org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile\n[DEBUG]          org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile\n[DEBUG]          org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile\n[DEBUG]          org.apache.velocity:velocity:jar:1.5:compile\n[DEBUG]          commons-collections:commons-collections:jar:3.2:compile\n[DEBUG]       commons-validator:commons-validator:jar:1.2.0:compile\n[DEBUG]          commons-beanutils:commons-beanutils:jar:1.7.0:compile\n[DEBUG]          commons-digester:commons-digester:jar:1.6:compile\n[DEBUG]          commons-logging:commons-logging:jar:1.0.4:compile\n[DEBUG]          oro:oro:jar:2.0.8:compile\n[DEBUG]          xml-apis:xml-apis:jar:1.0.b2:compile\n[DEBUG]    org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile\n[DEBUG]    org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile\n[DEBUG]       org.ow2.asm:asm-debug-all:jar:5.1:compile\n[DEBUG]    org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile\n[DEBUG] Created new class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG] Importing foreign packages into class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606\n[DEBUG]   Included: org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: junit:junit:jar:4.8.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.22\n[DEBUG]   Included: org.apache.maven.shared:file-management:jar:1.2.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-io:jar:1.1\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-core:jar:1.1.2\n[DEBUG]   Included: xerces:xercesImpl:jar:2.8.1\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.4\n[DEBUG]   Included: commons-httpclient:commons-httpclient:jar:3.1\n[DEBUG]   Included: commons-codec:commons-codec:jar:1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7\n[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7\n[DEBUG]   Included: org.apache.velocity:velocity:jar:1.5\n[DEBUG]   Included: commons-collections:commons-collections:jar:3.2\n[DEBUG]   Included: commons-validator:commons-validator:jar:1.2.0\n[DEBUG]   Included: commons-beanutils:commons-beanutils:jar:1.7.0\n[DEBUG]   Included: commons-digester:commons-digester:jar:1.6\n[DEBUG]   Included: commons-logging:commons-logging:jar:1.0.4\n[DEBUG]   Included: oro:oro:jar:2.0.8\n[DEBUG]   Included: xml-apis:xml-apis:jar:1.0.b2\n[DEBUG]   Included: org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606\n[DEBUG]   Included: org.jacoco:org.jacoco.core:jar:0.7.7.201606060606\n[DEBUG]   Included: org.ow2.asm:asm-debug-all:jar:5.1\n[DEBUG]   Included: org.jacoco:org.jacoco.report:jar:0.7.7.201606060606\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent' with basic configurator -->\n[DEBUG]   (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (f) pluginArtifactMap = {org.jacoco:jacoco-maven-plugin=org.jacoco:jacoco-maven-plugin:maven-plugin:0.7.7.201606060606:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.8.2:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1-alpha-2:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.22:compile, org.apache.maven.shared:file-management=org.apache.maven.shared:file-management:jar:1.2.1:compile, org.apache.maven.shared:maven-shared-io=org.apache.maven.shared:maven-shared-io:jar:1.1:compile, org.apache.maven.wagon:wagon-provider-api=org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile, org.apache.maven.doxia:doxia-logging-api=org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile, org.apache.maven.reporting:maven-reporting-impl=org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile, org.apache.maven.doxia:doxia-core=org.apache.maven.doxia:doxia-core:jar:1.1.2:compile, xerces:xercesImpl=xerces:xercesImpl:jar:2.8.1:compile, commons-lang:commons-lang=commons-lang:commons-lang:jar:2.4:compile, commons-httpclient:commons-httpclient=commons-httpclient:commons-httpclient:jar:3.1:compile, commons-codec:commons-codec=commons-codec:commons-codec:jar:1.2:compile, org.apache.maven.doxia:doxia-site-renderer=org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile, org.apache.maven.doxia:doxia-decoration-model=org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-xhtml=org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-fml=org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile, org.codehaus.plexus:plexus-i18n=org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile, org.codehaus.plexus:plexus-velocity=org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity=org.apache.velocity:velocity:jar:1.5:compile, commons-collections:commons-collections=commons-collections:commons-collections:jar:3.2:compile, commons-validator:commons-validator=commons-validator:commons-validator:jar:1.2.0:compile, commons-beanutils:commons-beanutils=commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester=commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.0.4:compile, oro:oro=oro:oro:jar:2.0.8:compile, xml-apis:xml-apis=xml-apis:xml-apis:jar:1.0.b2:compile, org.jacoco:org.jacoco.agent=org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile, org.jacoco:org.jacoco.core=org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile, org.ow2.asm:asm-debug-all=org.ow2.asm:asm-debug-all:jar:5.1:compile, org.jacoco:org.jacoco.report=org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile}\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG] -- end configuration --\n[INFO] argLine set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=69, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=68, DefaultDependencyCollector.collectTime=26, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG]    org.apache.maven.shared:maven-filtering:jar:3.1.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]          commons-io:commons-io:jar:2.4:compile\n[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile\n[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.22:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.1.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.22\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources' with basic configurator -->\n[DEBUG]   (f) addDefaultExcludes = true\n[DEBUG]   (f) buildFilters = []\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) escapeString = \\\n[DEBUG]   (f) escapeWindowsPaths = true\n[DEBUG]   (f) fileNameFiltering = false\n[DEBUG]   (s) includeEmptyDirs = false\n[DEBUG]   (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (s) overwrite = false\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) supportMultiLineFiltering = false\n[DEBUG]   (f) useBuildFilters = true\n[DEBUG]   (s) useDefaultDelimiters = true\n[DEBUG] -- end configuration --\n[DEBUG] properties used {env.DESKTOP_SESSION=cinnamon, env.OLDPWD=/home/nicoulaj/workspace/compile-command-annotations, file.encoding.pkg=sun.io, maven-changelog-plugin.version=2.3, env.LESS_TERMCAP_mr=[NEGATIVE][BOLD], maven-surefire-plugin.version=2.19.1, java.home=/usr/lib/jvm/java-8-jdk/jre, maven-jaxb-schemagen-plugin.version=1.2, jacoco-maven-plugin.version=0.7.7.201606060606, env.LESS_TERMCAP_mh=[BOLD], env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=\u001b(B\u001b[m, env.DISPLAY=:1, env.LESS_TERMCAP_md=[BOLD]\u001b[38;5;12m, github-downloads-maven-plugin.version=0.6, env.LS_COLORS=no=00:fi=00:di=00;38;05;012:ln=target:pi=38;05;142;48;05;235:so=01;38;05;176:do=01;38;05;176:bd=38;05;142;48;05;235;01:cd=38;05;142;48;05;235;01:or=01;06;38;05;254;48;05;124:mi=01;05;38;05;254;48;05;124:su=38;05;255;48;05;124:sg=38;05;237;48;05;221:tw=38;05;16;48;05;41:ow=34;42:st=01;38;05;254;48;05;21:ex=01;38;05;46:*.tar=00;38;05;33:*.tgz=00;38;05;33:*.svgz=00;38;05;33:*.arj=00;38;05;33:*.taz=00;38;05;33:*.lzh=00;38;05;33:*.lzma=00;38;05;33:*.zip=00;38;05;33:*.z=00;38;05;33:*.Z=00;38;05;33:*.dz=00;38;05;33:*.gz=00;38;05;33:*.bz2=00;38;05;33:*.bz=00;38;05;33:*.tbz2=00;38;05;33:*.xz=00;38;05;33:*.tz=00;38;05;33:*.deb=00;38;05;33:*.rpm=00;38;05;33:*.jar=00;38;05;33:*.rar=00;38;05;33:*.ace=00;38;05;33:*.zoo=00;38;05;33:*.cpio=00;38;05;33:*.7z=00;38;05;33:*.rz=00;38;05;33:*.sqfs=00;38;05;33:*.sqfs3=00;38;05;33:*.db=00;38;05;33:*.sqlite=00;38;05;33:*.iso=00;38;05;33:*.pdb=00;38;05;33:*.img=00;38;05;33:*.gho=00;38;05;33:*.yml=00;38;05;33:*.bib=00;38;05;33:*.jpg=00;38;05;170:*.eps=00;38;05;170:*.JPG=00;38;05;170:*.jpeg=00;38;05;170:*.gif=00;38;05;170:*.bmp=00;38;05;170:*.pbm=00;38;05;170:*.pgm=00;38;05;170:*.ppm=00;38;05;170:*.tga=00;38;05;170:*.xbm=00;38;05;170:*.xpm=00;38;05;170:*.tif=00;38;05;170:*.tiff=00;38;05;170:*.png=00;38;05;170:*.svg=00;38;05;170:*.mng=00;38;05;170:*.pcx=00;38;05;170:*.mov=00;38;05;197:*.mpg=00;38;05;197:*.mpeg=00;38;05;197:*.m2v=00;38;05;197:*.mkv=00;38;05;197:*.ogm=00;38;05;197:*.mp4=00;38;05;197:*.m4v=00;38;05;197:*.mp4v=00;38;05;197:*.vob=00;38;05;197:*.qt=00;38;05;197:*.nuv=00;38;05;197:*.wmv=00;38;05;197:*.ogv=00;38;05;197:*.asf=00;38;05;197:*.rm=00;38;05;197:*.rmvb=00;38;05;197:*.flc=00;38;05;197:*.flv=00;38;05;197:*.avi=00;38;05;197:*.AVI=00;38;05;197:*.3gp=00;38;05;197:*.fli=00;38;05;197:*.gl=00;38;05;197:*.dl=00;38;05;197:*.xcf=00;38;05;197:*.xwd=00;38;05;197:*.yuv=00;38;05;197:*.pdf=00;38;05;231:*.ps=00;38;05;123:*.patch=00;38;05;123:*.diff=00;38;05;123:*.log=00;38;05;123:*.doc=00;38;05;231:*.chm=00;38;05;123:*.css=00;38;05;123:*.dsl=00;38;05;123:*.ebuild=00;38;05;123:*.htm=00;38;05;231:*.html=00;38;05;231:*.odb=00;38;05;123:*.odf=00;38;05;231:*.odg=00;38;05;123:*.odp=00;38;05;123:*.ods=00;38;05;123:*.odt=00;38;05;123:*.rnc=00;38;05;123:*.rng=00;38;05;123:*.sgml=00;38;05;123:*.xml=00;38;05;123:*.xsl=00;38;05;123:*.rst=01;38;05;147:*.lyx=01;38;05;147:*.mkd=01;38;05;147:*.mdown=01;38;05;147:*.markdown=01;38;05;147:*.md=01;38;05;147:*.lyx=01;38;05;147:*.tex=01;38;05;147:*.txt=01;38;05;123:*INSTALL=01;38;05;123:*FAQ=01;38;05;123:*TODO=01;38;05;123:*README=01;38;05;123:*README.txt=01;38;05;123:*README.md=01;38;05;123:*README.markdown=01;38;05;123:*readme.txt=01;38;05;123:*COPYING=01;38;05;123:*LICENSE=01;38;05;123:*.aac=01;38;05;132:*.au=01;38;05;132:*.flac=01;38;05;132:*.gsf=01;38;05;132:*.h2song=01;38;05;132:*.mid=01;38;05;132:*.midi=01;38;05;132:*.mka=01;38;05;132:*.mp3=01;38;05;132:*.mpc=01;38;05;132:*.ogg=01;38;05;132:*.ra=01;38;05;132:*.rg=01;38;05;132:*.tta=01;38;05;132:*.wav=01;38;05;132:*.wma=01;38;05;132:*.cfg=00;38;05;227:*.conf=00;38;05;227:*rc=00;38;05;227:*.ini=00;38;05;227:*.reg=00;38;05;227:*.F=00;38;05;172:*.c=00;38;05;172:*.cc=00;38;05;172:*.cpp=00;38;05;172:*.cpp=00;38;05;172:*.cxx=00;38;05;172:*.f=00;38;05;172:*.f90=00;38;05;172:*.h=00;38;05;172:*.hs=00;38;05;172:*.lua=00;38;05;172:*.mp=00;38;05;172:*.pl=00;38;05;172:*.po=00;38;05;172:*.py=00;38;05;172:*.sh=00;38;05;172:*.bash=00;38;05;172:*.zsh=00;38;05;172:*.gmo=00;38;05;172:*.ko=00;38;05;172:*.mo=00;38;05;172:*.o=00;38;05;172:*.rb=00;38;05;172:*Makefile=00;38;05;172:*CMakeLists.txt=00;38;05;172:*.cmake=00;38;05;172:*.java=00;38;05;172:*.as=00;38;05;172:*.mxml=00;38;05;172:*.groovy=00;38;05;172:*.gtmpl=00;38;05;172:*pom.xml=00;38;05;172:*build.xml=00;38;05;172:*.flex=00;38;05;172:*.cup=00;38;05;172:*.btm=00;38;05;172:*.gitignore=00;38;05;245:*.gitattributes=00;38;05;245:*.gitmodules=00;38;05;245:*.svnignore=00;38;05;245:*.hgignore=00;38;05;245:*.hgtags=00;38;05;245:*.settings=00;38;05;245:*.project=00;38;05;245:*.classpath=00;38;05;245:*.iml=00;38;05;245:*.iws=00;38;05;245:*.ipr=00;38;05;245:*~=00;38;05;008:*.exe=00;38;05;26:, debug=false, env.XDG_VTNR=2, env.LESS_TERMCAP_mb=[BOLD]\u001b[38;5;12m, classworlds.conf=/opt/maven/bin/m2.conf, wagon-gitsite.version=0.3.5, templating-maven-plugin.version=1.0.0, java.endorsed.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/endorsed, env.LOGNAME=nicoulaj, env.USERNAME=nicoulaj, env.XDG_SEAT=seat0, maven-plugin-tools-javadoc.version=3.5, assertj-core.version=3.6.2, env.SESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369, sun.os.patch.level=unknown, java.vendor.url=http://java.oracle.com/, env.PROJECT_HOME=/home/nicoulaj/workspace, java.version=1.8.0_121, env.ANDROID_HOME=/opt/android-sdk, env.LESSHISTFILE=/home/nicoulaj/.lesshst, maven-jaxb2-plugin.version=0.13.1, exec-maven-plugin.version=1.5.0, env.VISUAL=geany, env.MAVEN_OPTS= -Xmx512m, jmh.version=1.2.1, env.HG=/usr/bin/hg, maven-javadoc-plugin.version=2.10.4, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, skipTests=false, license.header=/home/nicoulaj/workspace/compile-command-annotations/etc/license/header.txt, maven-failsafe-plugin.version=2.19.1, user.name=nicoulaj, env.LANG=C, java.level=1.6, encoding=UTF-8, sun.io.unicode.encoding=UnicodeLittle, maven-fluido-skin.version=1.6, sun.jnu.encoding=ANSI_X3.4-1968, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, java.runtime.name=Java(TM) SE Runtime Environment, env.BROWSER=google-chrome, env.DEBEMAIL=julien.nicoulaud@gmail.com, java.specification.name=Java Platform API Specification, user.timezone=Europe/Paris, env.CINNAMON_VERSION=3.2.8, env.LESSOPEN=| src-hilite-lesspipe.sh %s, env.GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop, versions-maven-plugin.version=2.3, checksum-maven-plugin.version=1.5, path.separator=:, env.MAVEN_CMD_LINE_ARGS= --debug clean install, file.encoding=ANSI_X3.4-1968, env.HOME=/home/nicoulaj, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher --debug clean install, maven-android-plugin.version=2.8.4, maven-release-plugin.version=2.5.3, maven-pmd-plugin.version=3.7, maven-enforcer-plugin.version=1.4.1, maven-dependency-plugin.version=2.10, maven-gpg-plugin.version=1.6, java.io.tmpdir=/tmp, user.language=en, line.separator=\n, project.baseUri=file:/home/nicoulaj/workspace/compile-command-annotations/, additionalparam=-Xdoclint:none, env.JOURNAL_STREAM=8:248308, env.ANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger, maven-checkstyle-plugin.version=2.17, env.HISTSIZE=4096, m2e-lifecycle-mapping.version=1.0.0, env.LESS_TERMCAP_us=[UNDERLINE], java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=[RESET_UNDERLINE]\u001b(B\u001b[m, env.MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins, commons-io.version=2.5, maven-resources-plugin.version=3.0.1, env.EDITOR=vim, maven-jxr-plugin.version=2.5, env.GDMSESSION=cinnamon, env.XDG_SESSION_DESKTOP=cinnamon, java.awt.printerjob=sun.print.PSPrinterJob, env.VTE_VERSION=4601, maven-jar-plugin.version=3.0.2, sonar-maven-plugin.version=3.2, env.XDG_SESSION_TYPE=x11, taglist-maven-plugin.version=2.4, env.GPGKEY=A20BF77D, maven.build.timestamp=2017-03-19T15:29:20Z, os.name=Linux, java.specification.vendor=Oracle Corporation, sql-maven-plugin.version=1.5, env.TERM=xterm-256color, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.LESS_TERMCAP_so=\u001b[48;5;8m\u001b[38;5;15m, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/home/nicoulaj/bin/systemd:/home/nicoulaj/bin/arch:/usr/lib/colorgcc/bin:/home/nicoulaj/.gem/ruby/2.4.0/bin:/home/nicoulaj/bin:/opt/jython/bin/:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl, env.LESS_TERMCAP_se=\u001b(B\u001b[m, java.class.version=52.0, env.SHLVL=1, maven.multiModuleProjectDirectory=/home/nicoulaj/workspace/compile-command-annotations, env.GJS_DEBUG_OUTPUT=stderr, env.TERMINATOR_UUID=urn:uuid:97c9379c-b0b6-4044-975f-2a40a7cf6038, sun.boot.library.path=/usr/lib/jvm/java-8-jdk/jre/lib/amd64, project.build.sourceEncoding=UTF-8, maven-jarsigner-plugin.version=1.4, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, year=2016, maven-shade-plugin.version=2.4.3, env.MAIN_USER_HOME=/home/nicoulaj, env.LESSCHARSET=utf-8, license.name=The Apache License, Version 2.0, env.USER=nicoulaj, env.GTK_MODULES=canberra-gtk-module, env.HISTFILESIZE=65536, env.HISTFILE=/home/nicoulaj/.zshhistory, junit.version=4.12, izpack-maven-plugin.version=5.0.10, env.NAME=Julien Nicoulaud, jaxb2-maven-plugin.version=2.3, env.LESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS, java.vm.specification.version=1.8, env.TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2, build-helper-maven-plugin.version=1.12, doxia-module-markdown.version=1.7, animal-sniffer-maven-plugin.version=1.15, env.MAIN_USER=nicoulaj, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, slf4j.version=1.7.24, env.MANPAGER=less, awt.toolkit=sun.awt.X11.XToolkit, sun.cpu.isalist=, env.MAVEN_PROJECTBASEDIR=/home/nicoulaj/workspace/compile-command-annotations, maven-compiler-plugin.version=3.6.0, java.ext.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=4.10.2-1-ARCH, env.FREETYPE_PROPERTIES=truetype:interpreter-version=38, env.QT_QPA_PLATFORMTHEME=qt5ct, user.home=/home/nicoulaj, env.XDG_CURRENT_DESKTOP=X-Cinnamon, java.vm.vendor=Oracle Corporation, maven-jaxb22-plugin.version=0.13.1, logback.version=1.2.1, maven-clean-plugin.version=3.0.0, env.GTK_OVERLAY_SCROLLING=1, env.JAVA_HOME=/usr/lib/jvm/java-8-jdk, maven-plugin-plugin.version=3.5, maven-replacer-plugin.version=1.4.1, env.XDG_SESSION_ID=c4, env.XAUTHORITY=/run/user/1000/gdm/Xauthority, user.dir=/home/nicoulaj/workspace/compile-command-annotations, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=2, env.WORKON_HOME=/home/nicoulaj/.virtualenvs, env.MAIL=julien.nicoulaud@gmail.com, maven-surefire-report-plugin.version=2.19.1, env.PWD=/home/nicoulaj/workspace/compile-command-annotations, env.DEBFULLNAME=Julien Nicoulaud, log4j.version=2.8, sun.cpu.endian=little, env.PAGER=less, env.LESSHISTSIZE=2000, buildnumber-maven-plugin.version=1.4, gpg.passphrase=, java.vm.version=25.121-b13, java.class.path=/opt/maven/boot/plexus-classworlds-2.5.2.jar, org.slf4j.simpleLogger.defaultLogLevel=debug, env.TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d, os.arch=amd64, maven.build.version=Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00), guava.version=21.0, env.GIO_LAUNCHED_DESKTOP_FILE_PID=17585, sun.java.launcher=SUN_STANDARD, flexmojos-maven-plugin.version=3.8, java.vm.specification.vendor=Oracle Corporation, maven-war-plugin.version=3.0.0, file.separator=/, license-maven-plugin.version=3.0, java.runtime.version=1.8.0_121-b13, env.SSH_AUTH_SOCK=/run/user/1000/keyring/ssh, sun.boot.class.path=/usr/lib/jvm/java-8-jdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-jdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-jdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-jdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-jdk/jre/classes, maven-assembly-plugin.version=3.0.0, env.XDG_RUNTIME_DIR=/run/user/1000, maven.version=3.3.9, maven-source-plugin.version=3.0.1, maven-ear-plugin.version=2.10.1, env.ANT_HOME=/usr/share/apache-ant, user.country=US, maven.home=/opt/maven, env.SHELL=/bin/zsh, rpm-maven-plugin.version=2.1.5, maven-deploy-plugin.version=2.8.2, proguard-maven-plugin.version=2.0.13, maven-project-info-reports-plugin.version=2.9, maven-site-plugin.version=3.6, cobertura-maven-plugin.version=2.7, maven-invoker-plugin.version=2.0.0, testng.version=6.10, github-site-maven-plugin.version=0.12, java.vendor=Oracle Corporation, license=apache_v2, env.GRADLE_HOME=/usr/share/java/gradle, license.url=https://www.apache.org/licenses/LICENSE-2.0, java.specification.version=1.8, argLine=-javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[DEBUG] resource with targetPath null\ndirectory /home/nicoulaj/workspace/compile-command-annotations/src/main/resources\nexcludes []\nincludes []\n[DEBUG] ignoreDelta true\n[INFO] Copying 1 resource\n[DEBUG] Copying file META-INF/services/javax.annotation.processing.Processor\n[DEBUG] file javax.annotation.processing.Processor has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/main/resources/META-INF/services/javax.annotation.processing.Processor to /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor\n[DEBUG] no use filter components\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=116, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=43, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=70, DefaultDependencyCollector.collectTime=21, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]       org.codehaus.plexus:plexus-utils:jar:2.0.4:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile\n[DEBUG]       commons-io:commons-io:jar:2.5:compile\n[DEBUG]    org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile\n[DEBUG]    org.ow2.asm:asm:jar:6.0_ALPHA:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1:runtime\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.4\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.5\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1\n[DEBUG]   Included: org.ow2.asm:asm:jar:6.0_ALPHA\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile' with basic configurator -->\n[DEBUG]   (f) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG]   (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/main/java]\n[DEBUG]   (f) compilerArgument = -proc:none\n[DEBUG]   (f) compilerId = javac\n[DEBUG]   (f) debug = true\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) failOnWarning = false\n[DEBUG]   (f) forceJavacCompilerUse = false\n[DEBUG]   (f) fork = false\n[DEBUG]   (f) generatedSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile {execution: default-compile}\n[DEBUG]   (f) optimize = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) projectArtifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) showDeprecation = false\n[DEBUG]   (f) showWarnings = false\n[DEBUG]   (f) skipMultiThreadWarning = false\n[DEBUG]   (f) source = 1.6\n[DEBUG]   (f) staleMillis = 0\n[DEBUG]   (f) target = 1.6\n[DEBUG]   (f) useIncrementalCompilation = true\n[DEBUG]   (f) verbose = false\n[DEBUG] -- end configuration --\n[DEBUG] Using compiler 'javac'.\n[DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations to compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n[DEBUG] New compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n  /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG] CompilerReuseStrategy: reuseCreated\n[DEBUG] useIncrementalCompilation enabled\n[DEBUG] classpathElements: [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Exclude.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Log.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Option.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/CompileOnly.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/CompileCommandProcessor.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/package-info.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/DontInline.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Inline.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Options.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Print.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Quiet.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Break.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/package-info.java\n[INFO] Changes detected - recompiling the module!\n[DEBUG] Classpath:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] Source roots:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/main/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations\n[DEBUG] Command line options:\n[DEBUG] -d /home/nicoulaj/workspace/compile-command-annotations/target/classes -classpath /home/nicoulaj/workspace/compile-command-annotations/target/classes: -sourcepath /home/nicoulaj/workspace/compile-command-annotations/src/main/java:/home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations: -s /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations -g -nowarn -target 1.6 -source 1.6 -encoding UTF-8 -proc:none\n[DEBUG] incrementalBuildHelper#beforeRebuildExecution\n[INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG] incrementalBuildHelper#afterRebuildExecution\n[INFO] \n[FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=166, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=52, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=107, DefaultDependencyCollector.collectTime=24, DefaultDependencyCollector.transformTime=2}\n[DEBUG] org.codehaus.mojo:build-helper-maven-plugin:jar:1.12:\n[DEBUG]    org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:4.12:test\n[DEBUG]             org.hamcrest:hamcrest-core:jar:1.3:test\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile\n[DEBUG]          org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG]    org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]    org.apache.maven.shared:file-management:jar:3.0.0:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-io:jar:3.0.0:compile\n[DEBUG]          org.apache.maven:maven-compat:jar:3.0:compile\n[DEBUG]             org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]             org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]                org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]                org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]                   org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]             org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile\n[DEBUG]          commons-io:commons-io:jar:2.4:compile\n[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile\n[DEBUG] Created new class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG] Importing foreign packages into class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12\n[DEBUG]   Included: org.codehaus.mojo:build-helper-maven-plugin:jar:1.12\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.apache.maven.shared:file-management:jar:3.0.0\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-io:jar:3.0.0\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0\n[DEBUG]   Included: commons-io:commons-io:jar:2.4\n[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1\n[DEBUG] Configuring mojo org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source from plugin realm ClassRealm[plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source' with basic configurator -->\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) sources = [/home/nicoulaj/workspace/compile-command-annotations/src/samples/java]\n[DEBUG] -- end configuration --\n[INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added.\n[INFO] \n[FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources' with basic configurator -->\n[DEBUG]   (f) addDefaultExcludes = true\n[DEBUG]   (f) buildFilters = []\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) escapeString = \\\n[DEBUG]   (f) escapeWindowsPaths = true\n[DEBUG]   (f) fileNameFiltering = false\n[DEBUG]   (s) includeEmptyDirs = false\n[DEBUG]   (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (s) overwrite = false\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/test/resources, PatternSet [includes: {}, excludes: {}]}}]\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) supportMultiLineFiltering = false\n[DEBUG]   (f) useBuildFilters = true\n[DEBUG]   (s) useDefaultDelimiters = true\n[DEBUG] -- end configuration --\n[DEBUG] properties used {env.DESKTOP_SESSION=cinnamon, env.OLDPWD=/home/nicoulaj/workspace/compile-command-annotations, file.encoding.pkg=sun.io, maven-changelog-plugin.version=2.3, env.LESS_TERMCAP_mr=[NEGATIVE][BOLD], maven-surefire-plugin.version=2.19.1, java.home=/usr/lib/jvm/java-8-jdk/jre, maven-jaxb-schemagen-plugin.version=1.2, jacoco-maven-plugin.version=0.7.7.201606060606, env.LESS_TERMCAP_mh=[BOLD], env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=\u001b(B\u001b[m, env.DISPLAY=:1, env.LESS_TERMCAP_md=[BOLD]\u001b[38;5;12m, github-downloads-maven-plugin.version=0.6, env.LS_COLORS=no=00:fi=00:di=00;38;05;012:ln=target:pi=38;05;142;48;05;235:so=01;38;05;176:do=01;38;05;176:bd=38;05;142;48;05;235;01:cd=38;05;142;48;05;235;01:or=01;06;38;05;254;48;05;124:mi=01;05;38;05;254;48;05;124:su=38;05;255;48;05;124:sg=38;05;237;48;05;221:tw=38;05;16;48;05;41:ow=34;42:st=01;38;05;254;48;05;21:ex=01;38;05;46:*.tar=00;38;05;33:*.tgz=00;38;05;33:*.svgz=00;38;05;33:*.arj=00;38;05;33:*.taz=00;38;05;33:*.lzh=00;38;05;33:*.lzma=00;38;05;33:*.zip=00;38;05;33:*.z=00;38;05;33:*.Z=00;38;05;33:*.dz=00;38;05;33:*.gz=00;38;05;33:*.bz2=00;38;05;33:*.bz=00;38;05;33:*.tbz2=00;38;05;33:*.xz=00;38;05;33:*.tz=00;38;05;33:*.deb=00;38;05;33:*.rpm=00;38;05;33:*.jar=00;38;05;33:*.rar=00;38;05;33:*.ace=00;38;05;33:*.zoo=00;38;05;33:*.cpio=00;38;05;33:*.7z=00;38;05;33:*.rz=00;38;05;33:*.sqfs=00;38;05;33:*.sqfs3=00;38;05;33:*.db=00;38;05;33:*.sqlite=00;38;05;33:*.iso=00;38;05;33:*.pdb=00;38;05;33:*.img=00;38;05;33:*.gho=00;38;05;33:*.yml=00;38;05;33:*.bib=00;38;05;33:*.jpg=00;38;05;170:*.eps=00;38;05;170:*.JPG=00;38;05;170:*.jpeg=00;38;05;170:*.gif=00;38;05;170:*.bmp=00;38;05;170:*.pbm=00;38;05;170:*.pgm=00;38;05;170:*.ppm=00;38;05;170:*.tga=00;38;05;170:*.xbm=00;38;05;170:*.xpm=00;38;05;170:*.tif=00;38;05;170:*.tiff=00;38;05;170:*.png=00;38;05;170:*.svg=00;38;05;170:*.mng=00;38;05;170:*.pcx=00;38;05;170:*.mov=00;38;05;197:*.mpg=00;38;05;197:*.mpeg=00;38;05;197:*.m2v=00;38;05;197:*.mkv=00;38;05;197:*.ogm=00;38;05;197:*.mp4=00;38;05;197:*.m4v=00;38;05;197:*.mp4v=00;38;05;197:*.vob=00;38;05;197:*.qt=00;38;05;197:*.nuv=00;38;05;197:*.wmv=00;38;05;197:*.ogv=00;38;05;197:*.asf=00;38;05;197:*.rm=00;38;05;197:*.rmvb=00;38;05;197:*.flc=00;38;05;197:*.flv=00;38;05;197:*.avi=00;38;05;197:*.AVI=00;38;05;197:*.3gp=00;38;05;197:*.fli=00;38;05;197:*.gl=00;38;05;197:*.dl=00;38;05;197:*.xcf=00;38;05;197:*.xwd=00;38;05;197:*.yuv=00;38;05;197:*.pdf=00;38;05;231:*.ps=00;38;05;123:*.patch=00;38;05;123:*.diff=00;38;05;123:*.log=00;38;05;123:*.doc=00;38;05;231:*.chm=00;38;05;123:*.css=00;38;05;123:*.dsl=00;38;05;123:*.ebuild=00;38;05;123:*.htm=00;38;05;231:*.html=00;38;05;231:*.odb=00;38;05;123:*.odf=00;38;05;231:*.odg=00;38;05;123:*.odp=00;38;05;123:*.ods=00;38;05;123:*.odt=00;38;05;123:*.rnc=00;38;05;123:*.rng=00;38;05;123:*.sgml=00;38;05;123:*.xml=00;38;05;123:*.xsl=00;38;05;123:*.rst=01;38;05;147:*.lyx=01;38;05;147:*.mkd=01;38;05;147:*.mdown=01;38;05;147:*.markdown=01;38;05;147:*.md=01;38;05;147:*.lyx=01;38;05;147:*.tex=01;38;05;147:*.txt=01;38;05;123:*INSTALL=01;38;05;123:*FAQ=01;38;05;123:*TODO=01;38;05;123:*README=01;38;05;123:*README.txt=01;38;05;123:*README.md=01;38;05;123:*README.markdown=01;38;05;123:*readme.txt=01;38;05;123:*COPYING=01;38;05;123:*LICENSE=01;38;05;123:*.aac=01;38;05;132:*.au=01;38;05;132:*.flac=01;38;05;132:*.gsf=01;38;05;132:*.h2song=01;38;05;132:*.mid=01;38;05;132:*.midi=01;38;05;132:*.mka=01;38;05;132:*.mp3=01;38;05;132:*.mpc=01;38;05;132:*.ogg=01;38;05;132:*.ra=01;38;05;132:*.rg=01;38;05;132:*.tta=01;38;05;132:*.wav=01;38;05;132:*.wma=01;38;05;132:*.cfg=00;38;05;227:*.conf=00;38;05;227:*rc=00;38;05;227:*.ini=00;38;05;227:*.reg=00;38;05;227:*.F=00;38;05;172:*.c=00;38;05;172:*.cc=00;38;05;172:*.cpp=00;38;05;172:*.cpp=00;38;05;172:*.cxx=00;38;05;172:*.f=00;38;05;172:*.f90=00;38;05;172:*.h=00;38;05;172:*.hs=00;38;05;172:*.lua=00;38;05;172:*.mp=00;38;05;172:*.pl=00;38;05;172:*.po=00;38;05;172:*.py=00;38;05;172:*.sh=00;38;05;172:*.bash=00;38;05;172:*.zsh=00;38;05;172:*.gmo=00;38;05;172:*.ko=00;38;05;172:*.mo=00;38;05;172:*.o=00;38;05;172:*.rb=00;38;05;172:*Makefile=00;38;05;172:*CMakeLists.txt=00;38;05;172:*.cmake=00;38;05;172:*.java=00;38;05;172:*.as=00;38;05;172:*.mxml=00;38;05;172:*.groovy=00;38;05;172:*.gtmpl=00;38;05;172:*pom.xml=00;38;05;172:*build.xml=00;38;05;172:*.flex=00;38;05;172:*.cup=00;38;05;172:*.btm=00;38;05;172:*.gitignore=00;38;05;245:*.gitattributes=00;38;05;245:*.gitmodules=00;38;05;245:*.svnignore=00;38;05;245:*.hgignore=00;38;05;245:*.hgtags=00;38;05;245:*.settings=00;38;05;245:*.project=00;38;05;245:*.classpath=00;38;05;245:*.iml=00;38;05;245:*.iws=00;38;05;245:*.ipr=00;38;05;245:*~=00;38;05;008:*.exe=00;38;05;26:, debug=false, env.XDG_VTNR=2, env.LESS_TERMCAP_mb=[BOLD]\u001b[38;5;12m, classworlds.conf=/opt/maven/bin/m2.conf, wagon-gitsite.version=0.3.5, templating-maven-plugin.version=1.0.0, java.endorsed.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/endorsed, env.LOGNAME=nicoulaj, env.USERNAME=nicoulaj, env.XDG_SEAT=seat0, maven-plugin-tools-javadoc.version=3.5, assertj-core.version=3.6.2, env.SESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369, sun.os.patch.level=unknown, java.vendor.url=http://java.oracle.com/, env.PROJECT_HOME=/home/nicoulaj/workspace, java.version=1.8.0_121, env.ANDROID_HOME=/opt/android-sdk, env.LESSHISTFILE=/home/nicoulaj/.lesshst, maven-jaxb2-plugin.version=0.13.1, exec-maven-plugin.version=1.5.0, env.VISUAL=geany, env.MAVEN_OPTS= -Xmx512m, jmh.version=1.2.1, env.HG=/usr/bin/hg, maven-javadoc-plugin.version=2.10.4, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, skipTests=false, license.header=/home/nicoulaj/workspace/compile-command-annotations/etc/license/header.txt, maven-failsafe-plugin.version=2.19.1, user.name=nicoulaj, env.LANG=C, java.level=1.6, encoding=UTF-8, sun.io.unicode.encoding=UnicodeLittle, maven-fluido-skin.version=1.6, sun.jnu.encoding=ANSI_X3.4-1968, env.DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus, java.runtime.name=Java(TM) SE Runtime Environment, env.BROWSER=google-chrome, env.DEBEMAIL=julien.nicoulaud@gmail.com, java.specification.name=Java Platform API Specification, user.timezone=Europe/Paris, env.CINNAMON_VERSION=3.2.8, env.LESSOPEN=| src-hilite-lesspipe.sh %s, env.GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop, versions-maven-plugin.version=2.3, checksum-maven-plugin.version=1.5, path.separator=:, env.MAVEN_CMD_LINE_ARGS= --debug clean install, file.encoding=ANSI_X3.4-1968, env.HOME=/home/nicoulaj, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher --debug clean install, maven-android-plugin.version=2.8.4, maven-release-plugin.version=2.5.3, maven-pmd-plugin.version=3.7, maven-enforcer-plugin.version=1.4.1, maven-dependency-plugin.version=2.10, maven-gpg-plugin.version=1.6, java.io.tmpdir=/tmp, user.language=en, line.separator=\n, project.baseUri=file:/home/nicoulaj/workspace/compile-command-annotations/, additionalparam=-Xdoclint:none, env.JOURNAL_STREAM=8:248308, env.ANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger, maven-checkstyle-plugin.version=2.17, env.HISTSIZE=4096, m2e-lifecycle-mapping.version=1.0.0, env.LESS_TERMCAP_us=[UNDERLINE], java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=[RESET_UNDERLINE]\u001b(B\u001b[m, env.MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins, commons-io.version=2.5, maven-resources-plugin.version=3.0.1, env.EDITOR=vim, maven-jxr-plugin.version=2.5, env.GDMSESSION=cinnamon, env.XDG_SESSION_DESKTOP=cinnamon, java.awt.printerjob=sun.print.PSPrinterJob, env.VTE_VERSION=4601, maven-jar-plugin.version=3.0.2, sonar-maven-plugin.version=3.2, env.XDG_SESSION_TYPE=x11, taglist-maven-plugin.version=2.4, env.GPGKEY=A20BF77D, maven.build.timestamp=2017-03-19T15:29:21Z, os.name=Linux, java.specification.vendor=Oracle Corporation, sql-maven-plugin.version=1.5, env.TERM=xterm-256color, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.LESS_TERMCAP_so=\u001b[48;5;8m\u001b[38;5;15m, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, env.PATH=/home/nicoulaj/bin/systemd:/home/nicoulaj/bin/arch:/usr/lib/colorgcc/bin:/home/nicoulaj/.gem/ruby/2.4.0/bin:/home/nicoulaj/bin:/opt/jython/bin/:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/opt/android-sdk/tools:/opt/android-sdk/tools/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl, env.LESS_TERMCAP_se=\u001b(B\u001b[m, java.class.version=52.0, env.SHLVL=1, maven.multiModuleProjectDirectory=/home/nicoulaj/workspace/compile-command-annotations, env.GJS_DEBUG_OUTPUT=stderr, env.TERMINATOR_UUID=urn:uuid:97c9379c-b0b6-4044-975f-2a40a7cf6038, sun.boot.library.path=/usr/lib/jvm/java-8-jdk/jre/lib/amd64, project.build.sourceEncoding=UTF-8, maven-jarsigner-plugin.version=1.4, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, year=2016, maven-shade-plugin.version=2.4.3, env.MAIN_USER_HOME=/home/nicoulaj, env.LESSCHARSET=utf-8, license.name=The Apache License, Version 2.0, env.USER=nicoulaj, env.GTK_MODULES=canberra-gtk-module, env.HISTFILESIZE=65536, env.HISTFILE=/home/nicoulaj/.zshhistory, junit.version=4.12, izpack-maven-plugin.version=5.0.10, env.NAME=Julien Nicoulaud, jaxb2-maven-plugin.version=2.3, env.LESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS, java.vm.specification.version=1.8, env.TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2, build-helper-maven-plugin.version=1.12, doxia-module-markdown.version=1.7, animal-sniffer-maven-plugin.version=1.15, env.MAIN_USER=nicoulaj, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, slf4j.version=1.7.24, env.MANPAGER=less, awt.toolkit=sun.awt.X11.XToolkit, sun.cpu.isalist=, env.MAVEN_PROJECTBASEDIR=/home/nicoulaj/workspace/compile-command-annotations, maven-compiler-plugin.version=3.6.0, java.ext.dirs=/usr/lib/jvm/java-8-jdk/jre/lib/ext:/usr/java/packages/lib/ext, env.GJS_DEBUG_TOPICS=JS ERROR;JS LOG, os.version=4.10.2-1-ARCH, env.FREETYPE_PROPERTIES=truetype:interpreter-version=38, env.QT_QPA_PLATFORMTHEME=qt5ct, user.home=/home/nicoulaj, env.XDG_CURRENT_DESKTOP=X-Cinnamon, java.vm.vendor=Oracle Corporation, maven-jaxb22-plugin.version=0.13.1, logback.version=1.2.1, maven-clean-plugin.version=3.0.0, env.GTK_OVERLAY_SCROLLING=1, env.JAVA_HOME=/usr/lib/jvm/java-8-jdk, maven-plugin-plugin.version=3.5, maven-replacer-plugin.version=1.4.1, env.XDG_SESSION_ID=c4, env.XAUTHORITY=/run/user/1000/gdm/Xauthority, user.dir=/home/nicoulaj/workspace/compile-command-annotations, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, env.WINDOWPATH=2, env.WORKON_HOME=/home/nicoulaj/.virtualenvs, env.MAIL=julien.nicoulaud@gmail.com, maven-surefire-report-plugin.version=2.19.1, env.PWD=/home/nicoulaj/workspace/compile-command-annotations, env.DEBFULLNAME=Julien Nicoulaud, log4j.version=2.8, sun.cpu.endian=little, env.PAGER=less, env.LESSHISTSIZE=2000, buildnumber-maven-plugin.version=1.4, gpg.passphrase=, java.vm.version=25.121-b13, java.class.path=/opt/maven/boot/plexus-classworlds-2.5.2.jar, org.slf4j.simpleLogger.defaultLogLevel=debug, env.TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d, os.arch=amd64, maven.build.version=Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00), guava.version=21.0, env.GIO_LAUNCHED_DESKTOP_FILE_PID=17585, sun.java.launcher=SUN_STANDARD, flexmojos-maven-plugin.version=3.8, java.vm.specification.vendor=Oracle Corporation, maven-war-plugin.version=3.0.0, file.separator=/, license-maven-plugin.version=3.0, java.runtime.version=1.8.0_121-b13, env.SSH_AUTH_SOCK=/run/user/1000/keyring/ssh, sun.boot.class.path=/usr/lib/jvm/java-8-jdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-jdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-jdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-jdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-jdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-jdk/jre/classes, maven-assembly-plugin.version=3.0.0, env.XDG_RUNTIME_DIR=/run/user/1000, maven.version=3.3.9, maven-source-plugin.version=3.0.1, maven-ear-plugin.version=2.10.1, env.ANT_HOME=/usr/share/apache-ant, user.country=US, maven.home=/opt/maven, env.SHELL=/bin/zsh, rpm-maven-plugin.version=2.1.5, maven-deploy-plugin.version=2.8.2, proguard-maven-plugin.version=2.0.13, maven-project-info-reports-plugin.version=2.9, maven-site-plugin.version=3.6, cobertura-maven-plugin.version=2.7, maven-invoker-plugin.version=2.0.0, testng.version=6.10, github-site-maven-plugin.version=0.12, java.vendor=Oracle Corporation, license=apache_v2, env.GRADLE_HOME=/usr/share/java/gradle, license.url=https://www.apache.org/licenses/LICENSE-2.0, java.specification.version=1.8, argLine=-javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec, sun.arch.data.model=64, env.GNOME_DESKTOP_SESSION_ID=this-is-deprecated}\n[INFO] Using 'UTF-8' encoding to copy filtered resources.\n[DEBUG] resource with targetPath null\ndirectory /home/nicoulaj/workspace/compile-command-annotations/src/test/resources\nexcludes []\nincludes []\n[DEBUG] ignoreDelta true\n[INFO] Copying 24 resources\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test05\n[DEBUG] file Test05 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test05 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test17\n[DEBUG] file Test17 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test17 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test01\n[DEBUG] file Test01 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test01 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test04\n[DEBUG] file Test04 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test04 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test19\n[DEBUG] file Test19 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test19 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test15\n[DEBUG] file Test15 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test15 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test23\n[DEBUG] file Test23 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test23 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test12\n[DEBUG] file Test12 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test12 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test10\n[DEBUG] file Test10 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test10 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test08\n[DEBUG] file Test08 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test08 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test03\n[DEBUG] file Test03 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test03 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test13\n[DEBUG] file Test13 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test13 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test02\n[DEBUG] file Test02 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test02 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test21\n[DEBUG] file Test21 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test21 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test11\n[DEBUG] file Test11 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test11 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test14\n[DEBUG] file Test14 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test14 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test22\n[DEBUG] file Test22 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test22 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test18\n[DEBUG] file Test18 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test18 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test07\n[DEBUG] file Test07 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test07 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test06\n[DEBUG] file Test06 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test06 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test24\n[DEBUG] file Test24 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test24 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test09\n[DEBUG] file Test09 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test09 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test16\n[DEBUG] file Test16 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test16 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16\n[DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test20\n[DEBUG] file Test20 has a filtered file extension\n[DEBUG] copy /home/nicoulaj/workspace/compile-command-annotations/src/test/resources/net/nicoulaj/compilecommand/testcases/Test20 to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20\n[DEBUG] no use filter components\n[INFO] \n[FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile' with basic configurator -->\n[DEBUG]   (f) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes]\n[DEBUG]   (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/test/java, /home/nicoulaj/workspace/compile-command-annotations/src/samples/java]\n[DEBUG]   (f) compilerArgument = -proc:none\n[DEBUG]   (f) compilerId = javac\n[DEBUG]   (f) debug = true\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) failOnError = true\n[DEBUG]   (f) failOnWarning = false\n[DEBUG]   (f) forceJavacCompilerUse = false\n[DEBUG]   (f) fork = false\n[DEBUG]   (f) generatedTestSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile {execution: default-testCompile}\n[DEBUG]   (f) optimize = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) showDeprecation = false\n[DEBUG]   (f) showWarnings = false\n[DEBUG]   (f) skipMultiThreadWarning = false\n[DEBUG]   (f) source = 1.6\n[DEBUG]   (f) staleMillis = 0\n[DEBUG]   (f) target = 1.6\n[DEBUG]   (f) testPath = [/home/nicoulaj/workspace/compile-command-annotations/target/test-classes, /home/nicoulaj/workspace/compile-command-annotations/target/classes, /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar, /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar, /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar, /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar, /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar]\n[DEBUG]   (f) useIncrementalCompilation = true\n[DEBUG]   (f) verbose = false\n[DEBUG] -- end configuration --\n[DEBUG] Using compiler 'javac'.\n[DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations to test-compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n[DEBUG] New test-compile source roots:\n  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n  /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG] CompilerReuseStrategy: reuseCreated\n[DEBUG] useIncrementalCompilation enabled\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test15.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test12.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test04.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test20.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test07.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/package-info.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test23.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test18.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test03.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test17.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test09.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test11.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_03_Logging.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test06.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test22.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test14.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test05.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test08.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/ITAssert.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test13.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test10.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test02.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test24.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test21.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/JavaCompilationTester.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test01.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_01_Inlining.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_02_Compilation.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test19.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test16.java\n[DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_04_Options.java\n[INFO] Changes detected - recompiling the module!\n[DEBUG] Classpath:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar\n[DEBUG]  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar\n[DEBUG] Source roots:\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/src/samples/java\n[DEBUG]  /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations\n[DEBUG] Command line options:\n[DEBUG] -d /home/nicoulaj/workspace/compile-command-annotations/target/test-classes -classpath /home/nicoulaj/workspace/compile-command-annotations/target/test-classes:/home/nicoulaj/workspace/compile-command-annotations/target/classes:/home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar:/home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar:/home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar:/home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar:/home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar: -sourcepath /home/nicoulaj/workspace/compile-command-annotations/src/test/java:/home/nicoulaj/workspace/compile-command-annotations/src/samples/java:/home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations: -s /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations -g -nowarn -target 1.6 -source 1.6 -encoding UTF-8 -proc:none\n[DEBUG] incrementalBuildHelper#beforeRebuildExecution\n[INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG] incrementalBuildHelper#afterRebuildExecution\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API.\n[INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details.\n[INFO] \n[FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=114, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=1, ConflictIdSorter.conflictIdCount=34, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=80, DefaultDependencyCollector.collectTime=14, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile\n[DEBUG]       org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile\n[DEBUG]       org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-utils:jar:1.5.15:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]             junit:junit:jar:4.12:compile\n[DEBUG]                org.hamcrest:hamcrest-core:jar:1.3:compile\n[DEBUG]       org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]             backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.11:compile\n[DEBUG]       org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]          org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]             org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]          org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile\n[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]          org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]          classworlds:classworlds:jar:1.1:compile\n[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]       org.apache.commons:commons-lang3:jar:3.1:compile\n[DEBUG]    org.apache.maven.surefire:surefire-api:jar:2.19.1:compile\n[DEBUG]    org.apache.maven:maven-toolchain:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1\n[DEBUG]   Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.surefire:maven-surefire-common:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.surefire:surefire-booter:jar:2.19.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:1.5.15\n[DEBUG]   Included: junit:junit:jar:4.12\n[DEBUG]   Included: org.hamcrest:hamcrest-core:jar:1.3\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.11\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.1\n[DEBUG]   Included: org.apache.maven.surefire:surefire-api:jar:2.19.1\n[DEBUG]   Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test' with basic configurator -->\n[DEBUG]   (s) additionalClasspathElements = []\n[DEBUG]   (s) argLine = -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (s) basedir = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (s) childDelegation = false\n[DEBUG]   (s) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (s) classpathDependencyExcludes = []\n[DEBUG]   (s) dependenciesToScan = []\n[DEBUG]   (s) disableXmlReport = false\n[DEBUG]   (s) enableAssertions = true\n[DEBUG]   (f) forkCount = 1\n[DEBUG]   (s) forkMode = once\n[DEBUG]   (s) junitArtifactName = junit:junit\n[DEBUG]   (s) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) parallelMavenExecution = false\n[DEBUG]   (s) parallelOptimized = true\n[DEBUG]   (s) perCoreThreadCount = true\n[DEBUG]   (s) pluginArtifactMap = {org.apache.maven.plugins:maven-surefire-plugin=org.apache.maven.plugins:maven-surefire-plugin:maven-plugin:2.19.1:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven.surefire:maven-surefire-common=org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile, org.apache.maven.surefire:surefire-booter=org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:1.5.15:compile, org.apache.maven:maven-plugin-descriptor=org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.12:compile, org.hamcrest:hamcrest-core=org.hamcrest:hamcrest-core:jar:1.3:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-core=org.apache.maven:maven-core:jar:2.2.1:compile, org.apache.maven:maven-plugin-parameter-documenter=org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile, org.slf4j:slf4j-jdk14=org.slf4j:slf4j-jdk14:jar:1.5.6:runtime, org.slf4j:slf4j-api=org.slf4j:slf4j-api:jar:1.5.6:runtime, org.slf4j:jcl-over-slf4j=org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, org.apache.maven:maven-error-diagnostics=org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile, org.apache.maven:maven-monitor=org.apache.maven:maven-monitor:jar:2.2.1:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1:compile, org.sonatype.plexus:plexus-sec-dispatcher=org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile, org.sonatype.plexus:plexus-cipher=org.sonatype.plexus:plexus-cipher:jar:1.4:compile, org.apache.commons:commons-lang3=org.apache.commons:commons-lang3:jar:3.1:compile, org.apache.maven.surefire:surefire-api=org.apache.maven.surefire:surefire-api:jar:2.19.1:compile, org.apache.maven:maven-toolchain=org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.apache.maven.plugin-tools:maven-plugin-annotations=org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile}\n[DEBUG]   (f) pluginDescriptor = Component Descriptor: role: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.HelpMojo', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:help'\nrole: 'org.apache.maven.plugin.Mojo', implementation: 'org.apache.maven.plugin.surefire.SurefirePlugin', role hint: 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test'\n[FOREGROUND_YELLOW]---[FOREGROUND_RESET]\n[DEBUG]   (s) printSummary = true\n[DEBUG]   (s) projectArtifactMap = {org.testng:testng=org.testng:testng:jar:6.10:test, com.beust:jcommander=com.beust:jcommander:jar:1.48:test, com.google.guava:guava=com.google.guava:guava:jar:21.0:test, commons-io:commons-io=commons-io:commons-io:jar:2.5:test, org.assertj:assertj-core=org.assertj:assertj-core:jar:3.6.2:test}\n[DEBUG]   (s) redirectTestOutputToFile = false\n[DEBUG]   (s) remoteRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => never]\n]\n[DEBUG]   (s) reportFormat = brief\n[DEBUG]   (s) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[DEBUG]   (f) rerunFailingTestsCount = 0\n[DEBUG]   (f) reuseForks = true\n[DEBUG]   (s) runOrder = filesystem\n[DEBUG]   (f) shutdown = testset\n[DEBUG]   (s) skip = false\n[DEBUG]   (f) skipAfterFailureCount = 0\n[DEBUG]   (s) skipTests = false\n[DEBUG]   (s) suiteXmlFiles = []\n[DEBUG]   (s) testClassesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes\n[DEBUG]   (s) testFailureIgnore = false\n[DEBUG]   (s) testNGArtifactName = org.testng:testng\n[DEBUG]   (s) testSourceDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/test/java\n[DEBUG]   (s) threadCountClasses = 0\n[DEBUG]   (s) threadCountMethods = 0\n[DEBUG]   (s) threadCountSuites = 0\n[DEBUG]   (s) trimStackTrace = true\n[DEBUG]   (s) useFile = true\n[DEBUG]   (s) useManifestOnlyJar = true\n[DEBUG]   (s) useSystemClassLoader = true\n[DEBUG]   (s) useUnlimitedThreads = false\n[DEBUG]   (s) workingDirectory = /home/nicoulaj/workspace/compile-command-annotations\n[DEBUG]   (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG] -- end configuration --\n[DEBUG] Surefire report directory: /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports\n[DEBUG] Setting system property [user.dir]=[/home/nicoulaj/workspace/compile-command-annotations]\n[DEBUG] Setting system property [localRepository]=[/home/nicoulaj/.m2/repository]\n[DEBUG] Setting system property [basedir]=[/home/nicoulaj/workspace/compile-command-annotations]\n[DEBUG] dummy:dummy:jar:1.0 (selected for null)\n[DEBUG]   org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile (selected for compile)\n[DEBUG]     org.apache.maven.surefire:surefire-api:jar:2.19.1:compile (selected for compile)\n[DEBUG] Adding to surefire booter test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-booter/2.19.1/surefire-booter-2.19.1.jar Scope: compile\n[DEBUG] Adding to surefire booter test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar Scope: compile\n[DEBUG] Using JVM: /usr/lib/jvm/java-8-jdk/jre/bin/java\n[DEBUG] dummy:dummy:jar:1.0 (selected for null)\n[DEBUG]   org.apache.maven.surefire:surefire-testng:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:common-java5:jar:2.19.1:test (selected for test)\n[DEBUG]       org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:surefire-testng-utils:jar:2.19.1:test (selected for test)\n[DEBUG]       org.apache.maven.surefire:surefire-grouper:jar:2.19.1:test (selected for test)\n[DEBUG]     org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test)\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar Scope: test\n[DEBUG] Adding to surefire test classpath: /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar Scope: test\n[DEBUG] test classpath:  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes  /home/nicoulaj/workspace/compile-command-annotations/target/classes  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar\n[DEBUG] provider classpath:  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar\n[DEBUG] test(compact) classpath:  test-classes  classes  testng-6.10.jar  jcommander-1.48.jar  guava-21.0.jar  commons-io-2.5.jar  assertj-core-3.6.2.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar\n[DEBUG] provider(compact) classpath:  surefire-testng-2.19.1.jar  common-java5-2.19.1.jar  surefire-api-2.19.1.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar\n\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\n[FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET]\n[FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET]\n[DEBUG] boot classpath:  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-booter/2.19.1/surefire-booter-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-api/2.19.1/surefire-api-2.19.1.jar  /home/nicoulaj/workspace/compile-command-annotations/target/test-classes  /home/nicoulaj/workspace/compile-command-annotations/target/classes  /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar  /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar  /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar  /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar  /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng-utils/2.19.1/surefire-testng-utils-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-grouper/2.19.1/surefire-grouper-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/surefire-testng/2.19.1/surefire-testng-2.19.1.jar  /home/nicoulaj/.m2/repository/org/apache/maven/surefire/common-java5/2.19.1/common-java5-2.19.1.jar\n[DEBUG] boot(compact) classpath:  surefire-booter-2.19.1.jar  surefire-api-2.19.1.jar  test-classes  classes  testng-6.10.jar  jcommander-1.48.jar  guava-21.0.jar  commons-io-2.5.jar  assertj-core-3.6.2.jar  surefire-testng-utils-2.19.1.jar  surefire-grouper-2.19.1.jar  surefire-testng-2.19.1.jar  common-java5-2.19.1.jar\nForking command line: /bin/sh -c cd /home/nicoulaj/workspace/compile-command-annotations && /usr/lib/jvm/java-8-jdk/jre/bin/java -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec -jar /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefirebooter5685346919771426495.jar /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefire2652522124614461492tmp /home/nicoulaj/workspace/compile-command-annotations/target/surefire/surefire_02277511650090515438tmp\nRunning TestSuite\nConfiguring TestNG with: TestNG60Configurator\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.358 sec - in TestSuite[FOREGROUND_RESET]\n\n[BOLD]Results :[RESET_INTENSITY]\n\n[FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET]\n\n[INFO] \n[FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=82, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=31, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=75, DefaultDependencyCollector.collectTime=20, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile\n[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile\n[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile\n[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile\n[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile\n[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime\n[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile\n[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile\n[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile\n[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile\n[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile\n[DEBUG]    org.apache.maven:maven-archiver:jar:3.1.1:compile\n[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.1:compile\n[DEBUG]       commons-io:commons-io:jar:2.5:compile\n[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:3.4:compile\n[DEBUG]       org.codehaus.plexus:plexus-io:jar:2.7.1:compile\n[DEBUG]       org.apache.commons:commons-compress:jar:1.11:compile\n[DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile\n[DEBUG]       org.tukaani:xz:jar:1.5:runtime\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2\n[DEBUG]   Included: org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2\n[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7\n[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.1.1\n[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.1\n[DEBUG]   Included: commons-io:commons-io:jar:2.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:3.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.7.1\n[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.11\n[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4\n[DEBUG]   Included: org.tukaani:xz:jar:1.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar' with basic configurator -->\n[DEBUG]   (f) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes\n[DEBUG]   (f) finalName = compile-command-annotations-1.2.2-SNAPSHOT\n[DEBUG]   (f) forceCreation = false\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@30b9eadd\n[DEBUG]   (f) skipIfEmpty = false\n[DEBUG]   (f) useDefaultManifestFile = false\n[DEBUG] -- end configuration --\n[DEBUG] isUp2date: false (Destination /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar not found.)\n[INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] adding directory META-INF/\n[DEBUG] adding entry META-INF/MANIFEST.MF\n[DEBUG] adding directory META-INF/services/\n[DEBUG] adding directory net/\n[DEBUG] adding directory net/nicoulaj/\n[DEBUG] adding directory net/nicoulaj/compilecommand/\n[DEBUG] adding directory net/nicoulaj/compilecommand/annotations/\n[DEBUG] adding entry META-INF/services/javax.annotation.processing.Processor\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$2.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Exclude.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Print.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Option.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Inline.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Quiet.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Break.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/DontInline.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Options.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/CompileOnly.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Log.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$1.class\n[DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$3.class\n[DEBUG] adding directory META-INF/maven/\n[DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/\n[DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/\n[DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.xml\n[DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.properties\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=206, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=67, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=151, DefaultDependencyCollector.collectTime=56, DefaultDependencyCollector.transformTime=2}\n[DEBUG] org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0:\n[DEBUG]    org.apache.maven.shared:maven-invoker:jar:2.2:compile\n[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile\n[DEBUG]    org.apache.maven:maven-core:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile\n[DEBUG]       org.slf4j:slf4j-jdk14:jar:1.5.6:runtime\n[DEBUG]          org.slf4j:slf4j-api:jar:1.5.6:runtime\n[DEBUG]       org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime\n[DEBUG]       org.apache.maven:maven-profile:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:3.8.1:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile\n[DEBUG]       commons-cli:commons-cli:jar:1.2:compile\n[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile\n[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile\n[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.2.1:compile\n[DEBUG]          backport-util-concurrent:backport-util-concurrent:jar:3.1:compile\n[DEBUG]       org.apache.maven:maven-monitor:jar:2.2.1:compile\n[DEBUG]       classworlds:classworlds:jar:1.1:compile\n[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile\n[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.2.1:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-model:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.2.1:compile\n[DEBUG]    org.apache.maven:maven-settings:jar:2.2.1:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile\n[DEBUG]    org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile\n[DEBUG]       org.apache.maven.doxia:doxia-core:jar:1.2:compile\n[DEBUG]          xerces:xercesImpl:jar:2.9.1:compile\n[DEBUG]             xml-apis:xml-apis:jar:1.3.04:compile\n[DEBUG]          commons-lang:commons-lang:jar:2.4:compile\n[DEBUG]          org.apache.httpcomponents:httpclient:jar:4.0.2:compile\n[DEBUG]             org.apache.httpcomponents:httpcore:jar:4.0.1:compile\n[DEBUG]             commons-codec:commons-codec:jar:1.3:compile\n[DEBUG]       commons-validator:commons-validator:jar:1.3.1:compile\n[DEBUG]          commons-beanutils:commons-beanutils:jar:1.7.0:compile\n[DEBUG]          commons-digester:commons-digester:jar:1.6:compile\n[DEBUG]          commons-logging:commons-logging:jar:1.0.4:compile\n[DEBUG]    org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile\n[DEBUG]       org.codehaus.groovy:groovy:jar:2.0.1:compile\n[DEBUG]          antlr:antlr:jar:2.7.7:compile\n[DEBUG]          org.ow2.asm:asm-tree:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-commons:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-util:jar:4.0:compile\n[DEBUG]          org.ow2.asm:asm-analysis:jar:4.0:compile\n[DEBUG]    org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile\n[DEBUG]    org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile\n[DEBUG]       org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile\n[DEBUG]       org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile\n[DEBUG]       org.apache.velocity:velocity:jar:1.5:compile\n[DEBUG]          oro:oro:jar:2.0.8:compile\n[DEBUG]       commons-collections:commons-collections:jar:3.2:compile\n[DEBUG]    org.beanshell:bsh:jar:2.0b4:compile\n[DEBUG]    org.codehaus.groovy:groovy-all:jar:2.0.1:compile\n[DEBUG]    org.apache.ant:ant:jar:1.8.1:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.21:compile\n[DEBUG]    commons-io:commons-io:jar:2.2:compile\n[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.21:compile\n[DEBUG]    org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0\n[DEBUG]   Included: org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0\n[DEBUG]   Included: org.apache.maven.shared:maven-invoker:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5\n[DEBUG]   Included: org.slf4j:slf4j-jdk14:jar:1.5.6\n[DEBUG]   Included: org.slf4j:jcl-over-slf4j:jar:1.5.6\n[DEBUG]   Included: junit:junit:jar:3.8.1\n[DEBUG]   Included: commons-cli:commons-cli:jar:1.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4\n[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1\n[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3\n[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0\n[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.2\n[DEBUG]   Included: org.apache.maven.doxia:doxia-core:jar:1.2\n[DEBUG]   Included: xerces:xercesImpl:jar:2.9.1\n[DEBUG]   Included: xml-apis:xml-apis:jar:1.3.04\n[DEBUG]   Included: commons-lang:commons-lang:jar:2.4\n[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.0.2\n[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.0.1\n[DEBUG]   Included: commons-codec:commons-codec:jar:1.3\n[DEBUG]   Included: commons-validator:commons-validator:jar:1.3.1\n[DEBUG]   Included: commons-beanutils:commons-beanutils:jar:1.7.0\n[DEBUG]   Included: commons-digester:commons-digester:jar:1.6\n[DEBUG]   Included: commons-logging:commons-logging:jar:1.0.4\n[DEBUG]   Included: org.apache.maven.shared:maven-script-interpreter:jar:1.1\n[DEBUG]   Included: org.codehaus.groovy:groovy:jar:2.0.1\n[DEBUG]   Included: antlr:antlr:jar:2.7.7\n[DEBUG]   Included: org.ow2.asm:asm-tree:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-commons:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-util:jar:4.0\n[DEBUG]   Included: org.ow2.asm:asm-analysis:jar:4.0\n[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4\n[DEBUG]   Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.4\n[DEBUG]   Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7\n[DEBUG]   Included: org.apache.velocity:velocity:jar:1.5\n[DEBUG]   Included: oro:oro:jar:2.0.8\n[DEBUG]   Included: commons-collections:commons-collections:jar:3.2\n[DEBUG]   Included: org.beanshell:bsh:jar:2.0b4\n[DEBUG]   Included: org.codehaus.groovy:groovy-all:jar:2.0.1\n[DEBUG]   Included: org.apache.ant:ant:jar:1.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.21\n[DEBUG]   Included: commons-io:commons-io:jar:2.2\n[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.21\n[DEBUG]   Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install' with basic configurator -->\n[DEBUG]   (f) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) reactorProjects = [MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml]\n[DEBUG]   (f) remoteArtifactRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => daily]\n]\n[DEBUG]   (f) remotePluginRepositories = [      id: central\n      url: https://repo.maven.apache.org/maven2\n   layout: default\nsnapshots: [enabled => false, update => daily]\n releases: [enabled => true, update => never]\n]\n[DEBUG]   (f) skipInstallation = false\n[DEBUG] -- end configuration --\n[DEBUG] Installing /home/nicoulaj/.m2/repository/net/nicoulaj/parent/48/parent-48.pom to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration' with basic configurator -->\n[DEBUG]   (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) pluginArtifactMap = {org.jacoco:jacoco-maven-plugin=org.jacoco:jacoco-maven-plugin:maven-plugin:0.7.7.201606060606:, org.apache.maven:maven-plugin-api=org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-project=org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-settings=org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven:maven-profile=org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-model=org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager=org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, org.apache.maven:maven-repository-metadata=org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent=backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry=org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.codehaus.plexus:plexus-interpolation=org.codehaus.plexus:plexus-interpolation:jar:1.11:compile, org.apache.maven:maven-artifact=org.apache.maven:maven-artifact:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default=org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit=junit:junit:jar:4.8.2:compile, classworlds:classworlds=classworlds:classworlds:jar:1.1-alpha-2:compile, org.codehaus.plexus:plexus-utils=org.codehaus.plexus:plexus-utils:jar:3.0.22:compile, org.apache.maven.shared:file-management=org.apache.maven.shared:file-management:jar:1.2.1:compile, org.apache.maven.shared:maven-shared-io=org.apache.maven.shared:maven-shared-io:jar:1.1:compile, org.apache.maven.wagon:wagon-provider-api=org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile, org.apache.maven.reporting:maven-reporting-api=org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile, org.apache.maven.doxia:doxia-sink-api=org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile, org.apache.maven.doxia:doxia-logging-api=org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile, org.apache.maven.reporting:maven-reporting-impl=org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile, org.apache.maven.doxia:doxia-core=org.apache.maven.doxia:doxia-core:jar:1.1.2:compile, xerces:xercesImpl=xerces:xercesImpl:jar:2.8.1:compile, commons-lang:commons-lang=commons-lang:commons-lang:jar:2.4:compile, commons-httpclient:commons-httpclient=commons-httpclient:commons-httpclient:jar:3.1:compile, commons-codec:commons-codec=commons-codec:commons-codec:jar:1.2:compile, org.apache.maven.doxia:doxia-site-renderer=org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile, org.apache.maven.doxia:doxia-decoration-model=org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-xhtml=org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile, org.apache.maven.doxia:doxia-module-fml=org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile, org.codehaus.plexus:plexus-i18n=org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile, org.codehaus.plexus:plexus-velocity=org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity=org.apache.velocity:velocity:jar:1.5:compile, commons-collections:commons-collections=commons-collections:commons-collections:jar:3.2:compile, commons-validator:commons-validator=commons-validator:commons-validator:jar:1.2.0:compile, commons-beanutils:commons-beanutils=commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester=commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging=commons-logging:commons-logging:jar:1.0.4:compile, oro:oro=oro:oro:jar:2.0.8:compile, xml-apis:xml-apis=xml-apis:xml-apis:jar:1.0.b2:compile, org.jacoco:org.jacoco.agent=org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile, org.jacoco:org.jacoco.core=org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile, org.ow2.asm:asm-debug-all=org.ow2.asm:asm-debug-all:jar:5.1:compile, org.jacoco:org.jacoco.report=org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile}\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) propertyName = invoker.mavenOpts\n[DEBUG]   (f) skip = false\n[DEBUG] -- end configuration --\n[INFO] invoker.mavenOpts set to -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] \n[FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run' with basic configurator -->\n[DEBUG]   (f) addTestClassPath = true\n[DEBUG]   (f) cloneAllFiles = false\n[DEBUG]   (f) cloneClean = false\n[DEBUG]   (f) cloneProjectsTo = /home/nicoulaj/workspace/compile-command-annotations/target/it/tests\n[DEBUG]   (f) debug = false\n[DEBUG]   (f) disableReports = false\n[DEBUG]   (f) encoding = UTF-8\n[DEBUG]   (f) goals = [clean, install]\n[DEBUG]   (f) goalsFile = goals.txt\n[DEBUG]   (f) ignoreFailures = false\n[DEBUG]   (f) invokerPropertiesFile = invoker.properties\n[DEBUG]   (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository\n[DEBUG]   (f) mavenOpts = -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) mergeUserSettings = false\n[DEBUG]   (f) mojoExecution = org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run {execution: run-integration-tests}\n[DEBUG]   (f) noLog = false\n[DEBUG]   (f) parallelThreads = 1\n[DEBUG]   (f) pluginArtifacts = [org.apache.maven.plugins:maven-invoker-plugin:maven-plugin:2.0.0:, org.apache.maven.shared:maven-invoker:jar:2.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile, org.apache.maven:maven-core:jar:2.2.1:compile, org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile, org.slf4j:slf4j-jdk14:jar:1.5.6:runtime, org.slf4j:slf4j-api:jar:1.5.6:runtime, org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime, org.apache.maven:maven-profile:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit:jar:3.8.1:compile, org.apache.maven:maven-repository-metadata:jar:2.2.1:compile, org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile, commons-cli:commons-cli:jar:1.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-monitor:jar:2.2.1:compile, classworlds:classworlds:jar:1.1:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile, org.sonatype.plexus:plexus-cipher:jar:1.4:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-model:jar:2.2.1:compile, org.apache.maven:maven-plugin-api:jar:2.2.1:compile, org.apache.maven:maven-artifact:jar:2.2.1:compile, org.apache.maven:maven-settings:jar:2.2.1:compile, org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile, org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile, org.apache.maven.doxia:doxia-core:jar:1.2:compile, xerces:xercesImpl:jar:2.9.1:compile, xml-apis:xml-apis:jar:1.3.04:compile, commons-lang:commons-lang:jar:2.4:compile, org.apache.httpcomponents:httpclient:jar:4.0.2:compile, org.apache.httpcomponents:httpcore:jar:4.0.1:compile, commons-codec:commons-codec:jar:1.3:compile, commons-validator:commons-validator:jar:1.3.1:compile, commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-digester:commons-digester:jar:1.6:compile, commons-logging:commons-logging:jar:1.0.4:compile, org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile, org.codehaus.groovy:groovy:jar:2.0.1:compile, antlr:antlr:jar:2.7.7:compile, org.ow2.asm:asm-tree:jar:4.0:compile, org.ow2.asm:asm-commons:jar:4.0:compile, org.ow2.asm:asm:jar:4.0:compile, org.ow2.asm:asm-util:jar:4.0:compile, org.ow2.asm:asm-analysis:jar:4.0:compile, org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile, org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile, org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile, org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile, org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile, org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile, org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile, org.apache.velocity:velocity:jar:1.5:compile, oro:oro:jar:2.0.8:compile, commons-collections:commons-collections:jar:3.2:compile, org.beanshell:bsh:jar:2.0b4:compile, org.codehaus.groovy:groovy-all:jar:2.0.1:compile, org.apache.ant:ant:jar:1.8.1:compile, org.codehaus.plexus:plexus-utils:jar:3.0.21:compile, commons-io:commons-io:jar:2.2:compile, org.codehaus.plexus:plexus-interpolation:jar:1.21:compile, org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile]\n[DEBUG]   (f) pomIncludes = [*/pom.xml]\n[DEBUG]   (f) postBuildHookScript = postbuild\n[DEBUG]   (f) preBuildHookScript = prebuild\n[DEBUG]   (f) profilesFile = profiles.txt\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) projectsDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/it/tests\n[DEBUG]   (f) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/it/reports\n[DEBUG]   (f) selectorScript = selector.bsh\n[DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@4d20616a\n[DEBUG]   (f) settingsFile = /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml\n[DEBUG]   (f) showErrors = true\n[DEBUG]   (f) showVersion = false\n[DEBUG]   (f) skipInvocation = false\n[DEBUG]   (f) streamLogs = false\n[DEBUG]   (f) suppressSummaries = false\n[DEBUG]   (f) testClassPath = [/home/nicoulaj/workspace/compile-command-annotations/target/test-classes, /home/nicoulaj/workspace/compile-command-annotations/target/classes, /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar, /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar, /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar, /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar, /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar]\n[DEBUG]   (f) testPropertiesFile = test.properties\n[DEBUG] -- end configuration --\n[DEBUG] Setup projects: []\n[DEBUG] Collecting parent/child projects of IT-01/pom.xml\n[DEBUG] Collecting parent/child projects of IT-03/pom.xml\n[DEBUG] Collecting parent/child projects of IT-02/pom.xml\n[DEBUG] Collecting parent/child projects of IT-05/pom.xml\n[DEBUG] Collecting parent/child projects of IT-04/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml\n[DEBUG] Interpolate /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml to /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml\n[INFO] Building: IT-01/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-01\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy\n[INFO] ..SUCCESS (4.8 s)\n[INFO] Building: IT-03/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-03\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[INFO] Building: IT-02/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-02\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy\n[INFO] ..SUCCESS (3.3 s)\n[INFO] Building: IT-05/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = failure\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-05\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy\n[INFO] ..SUCCESS (2.4 s)\n[INFO] Building: IT-04/pom.xml\n[DEBUG] Using invoker properties:\n[DEBUG]   invoker.buildResult = success\n[DEBUG]   invoker.goals = clean install\n[DEBUG]   invoker.name = IT-04\n[DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04\n[DEBUG] Using MAVEN_OPTS: -javaagent:/home/nicoulaj/.m2/repository/org/jacoco/org.jacoco.agent/0.7.7.201606060606/org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=/home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG] Executing: /bin/sh -c cd '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04' && '/opt/maven/bin/mvn' '-B' '-e' '-D' 'maven.repo.local=/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository' '-s' '/home/nicoulaj/workspace/compile-command-annotations/target/it/tests/interpolated-settings.xml' 'clean' 'install'\n[INFO] run script postbuild.groovy\n[DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy\n[INFO] ..SUCCESS (3.1 s)\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[INFO] Build Summary:\n[INFO]   Passed: 5, Failed: 0, Errors: 0, Skipped: 0\n[BOLD][INFO] -------------------------------------------------[RESET_INTENSITY]\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.\n[DEBUG] Setting property: site.resource.loader.class => 'org.codehaus.plexus.velocity.SiteResourceLoader'.\n[DEBUG] Setting property: velocimacro.messages.on => 'false'.\n[DEBUG] Setting property: resource.loader => 'classpath,site'.\n[DEBUG] Setting property: runtime.log.invalid.references => 'false'.\n[DEBUG] Setting property: resource.manager.logwhenfound => 'false'.\n[DEBUG] Setting property: velocimacro.permissions.allow.inline.to.replace.global => 'true'.\n[DEBUG] *******************************************************************\n[DEBUG] Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29)\n[DEBUG] RuntimeInstance initializing.\n[DEBUG] Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties\n[DEBUG] LogSystem has been deprecated. Please use a LogChute implementation.\n[DEBUG] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)\n[DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader\n[DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.SiteResourceLoader\n[DEBUG] ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl)\n[DEBUG] Default ResourceManager initialization complete.\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include\n[DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach\n[DEBUG] Created '20' parsers.\n[DEBUG] Velocimacro : initialization starting.\n[DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in templates\n[DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may replace previous VM definitions\n[DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.\n[DEBUG] Velocimacro : autoload off : VM system will not automatically reload global library macros\n[DEBUG] Velocimacro : Velocimacro : initialization complete.\n[DEBUG] RuntimeInstance successfully initialized.\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report' with basic configurator -->\n[DEBUG]   (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco\n[DEBUG]   (f) outputEncoding = UTF-8\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) sourceEncoding = UTF-8\n[DEBUG]   (f) title = Hotspot compile command annotations\n[DEBUG] -- end configuration --\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Configuring mojo org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration from plugin realm ClassRealm[plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration' with basic configurator -->\n[DEBUG]   (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[DEBUG]   (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco-it\n[DEBUG]   (f) outputEncoding = UTF-8\n[DEBUG]   (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (f) skip = false\n[DEBUG]   (f) sourceEncoding = UTF-8\n[DEBUG]   (f) title = Hotspot compile command annotations\n[DEBUG] -- end configuration --\n[INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec\n[INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes\n[INFO] \n[FAINT][INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---[RESET_INTENSITY]\n[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=38, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=15, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=35, DefaultDependencyCollector.collectTime=14, DefaultDependencyCollector.transformTime=1}\n[DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.4:\n[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-project:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-settings:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-profile:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.6:compile\n[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile\n[DEBUG]          junit:junit:jar:3.8.1:compile\n[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile\n[DEBUG]    org.apache.maven:maven-model:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-artifact-manager:jar:2.0.6:compile\n[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.6:compile\n[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile\n[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.5:compile\n[DEBUG]    org.codehaus.plexus:plexus-digest:jar:1.0:compile\n[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG]   Imported:  < maven.api\n[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4\n[DEBUG]   Included: org.apache.maven.plugins:maven-install-plugin:jar:2.4\n[DEBUG]   Included: junit:junit:jar:3.8.1\n[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.5\n[DEBUG]   Included: org.codehaus.plexus:plexus-digest:jar:1.0\n[DEBUG] Configuring mojo org.apache.maven.plugins:maven-install-plugin:2.4:install from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-install-plugin:2.4, parent: sun.misc.Launcher$AppClassLoader@55f96302]\n[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.4:install' with basic configurator -->\n[DEBUG]   (f) artifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT\n[DEBUG]   (f) attachedArtifacts = []\n[DEBUG]   (f) createChecksum = false\n[DEBUG]   (f) localRepository =       id: local\n      url: file:///home/nicoulaj/.m2/repository/\n   layout: default\nsnapshots: [enabled => true, update => always]\n releases: [enabled => true, update => always]\n\n[DEBUG]   (f) packaging = jar\n[DEBUG]   (f) pomFile = /home/nicoulaj/workspace/compile-command-annotations/pom.xml\n[DEBUG]   (s) skip = false\n[DEBUG]   (f) updateReleaseInfo = false\n[DEBUG] -- end configuration --\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.jar\n[DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories\n[INFO] Installing /home/nicoulaj/workspace/compile-command-annotations/pom.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/compile-command-annotations-1.2.2-SNAPSHOT.pom\n[DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT/maven-metadata.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/maven-metadata-local.xml\n[DEBUG] Installing net.nicoulaj.compile-command-annotations:compile-command-annotations/maven-metadata.xml to /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/maven-metadata-local.xml\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FOREGROUND_GREEN][INFO] BUILD SUCCESS[FOREGROUND_RESET]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n[FAINT][INFO] Total time: 20.999 s[RESET_INTENSITY]\n[FAINT][INFO] Finished at: 2017-03-19T16:29:40+01:00[RESET_INTENSITY]\n[FAINT][INFO] Final Memory: 32M/319M[RESET_INTENSITY]\n[BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY]\n"
  },
  {
    "path": "tests/data/ref/ping-001.log",
    "content": "PING www.google.com(dh-in-x67.1e100.net (2a00:1450:400b:c03::67)) 56 data bytes\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=1 ttl=54 time=36.6 ms\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=2 ttl=54 time=36.6 ms\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=3 ttl=54 time=36.6 ms\n\n--- www.google.com ping statistics ---\n3 packets transmitted, 3 received, 0% packet loss, time 2003ms\nrtt min/avg/max/mdev = 36.625/36.640/36.666/0.221 ms\n"
  },
  {
    "path": "tests/data/ref/ping-001.log.out",
    "content": "[BOLD]PING www.google.com(dh-in-x67.1e100.net (2a00:1450:400b:c03::67)) 56 data bytes[RESET_INTENSITY]\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=1 ttl=54 [FOREGROUND_YELLOW]time=[BOLD]36.6 ms[RESET_INTENSITY][FOREGROUND_RESET]\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=2 ttl=54 [FOREGROUND_YELLOW]time=[BOLD]36.6 ms[RESET_INTENSITY][FOREGROUND_RESET]\n64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=3 ttl=54 [FOREGROUND_YELLOW]time=[BOLD]36.6 ms[RESET_INTENSITY][FOREGROUND_RESET]\n\n[BOLD]--- www.google.com ping statistics ---[RESET_INTENSITY]\n3 packets transmitted, 3 received, 0% packet loss, time 2003ms\nrtt min/avg/max/mdev = 36.625/36.640/36.666/[BOLD]0.221 ms[RESET_INTENSITY]\n"
  },
  {
    "path": "tests/data/ref/ping-002.log",
    "content": "ping: wwwww.google.com: Name or service not known\n"
  },
  {
    "path": "tests/data/ref/ping-002.log.out",
    "content": "ping: wwwww.google.com: Name or service not known\n"
  },
  {
    "path": "tests/data/ref/tcpdump-001.log",
    "content": "    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0x2fdc), seq 1504125:1507021, ack 275, win 269, options [nop,nop,TS val 1088319702 ecr 3891091735], length 2896\n18:54:43.133515 IP (tos 0x0, ttl 54, id 52203, offset 0, flags [DF], proto TCP (6), length 2948)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0x7864), seq 1507021:1509917, ack 275, win 269, options [nop,nop,TS val 1088319702 ecr 3891091735], length 2896\n18:54:43.133630 IP (tos 0x0, ttl 64, id 9684, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0x39cc), ack 1509917, win 24576, options [nop,nop,TS val 3891091744 ecr 1088319702], length 0\n18:54:43.134576 IP (tos 0x0, ttl 54, id 52205, offset 0, flags [DF], proto TCP (6), length 1500)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x6d2a (correct), seq 1509917:1511365, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091736], length 1448\n18:54:43.134646 IP (tos 0x0, ttl 54, id 52206, offset 0, flags [DF], proto TCP (6), length 4396)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x04ff (incorrect -> 0x6b41), seq 1511365:1515709, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091736], length 4344\n18:54:43.134697 IP (tos 0x0, ttl 64, id 9685, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0x2329), ack 1515709, win 24576, options [nop,nop,TS val 3891091745 ecr 1088319704], length 0\n18:54:43.134969 IP (tos 0x0, ttl 54, id 52209, offset 0, flags [DF], proto TCP (6), length 2948)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0x2851), seq 1515709:1518605, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091737], length 2896\n18:54:43.135026 IP (tos 0x0, ttl 54, id 52211, offset 0, flags [DF], proto TCP (6), length 4396)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x04ff (incorrect -> 0xee44), seq 1518605:1522949, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091737], length 4344\n18:54:43.135084 IP (tos 0x0, ttl 64, id 9686, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0x06e1), ack 1522949, win 24576, options [nop,nop,TS val 3891091745 ecr 1088319704], length 0\n18:54:43.137133 IP (tos 0x0, ttl 54, id 52214, offset 0, flags [DF], proto TCP (6), length 4396)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x04ff (incorrect -> 0xd273), seq 1522949:1527293, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091738], length 4344\n18:54:43.137180 IP (tos 0x0, ttl 54, id 52217, offset 0, flags [DF], proto TCP (6), length 2948)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0x941c), seq 1527293:1530189, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091738], length 2896\n18:54:43.137240 IP (tos 0x0, ttl 64, id 9687, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0xea94), ack 1530189, win 24576, options [nop,nop,TS val 3891091747 ecr 1088319706], length 0\n18:54:43.137566 IP (tos 0x0, ttl 54, id 52219, offset 0, flags [DF], proto TCP (6), length 4396)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x04ff (incorrect -> 0xaca8), seq 1530189:1534533, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091739], length 4344\n18:54:43.137640 IP (tos 0x0, ttl 54, id 52222, offset 0, flags [DF], proto TCP (6), length 2948)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0x5043), seq 1534533:1537429, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091739], length 2896\n18:54:43.137649 IP (tos 0x0, ttl 64, id 9688, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0xd99b), ack 1534533, win 24576, options [nop,nop,TS val 3891091748 ecr 1088319706], length 0\n18:54:43.137712 IP (tos 0x0, ttl 64, id 9689, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0xce4b), ack 1537429, win 24576, options [nop,nop,TS val 3891091748 ecr 1088319706], length 0\n18:54:43.138483 IP (tos 0x0, ttl 54, id 52224, offset 0, flags [DF], proto TCP (6), length 1500)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xdb84 (correct), seq 1537429:1538877, ack 275, win 269, options [nop,nop,TS val 1088319707 ecr 3891091740], length 1448\n18:54:43.138539 IP (tos 0x0, ttl 54, id 52225, offset 0, flags [DF], proto TCP (6), length 5491)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [P.], cksum 0x0946 (incorrect -> 0x01e5), seq 1538877:1544316, ack 275, win 269, options [nop,nop,TS val 1088319707 ecr 3891091740], length 5439\n18:54:43.138584 IP (tos 0x0, ttl 64, id 9690, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0xb362), ack 1544316, win 24576, options [nop,nop,TS val 3891091749 ecr 1088319707], length 0\n18:54:43.139452 IP (tos 0x0, ttl 54, id 52229, offset 0, flags [DF], proto TCP (6), length 2948)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0xff56 (incorrect -> 0xe254), seq 1544316:1547212, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 2896\n18:54:43.139543 IP (tos 0x0, ttl 64, id 9691, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0xa811), ack 1547212, win 24576, options [nop,nop,TS val 3891091749 ecr 1088319708], length 0\n18:54:43.139745 IP (tos 0x0, ttl 54, id 52231, offset 0, flags [DF], proto TCP (6), length 1500)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x895a (correct), seq 1547212:1548660, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 1448\n18:54:43.139803 IP (tos 0x0, ttl 54, id 52232, offset 0, flags [DF], proto TCP (6), length 5844)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x0aa7 (incorrect -> 0x3f47), seq 1548660:1554452, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 5792\n18:54:43.139883 IP (tos 0x0, ttl 64, id 9692, offset 0, flags [DF], proto TCP (6), length 52)\n    4.5.6.7.57434 > 1.2.3.4.443: Flags [.], cksum 0xf406 (incorrect -> 0x8bc8), ack 1554452, win 24576, options [nop,nop,TS val 3891091750 ecr 1088319708], length 0\n18:54:43.140658 IP (tos 0x0, ttl 54, id 52236, offset 0, flags [DF], proto TCP (6), length 1500)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x77da (correct), seq 1554452:1555900, ack 275, win 269, options [nop,nop,TS val 1088319709 ecr 3891091742], length 1448\n18:54:43.140726 IP (tos 0x0, ttl 54, id 52237, offset 0, flags [DF], proto TCP (6), length 5844)\n    1.2.3.4.443 > 4.5.6.7.57434: Flags [.], cksum 0x0aa7 (incorrect -> 0xf06b), seq 1555900:1561692, ack 275, win 269, options [nop,nop,TS val 1088319709 ecr 3891091742], length 5792\n"
  },
  {
    "path": "tests/data/ref/tcpdump-001.log.out",
    "content": "    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0x2fdc)[FOREGROUND_RESET], seq 1504125:1507021, ack 275, win 269, options [nop,nop,TS val 1088319702 ecr 3891091735], length 2896\n[FAINT]18:54:43.133515[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52203, offset 0, flags [DF], proto TCP (6), length 2948)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0x7864)[FOREGROUND_RESET], seq 1507021:1509917, ack 275, win 269, options [nop,nop,TS val 1088319702 ecr 3891091735], length 2896\n[FAINT]18:54:43.133630[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9684, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0x39cc)[FOREGROUND_RESET], ack 1509917, win 24576, options [nop,nop,TS val 3891091744 ecr 1088319702], length 0\n[FAINT]18:54:43.134576[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52205, offset 0, flags [DF], proto TCP (6), length 1500)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], cksum 0x6d2a (correct), seq 1509917:1511365, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091736], length 1448\n[FAINT]18:54:43.134646[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52206, offset 0, flags [DF], proto TCP (6), length 4396)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x04ff (incorrect -> 0x6b41)[FOREGROUND_RESET], seq 1511365:1515709, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091736], length 4344\n[FAINT]18:54:43.134697[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9685, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0x2329)[FOREGROUND_RESET], ack 1515709, win 24576, options [nop,nop,TS val 3891091745 ecr 1088319704], length 0\n[FAINT]18:54:43.134969[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52209, offset 0, flags [DF], proto TCP (6), length 2948)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0x2851)[FOREGROUND_RESET], seq 1515709:1518605, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091737], length 2896\n[FAINT]18:54:43.135026[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52211, offset 0, flags [DF], proto TCP (6), length 4396)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x04ff (incorrect -> 0xee44)[FOREGROUND_RESET], seq 1518605:1522949, ack 275, win 269, options [nop,nop,TS val 1088319704 ecr 3891091737], length 4344\n[FAINT]18:54:43.135084[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9686, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0x06e1)[FOREGROUND_RESET], ack 1522949, win 24576, options [nop,nop,TS val 3891091745 ecr 1088319704], length 0\n[FAINT]18:54:43.137133[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52214, offset 0, flags [DF], proto TCP (6), length 4396)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x04ff (incorrect -> 0xd273)[FOREGROUND_RESET], seq 1522949:1527293, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091738], length 4344\n[FAINT]18:54:43.137180[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52217, offset 0, flags [DF], proto TCP (6), length 2948)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0x941c)[FOREGROUND_RESET], seq 1527293:1530189, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091738], length 2896\n[FAINT]18:54:43.137240[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9687, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0xea94)[FOREGROUND_RESET], ack 1530189, win 24576, options [nop,nop,TS val 3891091747 ecr 1088319706], length 0\n[FAINT]18:54:43.137566[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52219, offset 0, flags [DF], proto TCP (6), length 4396)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x04ff (incorrect -> 0xaca8)[FOREGROUND_RESET], seq 1530189:1534533, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091739], length 4344\n[FAINT]18:54:43.137640[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52222, offset 0, flags [DF], proto TCP (6), length 2948)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0x5043)[FOREGROUND_RESET], seq 1534533:1537429, ack 275, win 269, options [nop,nop,TS val 1088319706 ecr 3891091739], length 2896\n[FAINT]18:54:43.137649[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9688, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0xd99b)[FOREGROUND_RESET], ack 1534533, win 24576, options [nop,nop,TS val 3891091748 ecr 1088319706], length 0\n[FAINT]18:54:43.137712[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9689, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0xce4b)[FOREGROUND_RESET], ack 1537429, win 24576, options [nop,nop,TS val 3891091748 ecr 1088319706], length 0\n[FAINT]18:54:43.138483[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52224, offset 0, flags [DF], proto TCP (6), length 1500)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], cksum 0xdb84 (correct), seq 1537429:1538877, ack 275, win 269, options [nop,nop,TS val 1088319707 ecr 3891091740], length 1448\n[FAINT]18:54:43.138539[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52225, offset 0, flags [DF], proto TCP (6), length 5491)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][P.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x0946 (incorrect -> 0x01e5)[FOREGROUND_RESET], seq 1538877:1544316, ack 275, win 269, options [nop,nop,TS val 1088319707 ecr 3891091740], length 5439\n[FAINT]18:54:43.138584[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9690, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0xb362)[FOREGROUND_RESET], ack 1544316, win 24576, options [nop,nop,TS val 3891091749 ecr 1088319707], length 0\n[FAINT]18:54:43.139452[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52229, offset 0, flags [DF], proto TCP (6), length 2948)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xff56 (incorrect -> 0xe254)[FOREGROUND_RESET], seq 1544316:1547212, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 2896\n[FAINT]18:54:43.139543[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9691, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0xa811)[FOREGROUND_RESET], ack 1547212, win 24576, options [nop,nop,TS val 3891091749 ecr 1088319708], length 0\n[FAINT]18:54:43.139745[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52231, offset 0, flags [DF], proto TCP (6), length 1500)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], cksum 0x895a (correct), seq 1547212:1548660, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 1448\n[FAINT]18:54:43.139803[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52232, offset 0, flags [DF], proto TCP (6), length 5844)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x0aa7 (incorrect -> 0x3f47)[FOREGROUND_RESET], seq 1548660:1554452, ack 275, win 269, options [nop,nop,TS val 1088319708 ecr 3891091741], length 5792\n[FAINT]18:54:43.139883[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 64, id 9692, offset 0, flags [DF], proto TCP (6), length 52)\n    [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL] > [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0xf406 (incorrect -> 0x8bc8)[FOREGROUND_RESET], ack 1554452, win 24576, options [nop,nop,TS val 3891091750 ecr 1088319708], length 0\n[FAINT]18:54:43.140658[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52236, offset 0, flags [DF], proto TCP (6), length 1500)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], cksum 0x77da (correct), seq 1554452:1555900, ack 275, win 269, options [nop,nop,TS val 1088319709 ecr 3891091742], length 1448\n[FAINT]18:54:43.140726[RESET_INTENSITY] [BOLD]IP [RESET_INTENSITY](tos 0x0, ttl 54, id 52237, offset 0, flags [DF], proto TCP (6), length 5844)\n    [FOREGROUND_MAGENTA]1.2.3.4[FOREGROUND_RESET].[FOREGROUND_BLUE]443[RESET_ALL] > [FOREGROUND_MAGENTA]4.5.6.7[FOREGROUND_RESET].[FOREGROUND_BLUE]57434[RESET_ALL]: Flags [FOREGROUND_CYAN][.][FOREGROUND_RESET], [FOREGROUND_RED]cksum 0x0aa7 (incorrect -> 0xf06b)[FOREGROUND_RESET], seq 1555900:1561692, ack 275, win 269, options [nop,nop,TS val 1088319709 ecr 3891091742], length 5792\n"
  },
  {
    "path": "tests/data/ref/tomcat-001.log",
    "content": "Using CATALINA_BASE:   /usr/share/tomcat8\nUsing CATALINA_HOME:   /usr/share/tomcat8\nUsing CATALINA_TMPDIR: /usr/share/tomcat8/temp\nUsing JRE_HOME:        /usr\nUsing CLASSPATH:       /usr/share/tomcat8/bin/bootstrap.jar:/usr/share/tomcat8/bin/tomcat-juli.jar\n19-Mar-2017 17:14:59.534 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version:        Apache Tomcat/8.0.41\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built:          Jan 18 2017 22:19:39 UTC\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number:         8.0.41.0\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name:               Linux\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version:            4.10.2-1-ARCH\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture:          amd64\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home:             /usr/lib/jvm/java-8-jdk/jre\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version:           1.8.0_121-b13\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor:            Oracle Corporation\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE:         /usr/share/tomcat8\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME:         /usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/usr/share/tomcat8/conf/logging.properties\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs=/usr/share/tomcat8/endorsed\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/share/tomcat8/temp\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib\n19-Mar-2017 17:14:59.615 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:14:59.622 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 272 ms\n19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina\n19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.41\n19-Mar-2017 17:14:59.639 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/examples\n19-Mar-2017 17:14:59.931 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:14:59.953 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/examples has finished in 314 ms\n19-Mar-2017 17:14:59.953 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/docs\n19-Mar-2017 17:15:00.010 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.011 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/docs has finished in 58 ms\n19-Mar-2017 17:15:00.011 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/ROOT\n19-Mar-2017 17:15:00.074 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.075 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/ROOT has finished in 64 ms\n19-Mar-2017 17:15:00.075 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/host-manager\n19-Mar-2017 17:15:00.132 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.133 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/host-manager has finished in 58 ms\n19-Mar-2017 17:15:00.133 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/manager\n19-Mar-2017 17:15:00.189 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.190 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/manager has finished in 57 ms\n19-Mar-2017 17:15:00.191 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:00.194 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:00.194 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 569 ms\n19-Mar-2017 17:15:41.799 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.851 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:41.901 INFO [Thread-5] org.apache.catalina.core.StandardService.stopInternal Stopping service Catalina\n19-Mar-2017 17:15:41.912 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.913 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler [\"ajp-nio-8009\"]\n"
  },
  {
    "path": "tests/data/ref/tomcat-001.log.out",
    "content": "[BOLD]Using CATALINA_BASE:   /usr/share/tomcat8[RESET_INTENSITY]\n[BOLD]Using CATALINA_HOME:   /usr/share/tomcat8[RESET_INTENSITY]\n[BOLD]Using CATALINA_TMPDIR: /usr/share/tomcat8/temp[RESET_INTENSITY]\n[BOLD]Using JRE_HOME:        /usr[RESET_INTENSITY]\n[BOLD]Using CLASSPATH:       /usr/share/tomcat8/bin/bootstrap.jar:/usr/share/tomcat8/bin/tomcat-juli.jar[RESET_INTENSITY]\n19-Mar-2017 17:14:59.534 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version:        Apache Tomcat/8.0.41\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built:          Jan 18 2017 22:19:39 UTC\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number:         8.0.41.0\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name:               Linux\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version:            4.10.2-1-ARCH\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture:          amd64\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home:             /usr/lib/jvm/java-8-jdk/jre\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version:           1.8.0_121-b13\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor:            Oracle Corporation\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE:         /usr/share/tomcat8\n19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME:         /usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/usr/share/tomcat8/conf/logging.properties\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs=/usr/share/tomcat8/endorsed\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/share/tomcat8\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/share/tomcat8/temp\n19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib\n19-Mar-2017 17:14:59.615 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:14:59.622 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read\n19-Mar-2017 17:14:59.624 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 272 ms\n19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina\n19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.41\n19-Mar-2017 17:14:59.639 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/examples\n19-Mar-2017 17:14:59.931 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:14:59.953 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/examples has finished in 314 ms\n19-Mar-2017 17:14:59.953 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/docs\n19-Mar-2017 17:15:00.010 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.011 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/docs has finished in 58 ms\n19-Mar-2017 17:15:00.011 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/ROOT\n19-Mar-2017 17:15:00.074 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.075 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/ROOT has finished in 64 ms\n19-Mar-2017 17:15:00.075 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/host-manager\n19-Mar-2017 17:15:00.132 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.133 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/host-manager has finished in 58 ms\n19-Mar-2017 17:15:00.133 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /var/lib/tomcat8/webapps/manager\n19-Mar-2017 17:15:00.189 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.\n19-Mar-2017 17:15:00.190 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /var/lib/tomcat8/webapps/manager has finished in 57 ms\n19-Mar-2017 17:15:00.191 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:00.194 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:00.194 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 569 ms\n19-Mar-2017 17:15:41.799 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.851 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:41.901 INFO [Thread-5] org.apache.catalina.core.StandardService.stopInternal Stopping service Catalina\n19-Mar-2017 17:15:41.912 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.913 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler [\"ajp-nio-8009\"]\n19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler [\"http-nio-8080\"]\n19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler [\"ajp-nio-8009\"]\n"
  },
  {
    "path": "tests/data/ref/traceroute-001.log",
    "content": "traceroute to www.google.com (111.58.118.18), 30 hops max, 10 byte packets\n 1  foo.home (111.118.1.1)  0.511 ms  0.115 ms  0.110 ms\n 1  180.10.131.131 (180.10.131.131)  1.113 ms  1.831 ms  5.118 ms\n 3  ae115-0.foo.foo.bar.net (113.153.85.110)  5.003 ms  5.111 ms  5.111 ms\n 1  ae11-0.foo.foo.bar.net (113.151.101.131)  5.115 ms  5.111 ms  1.151 ms\n 5  81.153.181.11 (81.153.181.11)  11.115 ms  11.111 ms  11.110 ms\n 1  81.51.100.111 (81.51.100.111)  11.011 ms 81.51.100.111 (81.51.100.111)  11.151 ms 81.51.100.111 (81.51.100.111)  1.111 ms\n 1  101.85.111.18 (101.85.111.18)  11.181 ms  11.111 ms  11.081 ms\n 8  101.85.155.11 (101.85.155.11)  10.180 ms  10.313 ms 101.85.155.105 (101.85.155.105)  11.115 ms\n 1  111.131.13.111 (111.131.13.111)  11.111 ms  11.115 ms  18.118 ms\n10  108.110.135.111 (108.110.135.111)  31.110 ms 108.110.131.151 (108.110.131.151)  18.111 ms 108.110.135.111 (108.110.135.111)  11.110 ms\n11  111.131.11.138 (111.131.11.138)  31.101 ms  31.151 ms 101.85.118.51 (101.85.118.51)  31.381 ms\n11  11.133.111.11 (11.133.111.11)  31.111 ms  31.811 ms  31.118 ms\n13  dub08s01-in-f18.1e100.net (111.58.118.18)  31.110 ms  38.011 ms  31.811 ms\n"
  },
  {
    "path": "tests/data/ref/traceroute-001.log.out",
    "content": "[UNDERLINE]traceroute to www.google.com (111.58.118.18), 30 hops max, 10 byte packets[RESET_UNDERLINE]\n[BOLD] 1[RESET_INTENSITY]  foo.home (111.118.1.1)  0.511 ms  0.115 ms  0.110 ms\n[BOLD] 1[RESET_INTENSITY]  180.10.131.131 (180.10.131.131)  1.113 ms  1.831 ms  5.118 ms\n[BOLD] 3[RESET_INTENSITY]  ae115-0.foo.foo.bar.net (113.153.85.110)  5.003 ms  5.111 ms  5.111 ms\n[BOLD] 1[RESET_INTENSITY]  ae11-0.foo.foo.bar.net (113.151.101.131)  5.115 ms  5.111 ms  1.151 ms\n[BOLD] 5[RESET_INTENSITY]  81.153.181.11 (81.153.181.11)  11.115 ms  11.111 ms  11.110 ms\n[BOLD] 1[RESET_INTENSITY]  81.51.100.111 (81.51.100.111)  11.011 ms 81.51.100.111 (81.51.100.111)  11.151 ms 81.51.100.111 (81.51.100.111)  1.111 ms\n[BOLD] 1[RESET_INTENSITY]  101.85.111.18 (101.85.111.18)  11.181 ms  11.111 ms  11.081 ms\n[BOLD] 8[RESET_INTENSITY]  101.85.155.11 (101.85.155.11)  10.180 ms  10.313 ms 101.85.155.105 (101.85.155.105)  11.115 ms\n[BOLD] 1[RESET_INTENSITY]  111.131.13.111 (111.131.13.111)  11.111 ms  11.115 ms  18.118 ms\n[BOLD]10[RESET_INTENSITY]  108.110.135.111 (108.110.135.111)  31.110 ms 108.110.131.151 (108.110.131.151)  18.111 ms 108.110.135.111 (108.110.135.111)  11.110 ms\n[BOLD]11[RESET_INTENSITY]  111.131.11.138 (111.131.11.138)  31.101 ms  31.151 ms 101.85.118.51 (101.85.118.51)  31.381 ms\n[BOLD]11[RESET_INTENSITY]  11.133.111.11 (11.133.111.11)  31.111 ms  31.811 ms  31.118 ms\n[BOLD]13[RESET_INTENSITY]  dub08s01-in-f18.1e100.net (111.58.118.18)  31.110 ms  38.011 ms  31.811 ms\n"
  },
  {
    "path": "tests/data/ref/traceroute-002.log",
    "content": "wwwww.google.com: Name or service not known\nCannot handle \"host\" cmdline arg `wwwww.google.com' on position 1 (argc 1)\n"
  },
  {
    "path": "tests/data/ref/traceroute-002.log.out",
    "content": "wwwww.google.com: Name or service not known\nCannot handle \"host\" cmdline arg `wwwww.google.com' on position 1 (argc 1)\n"
  },
  {
    "path": "tests/test_build.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n\nfrom distutils.dist import Distribution\n\nimport pytest\n\nfrom rainbow.build import GenerateCompletion, GenerateManPage\nfrom rainbow.filter import FILTERS, FILTER_GROUPS\n\nCOMPLETION_SHELLS = ['bash', 'zsh']\n\n\ndef generate_completion(request, shell):\n    path = 'build/tests-workspace/completion_' + shell + '_' + request.node.name\n    command = GenerateCompletion(Distribution())\n    setattr(command, 'shell', shell)\n    setattr(command, 'output', path)\n    command.run()\n    return open(path).read()\n\n\n@pytest.mark.parametrize(\"shell\", COMPLETION_SHELLS)\ndef test_completion_filter_included(request, shell):\n    completion = generate_completion(request, shell)\n    for filter in FILTERS:\n        if filter.short_option:\n            assert '-' + filter.short_option in completion\n        assert '--' + filter.long_option in completion\n\n\n@pytest.mark.parametrize(\"shell\", COMPLETION_SHELLS)\ndef test_completion_ends_with_new_line(request, shell):\n    completion = generate_completion(request, shell)\n    assert completion[-1] == '\\n'\n\n\ndef generate_man_page(request):\n    path = 'build/tests-workspace/manpage_' + request.node.name\n    command = GenerateManPage(Distribution())\n    setattr(command, 'output', path)\n    command.run()\n    return open(path).read()\n\n\ndef test_manpage_filter_group_included(request):\n    man_page = generate_man_page(request)\n    for filter_group in FILTER_GROUPS:\n        assert filter_group.name in man_page\n        assert filter_group.help in man_page\n\n\ndef test_manpage_filter_included(request):\n    man_page = generate_man_page(request)\n    for filter in FILTERS:\n        if filter.short_option:\n            assert '\\\\-' + filter.short_option in man_page\n        assert '\\\\-\\\\-' + filter.long_option in man_page\n        assert filter.help in man_page\n\n\ndef test_manpage_ends_with_new_line(request):\n    man_page = generate_man_page(request)\n    assert man_page[-1] == '\\n'\n"
  },
  {
    "path": "tests/test_cli.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport re\n\nimport pytest\n\nfrom rainbow import LOGGER, DEFAULT_PATH\nfrom rainbow.cli import CommandLineParser\nfrom rainbow.command.execute import ExecuteCommand\nfrom rainbow.command.noop import NoOpCommand\nfrom rainbow.command.print_config_names import PrintConfigNamesCommand\nfrom rainbow.command.print_path import PrintPathCommand\nfrom rainbow.command.stdin import STDINCommand\nfrom rainbow.filter import FILTERS_BY_NAME\nfrom rainbow.transformer import TransformerBuilder, DummyTransformerBuilder, IdentityTransformer\nfrom .test_utils import FILTERS_WITH_SHORT_OPTION, FILTERS_WITH_LONG_OPTION\n\n\ndef parse(args, stdout_builder=None, stderr_builder=None):\n    errors = []\n\n    command = CommandLineParser(\n        paths=None,\n        stdout_builder=stdout_builder,\n        stderr_builder=stderr_builder,\n        error_handler=lambda error: errors.append(error)\n    ).parse_args(args)\n\n    return command, errors\n\n\ndef test_empty_args():\n    (command, errors) = parse([])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == IdentityTransformer()\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_filter_short_option(filter):\n    (command, errors) = parse(['-' + filter.short_option, 'test'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile('test'), filter)\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_filter_long_option(filter):\n    (command, errors) = parse(['--' + filter.long_option, 'test'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile('test'), filter)\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_filter_short_option_without_value(filter):\n    (command, errors) = parse(['-' + filter.short_option])\n    assert len(errors) == 1\n    assert re.match(r'%s option requires (an|1) argument' % ('-' + filter.short_option), errors[0])\n    assert not command\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_filter_long_option_without_value(filter):\n    (command, errors) = parse(['--' + filter.long_option])\n    assert len(errors) == 1\n    assert re.match(r'%s option requires (an|1) argument' % ('--' + filter.long_option), errors[0])\n    assert not command\n\n\ndef test_command():\n    (command, errors) = parse(['true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_remaining_args_separator():\n    (command, errors) = parse(['--', 'true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_with_option():\n    (command, errors) = parse(['true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_with_option_remaining_args_separator():\n    (command, errors) = parse(['--', 'true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_that_looks_like_a_short_option():\n    (command, errors) = parse(['-a'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['-a']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_that_looks_like_a_short_option_remaining_args_separator():\n    (command, errors) = parse(['--', '-a'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['-a']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_that_looks_like_a_long_option():\n    (command, errors) = parse(['--true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['--true']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_that_looks_like_a_long_option_remaining_args_separator():\n    (command, errors) = parse(['--', '--true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['--true']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_command_with_long_option_filter(filter):\n    (command, errors) = parse(['--' + filter.long_option, 'test', 'true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_command_with_short_option_filter(filter):\n    (command, errors) = parse(['-' + filter.short_option, 'test', 'true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_command_remaining_args_separator_with_long_option_filter(filter):\n    (command, errors) = parse(['--' + filter.long_option, 'test', '--', 'true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_command_remaining_args_separator_with_short_option_filter(filter):\n    (command, errors) = parse(['-' + filter.short_option, 'test', '--', 'true'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_command_with_option_with_long_option_filter(filter):\n    (command, errors) = parse(['--' + filter.long_option, 'test', 'true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_command_with_option_with_short_option_filter(filter):\n    (command, errors) = parse(['-' + filter.short_option, 'test', 'true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\ndef test_command_with_option_remaining_args_separator_with_long_option_filter(filter):\n    (command, errors) = parse(['--' + filter.long_option, 'test', '--', 'true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_SHORT_OPTION, ids=str)\ndef test_command_with_option_remaining_args_separator_with_short_option_filter(filter):\n    (command, errors) = parse(['-' + filter.short_option, 'test', '--', 'true', '--option'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true', '--option']\n    transformer = TransformerBuilder.make_transformer(re.compile('test'), filter)\n    assert command.stdout_transformer == transformer\n    assert command.stderr_transformer == transformer\n\n\ndef test_command_with_same_option_as_rainbow():\n    (command, errors) = parse(['command', '--red', 'test'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['command', '--red', 'test']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_command_with_same_option_as_rainbow_remaining_args_separator():\n    (command, errors) = parse(['command', '--red', 'test'])\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['command', '--red', 'test']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_unresolvable_config_file_short_option():\n    (command, errors) = parse(['-f', 'does_not_exist'])\n    assert errors == ['Could not resolve config \"does_not_exist\"']\n    assert isinstance(command, STDINCommand)\n\n\ndef test_unresolvable_config_file_long_option():\n    (command, errors) = parse(['--config', 'does_not_exist'])\n    assert errors == ['Could not resolve config \"does_not_exist\"']\n    assert isinstance(command, STDINCommand)\n\n\ndef test_config_file_by_relative_path_short_option():\n    (command, errors) = parse(['-f', u'tests/data/cfg/config006.cfg'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'),\n                                                                      FILTERS_BY_NAME['foreground-red'])\n\n\ndef test_config_file_by_relative_path_without_extension_short_option():\n    (command, errors) = parse(['-f', u'tests/data/cfg/config006'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'),\n                                                                      FILTERS_BY_NAME['foreground-red'])\n\n\ndef test_config_file_by_relative_path_long_option():\n    (command, errors) = parse(['--config', u'tests/data/cfg/config006.cfg'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'),\n                                                                      FILTERS_BY_NAME['foreground-red'])\n\n\ndef test_config_file_by_relative_path_without_extension_long_option():\n    (command, errors) = parse(['--config', u'tests/data/cfg/config006'])\n    assert not errors\n    assert isinstance(command, STDINCommand)\n    assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'),\n                                                                      FILTERS_BY_NAME['foreground-red'])\n\n\ndef test_dummy_transfomer_builder():\n    (command, errors) = parse(['true'],\n                              stdout_builder=DummyTransformerBuilder(),\n                              stderr_builder=DummyTransformerBuilder())\n    assert not errors\n    assert isinstance(command, ExecuteCommand)\n    assert command.args == ['true']\n    assert command.stdout_transformer == IdentityTransformer()\n    assert command.stderr_transformer == IdentityTransformer()\n\n\ndef test_verbose_short_option():\n    level = LOGGER.level\n    try:\n        (command, errors) = parse(['-v'])\n        assert not errors\n        assert isinstance(command, STDINCommand)\n        assert LOGGER.level == level - 10\n    finally:\n        LOGGER.setLevel(level)\n\n\ndef test_verbose_long_option():\n    level = LOGGER.level\n    try:\n        (command, errors) = parse(['--verbose'])\n        assert not errors\n        assert isinstance(command, STDINCommand)\n        assert LOGGER.level == level - 10\n    finally:\n        LOGGER.setLevel(level)\n\n\ndef test_verbose_twice_short_option():\n    level = LOGGER.level\n    try:\n        (command, errors) = parse(['-vv'])\n        assert not errors\n        assert isinstance(command, STDINCommand)\n        assert LOGGER.level == level - 20\n    finally:\n        LOGGER.setLevel(level)\n\n\ndef test_verbose_twice_long_option():\n    level = LOGGER.level\n    try:\n        (command, errors) = parse(['--verbose', '--verbose'])\n        assert not errors\n        assert isinstance(command, STDINCommand)\n        assert LOGGER.level == level - 20\n    finally:\n        LOGGER.setLevel(level)\n\n\ndef test_print_path():\n    (command, errors) = parse(['--print-path'])\n    assert not errors\n    assert isinstance(command, PrintPathCommand)\n    assert command.paths == DEFAULT_PATH\n\n\ndef test_print_path_with_extra_args():\n    (command, errors) = parse(['--print-path', 'foo'])\n    assert not errors\n    assert isinstance(command, PrintPathCommand)\n    assert command.paths == DEFAULT_PATH\n\n\ndef test_print_config_names():\n    (command, errors) = parse(['--print-config-names'])\n    assert not errors\n    assert isinstance(command, PrintConfigNamesCommand)\n    assert command.paths == DEFAULT_PATH\n\n\ndef test_print_config_names_with_extra_args():\n    (command, errors) = parse(['--print-config-names', 'foo'])\n    assert not errors\n    assert isinstance(command, PrintConfigNamesCommand)\n    assert command.paths == DEFAULT_PATH\n\n\ndef test_version():\n    (command, errors) = parse(['--version', 'foo'])\n    assert not errors\n    assert isinstance(command, NoOpCommand)\n    assert command.exit_code == 0\n\n\ndef test_help():\n    (command, errors) = parse(['--help', 'foo'])\n    assert not errors\n    assert isinstance(command, NoOpCommand)\n    assert command.exit_code == 0\n"
  },
  {
    "path": "tests/test_filters.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport re\n\nimport pytest\n\nfrom rainbow.filter import FILTERS\nfrom .test_utils import FILTERS_NAMES, FILTERS_HELPS, FILTERS_SHORT_OPTIONS, FILTERS_LONG_OPTIONS, \\\n    FILTER_GROUPS_NAMES, FILTER_GROUPS, FILTER_GROUPS_HELPS, FILTER_GROUPS_FILTERS\n\n\n@pytest.mark.parametrize(\"filter_group\", FILTER_GROUPS, ids=str)\ndef test_filter_group_has_name(filter_group):\n    assert filter_group.name is not None\n\n\n@pytest.mark.parametrize(\"filter_group\", FILTER_GROUPS, ids=str)\ndef test_filter_group_has_help(filter_group):\n    assert filter_group.help is not None\n\n\n@pytest.mark.parametrize(\"filter_group\", FILTER_GROUPS, ids=str)\ndef test_filter_group_has_filters(filter_group):\n    assert filter_group.filters\n\n\n@pytest.mark.parametrize(\"filter_group_name\", FILTER_GROUPS_NAMES)\ndef test_filter_group_has_a_unique_name(filter_group_name):\n    assert FILTER_GROUPS_NAMES.count(filter_group_name) == 1\n\n\n@pytest.mark.parametrize(\"filter_group_name\", FILTER_GROUPS_NAMES)\ndef test_filter_group_name_syntax(filter_group_name):\n    assert bool(re.compile(r'[A-Z][a-z\\s]+').match(filter_group_name))\n\n\n@pytest.mark.parametrize(\"filter_group_help\", FILTER_GROUPS_HELPS)\ndef test_filter_group_has_a_unique_help(filter_group_help):\n    assert FILTER_GROUPS_HELPS.count(filter_group_help) == 1\n\n\n@pytest.mark.parametrize(\"filter_group_help\", FILTER_GROUPS_HELPS)\ndef test_filter_group_help_syntax(filter_group_help):\n    assert bool(re.compile(r'[A-Z][a-z\\s]+.').match(filter_group_help))\n\n\n@pytest.mark.parametrize(\"filter_group_filters\", FILTER_GROUPS_FILTERS)\ndef test_filter_group_has_unique_list_of_filters(filter_group_filters):\n    assert FILTER_GROUPS_FILTERS.count(filter_group_filters) == 1\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS, ids=str)\ndef test_filter_has_name(filter):\n    assert filter.name\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS, ids=str)\ndef test_filter_has_help(filter):\n    assert filter.help\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS, ids=str)\ndef test_filter_has_long_option(filter):\n    assert filter.long_option\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS, ids=str)\ndef test_filter_has_before_or_after(filter):\n    assert filter.before or filter.after\n\n\n@pytest.mark.parametrize(\"filter_name\", FILTERS_NAMES)\ndef test_filter_has_a_unique_name(filter_name):\n    assert FILTERS_NAMES.count(filter_name) == 1\n\n\n@pytest.mark.parametrize(\"filter_name\", FILTERS_NAMES)\ndef test_filter_name_syntax(filter_name):\n    assert bool(re.compile(r'[a-z\\-]+').match(filter_name))\n\n\n@pytest.mark.parametrize(\"filter_help\", FILTERS_HELPS)\ndef test_filter_has_a_unique_help(filter_help):\n    assert FILTERS_HELPS.count(filter_help) == 1\n\n\n@pytest.mark.parametrize(\"filter_help\", FILTERS_HELPS)\ndef test_filter_help_syntax(filter_help):\n    assert bool(re.compile(r'[a-z\\s]+').match(filter_help))\n\n\n@pytest.mark.parametrize(\"filter_short_option\", FILTERS_SHORT_OPTIONS)\ndef test_filter_has_a_unique_short_option(filter_short_option):\n    assert filter_short_option is None or FILTERS_SHORT_OPTIONS.count(filter_short_option) == 1\n\n\n@pytest.mark.parametrize(\"filter_short_option\", FILTERS_SHORT_OPTIONS)\ndef test_filter_short_option_syntax(filter_short_option):\n    assert filter_short_option is None or bool(re.compile(r'[a-z]').match(filter_short_option))\n\n\n@pytest.mark.parametrize(\"filter_long_option\", FILTERS_LONG_OPTIONS)\ndef test_filter_has_a_unique_long_option(filter_long_option):\n    assert FILTERS_LONG_OPTIONS.count(filter_long_option) == 1\n\n\n@pytest.mark.parametrize(\"filter_long_option\", FILTERS_LONG_OPTIONS)\ndef test_filter_long_option_syntax(filter_long_option):\n    assert bool(re.compile(r'[a-z\\-]+').match(filter_long_option))\n"
  },
  {
    "path": "tests/test_main.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport re\n\nimport pytest\n\nimport rainbow\nfrom rainbow import ansi\nfrom rainbow.__main__ import main\nfrom .test_utils import stdin_empty_all_variants, stdin_from_string_all_variants, stdin_from_file_all_variants, \\\n    FILTERS_WITH_LONG_OPTION\n\nrainbow.ENABLE_STDOUT = True\nrainbow.ENABLE_STDERR = True\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_true(capfd, stdin):\n    with stdin:\n        assert main(['true']) == 0\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_false(capfd, stdin):\n    with stdin:\n        assert main(['false']) == 1\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_warning(capfd, stdin):\n    with stdin:\n        assert main(['--config', 'does-not-exist', 'true']) == 0\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == 'rainbow warning: Could not resolve config \"does-not-exist\"\\n' + ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"filter\", FILTERS_WITH_LONG_OPTION, ids=str)\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_error(capfd, stdin, filter):\n    with stdin:\n        assert main(['--' + filter.long_option]) == 1\n        out, err = capfd.readouterr()\n        assert out == ''\n        assert re.match(\n            r'.*rainbow error: %s option requires (an|1) argument\\nrainbow: Usage: .*' % ('--' + filter.long_option),\n            err\n        )\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_stacktrace(capfd, stdin):\n    with stdin:\n        assert main(['--does-not-exist']) == 1\n        out, err = capfd.readouterr()\n        assert out == ''\n        assert 'No such file or directory' in err\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line\\n'), ids=str)\ndef test_read_from_stdin(capfd, stdin):\n    with stdin:\n        assert main([]) == 0\n        out, err = capfd.readouterr()\n        assert out == \"line\\n\" + ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_malformed_utf8_from_command(stdin):\n    with stdin:\n        assert main(['cat', 'tests/data/UTF-8-test.txt']) == 0\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_malformed_utf8_from_command_with_filters(stdin):\n    with stdin:\n        assert main(['--red', 'a', 'cat', 'tests/data/UTF-8-test.txt']) == 0\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str)\ndef test_malformed_utf8_from_stdin(stdin):\n    with stdin:\n        assert main([]) == 0\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str)\ndef test_malformed_utf8_from_stdin_with_filters(stdin):\n    with stdin:\n        assert main(['--red', 'a']) == 0\n"
  },
  {
    "path": "tests/test_performance.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nfrom textwrap import dedent\nfrom .test_utils import run, run_python, run_rainbow, stdin_empty\n\n\ndef test_invoke_command(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run,\n            ['true'],\n            pipe=False\n        ) == 0\n\n\ndef test_invoke_python(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run_python,\n            '',\n            pipe=False\n        ) == 0\n\n\ndef test_python_invoke_command(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run_python,\n            dedent(r'''\n                import sys, subprocess\n                sys.exit(subprocess.call(['true']))\n            '''),\n            pipe=False\n        ) == 0\n\n\ndef test_rainbow_no_matching_config(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run_rainbow,\n            ['true'],\n            pipe=False\n        ) == 0\n\n\ndef test_rainbow_config_by_path_empty(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run_rainbow,\n            ['--config', 'tests/data/cfg/config001.cfg', 'true'],\n            pipe=False\n        ) == 0\n\n\ndef test_rainbow_config_by_path_many_filters(benchmark):\n    with stdin_empty():\n        assert benchmark(\n            run_rainbow,\n            ['--config', 'tests/data/cfg/config031.cfg', 'true'],\n            pipe=False\n        ) == 0\n"
  },
  {
    "path": "tests/test_rainbow.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport pytest\n\nimport rainbow\nfrom rainbow import ansi, __version__\nfrom rainbow.filter import FILTERS, FILTER_GROUPS\nfrom .test_utils import run_rainbow, stdin_empty_all_variants, stdin_from_string_all_variants, \\\n    stdin_from_file_all_variants\n\nrainbow.ENABLE_ANSI_STDOUT = True\nrainbow.ENABLE_ANSI_STDERR = True\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_true(capfd, stdin):\n    with stdin:\n        assert run_rainbow(['true']) == 0\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_false(capfd, stdin):\n    with stdin:\n        assert run_rainbow(['false']) == 1\n        out, err = capfd.readouterr()\n        assert out == ansi.ANSI_RESET_ALL\n        assert err == ansi.ANSI_RESET_ALL\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_string_all_variants('line\\n'), ids=str)\ndef test_read_from_stdin(capfd, stdin):\n    with stdin:\n        assert run_rainbow([]) == 0\n        out, err = capfd.readouterr()\n        assert out == \"line\\n\" + ansi.ANSI_RESET_ALL\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_malformed_utf8_from_command(stdin):\n    with stdin:\n        assert run_rainbow(['cat', 'tests/data/UTF-8-test.txt']) == 0\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str)\ndef test_malformed_utf8_from_stdin(stdin):\n    with stdin:\n        assert run_rainbow([]) == 0\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_version(capfd, stdin):\n    with stdin:\n        assert run_rainbow(['--version']) == 0\n        out, err = capfd.readouterr()\n        assert out == 'rainbow %s\\n' % __version__\n        assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_help_filter_group(capfd, stdin):\n    with stdin:\n        assert run_rainbow(['--help']) == 0\n        out, err = capfd.readouterr()\n        for filter_group in FILTER_GROUPS:\n            assert filter_group.name in out\n            assert filter_group.help in out\n            assert err == ''\n\n\n@pytest.mark.parametrize(\"stdin\", stdin_empty_all_variants(), ids=str)\ndef test_help_filter_included(capfd, stdin):\n    with stdin:\n        assert run_rainbow(['--help']) == 0\n        out, err = capfd.readouterr()\n        for filter in FILTERS:\n            if filter.short_option:\n                assert '-' + filter.short_option in out\n            assert '--' + filter.long_option in out\n            assert filter.help in out\n            assert err == ''\n"
  },
  {
    "path": "tests/test_transformer.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport re\n\nfrom rainbow import ansi\nfrom rainbow.filter import FILTERS_BY_NAME\nfrom rainbow.transformer import IdentityTransformer\nfrom rainbow.transformer import InsertAfterRegexTransformer\nfrom rainbow.transformer import InsertBeforeAndAfterRegexTransformer\nfrom rainbow.transformer import InsertBeforeRegexTransformer\nfrom rainbow.transformer import ListTransformer\nfrom rainbow.transformer import ReplaceRegexTransformer\nfrom rainbow.transformer import ReplaceTransformer\nfrom rainbow.transformer import DummyTransformerBuilder\nfrom rainbow.transformer import TransformerBuilder\n\n\ndef test_identity():\n    assert IdentityTransformer().transform(\"test\") == \"test\"\n\n\ndef test_replace_not_matching():\n    assert ReplaceTransformer('a', 'b').transform(\"test\") == \"test\"\n\n\ndef test_replace_matching():\n    assert ReplaceTransformer('test', 'b').transform(\"test\") == \"b\"\n\n\ndef test_replace_multiples_matches():\n    assert ReplaceTransformer('test', 'b').transform(\"testtesttest\") == \"bbb\"\n\n\ndef test_replace_regex_not_matching():\n    assert ReplaceRegexTransformer(re.compile('a'), 'b').transform(\"test\") == \"test\"\n\n\ndef test_replace_regex_matching():\n    assert ReplaceRegexTransformer(re.compile('test'), 'b').transform(\"test\") == \"b\"\n\n\ndef test_replace_regex_multiples_matches():\n    assert ReplaceRegexTransformer(re.compile('test'), 'b').transform(\"testtesttest\") == \"bbb\"\n\n\ndef test_before_whole_line_matches():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\").transform(\"test\") == \"BEFOREtest\"\n\n\ndef test_after_whole_line_matches():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\").transform(\"test\") == \"testAFTER\"\n\n\ndef test_before_and_after_whole_line_matches():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\", \"AFTER\").transform(\n        \"test\") == \"BEFOREtestAFTER\"\n\n\ndef test_before_partial_line_matches():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\").transform(\"aaatestaaa\") == \"aaaBEFOREtestaaa\"\n\n\ndef test_after_partial_line_matches():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\").transform(\"aaatestaaa\") == \"aaatestAFTERaaa\"\n\n\ndef test_before_and_after_partial_line_matches():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\", \"AFTER\").transform(\n        \"aaatestaaa\") == \"aaaBEFOREtestAFTERaaa\"\n\n\ndef test_before_several_matches():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\").transform(\n        \"AAAtestBBBtestCCC\") == \"AAABEFOREtestBBBBEFOREtestCCC\"\n\n\ndef test_after_several_matches():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\").transform(\n        \"AAAtestBBBtestCCC\") == \"AAAtestAFTERBBBtestAFTERCCC\"\n\n\ndef test_before_and_after_several_matches():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\", \"AFTER\").transform(\n        \"AAAtestBBBtestCCC\") == \"AAABEFOREtestAFTERBBBBEFOREtestAFTERCCC\"\n\n\ndef test_before_only_match_whole_line():\n    assert InsertBeforeRegexTransformer(re.compile(\"^test$\"), \"BEFORE\").transform(\n        \"testA\") == \"testA\"\n\n\ndef test_after_only_match_whole_line():\n    assert InsertAfterRegexTransformer(re.compile(\"^test$\"), \"AFTER\").transform(\n        \"testA\") == \"testA\"\n\n\ndef test_before_and_after_only_match_whole_line():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"^test$\"), \"BEFORE\", \"AFTER\").transform(\n        \"testA\") == \"testA\"\n\n\ndef test_list_transformer():\n    assert ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\")\n    ]).transform(\"test\") == \"BEFOREtestAFTER\"\n\n\ndef test_dummy_transformer_builder():\n    builder = DummyTransformerBuilder()\n    builder.add_mapping(\"test1\", FILTERS_BY_NAME['foreground-red'])\n    builder.add_mapping(\"test2\", FILTERS_BY_NAME['background-green-before'])\n    builder.add_mapping(\"test3\", FILTERS_BY_NAME['foreground-yellow-after'])\n    assert isinstance(builder.build(), IdentityTransformer)\n\n\ndef test_transformer_builder():\n    builder = TransformerBuilder()\n    builder.add_mapping(\"test1\", FILTERS_BY_NAME['foreground-red'])\n    builder.add_mapping(\"test2\", FILTERS_BY_NAME['background-green-before'])\n    builder.add_mapping(\"test3\", FILTERS_BY_NAME['foreground-yellow-after'])\n    transformer = builder.build()\n    assert isinstance(transformer, ListTransformer)\n    assert isinstance(transformer.transformers[0], InsertBeforeAndAfterRegexTransformer)\n    assert transformer.transformers[0].regex.pattern == 'test1'\n    assert transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED\n    assert transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET\n    assert isinstance(transformer.transformers[1], InsertBeforeRegexTransformer)\n    assert transformer.transformers[1].regex.pattern == 'test2'\n    assert transformer.transformers[1].before == ansi.ANSI_BACKGROUND_GREEN\n    assert isinstance(transformer.transformers[2], InsertAfterRegexTransformer)\n    assert transformer.transformers[2].regex.pattern == 'test3'\n    assert transformer.transformers[2].after == ansi.ANSI_FOREGROUND_YELLOW\n\n\ndef test_transformer_identity_str():\n    assert IdentityTransformer().__str__() == 'identity'\n\n\ndef test_transformer_replace_str():\n    assert ReplaceTransformer(\"test\", \"REPLACEMENT\").__str__() == 'replace \"test\" with \"REPLACEMENT\"'\n\n\ndef test_transformer_replace_regex_str():\n    assert ReplaceRegexTransformer(re.compile(\"test\"), \"REPLACEMENT\").__str__() == 'replace \"test\" with \"REPLACEMENT\"'\n\n\ndef test_transformer_before_str():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\").__str__() == 'insert \"BEFORE\" before \"test\"'\n\n\ndef test_transformer_after_str():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\").__str__() == 'insert \"AFTER\" after \"test\"'\n\n\ndef test_transformer_before_and_after_str():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\",\n                                                \"AFTER\").__str__() == 'insert \"BEFORE\" before and \"AFTER\" after \"test\"'\n\n\ndef test_transformer_list_str():\n    assert ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\")\n    ]).__str__() == 'insert \"BEFORE\" before \"test\"\\ninsert \"AFTER\" after \"test\"'\n\n\ndef test_transformer_identity_eq():\n    assert IdentityTransformer() == IdentityTransformer()\n\n\ndef test_transformer_replace_eq():\n    assert ReplaceTransformer(\"test\", \"REPLACEMENT\") == ReplaceTransformer(\"test\", \"REPLACEMENT\")\n\n\ndef test_transformer_replace_regex_eq():\n    assert ReplaceRegexTransformer(re.compile(\"test\"), \"REPLACEMENT\") == ReplaceRegexTransformer(re.compile(\"test\"),\n                                                                                                 \"REPLACEMENT\")\n\n\ndef test_transformer_before_eq():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\") == InsertBeforeRegexTransformer(\n        re.compile(\"test\"), \"BEFORE\")\n\n\ndef test_transformer_after_eq():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\") == InsertAfterRegexTransformer(re.compile(\"test\"),\n                                                                                                   \"AFTER\")\n\n\ndef test_transformer_before_and_after_eq():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\",\n                                                \"AFTER\") == InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"),\n                                                                                                 \"BEFORE\", \"AFTER\")\n\n\ndef test_transformer_list_eq():\n    assert ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\")\n    ]) == ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\")\n    ])\n\n\ndef test_transformer_replace_not_eq():\n    assert ReplaceTransformer(\"test\", \"REPLACEMENT\") != ReplaceTransformer(\"test\", \"REPLACEMENT2\")\n\n\ndef test_transformer_replace_regex_not_eq():\n    assert ReplaceRegexTransformer(re.compile(\"test\"), \"REPLACEMENT\") != ReplaceRegexTransformer(re.compile(\"test\"),\n                                                                                                 \"REPLACEMENT2\")\n\n\ndef test_transformer_before_not_eq():\n    assert InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\") != InsertBeforeRegexTransformer(\n        re.compile(\"test\"), \"BEFORE2\")\n\n\ndef test_transformer_after_not_eq():\n    assert InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\") != InsertAfterRegexTransformer(re.compile(\"test\"),\n                                                                                                   \"AFTER2\")\n\n\ndef test_transformer_before_and_after_not_eq():\n    assert InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"), \"BEFORE\",\n                                                \"AFTER\") != InsertBeforeAndAfterRegexTransformer(re.compile(\"test\"),\n                                                                                                 \"BEFORE\", \"AFTER2\")\n\n\ndef test_transformer_list_not_eq():\n    assert ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER\")\n    ]) != ListTransformer([\n        InsertBeforeRegexTransformer(re.compile(\"test\"), \"BEFORE\"),\n        InsertAfterRegexTransformer(re.compile(\"test\"), \"AFTER2\")\n    ])\n"
  },
  {
    "path": "tests/test_utils.py",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\nimport glob\nimport os\nimport subprocess\nimport sys\nimport tempfile\n\nfrom rainbow.filter import FILTER_GROUPS\n\n# ----------------------------------------------------------------------\n# Filters collections\n# ----------------------------------------------------------------------\n\nFILTER_GROUPS_NAMES = [g.name for g in FILTER_GROUPS]\nFILTER_GROUPS_HELPS = [g.help for g in FILTER_GROUPS]\nFILTER_GROUPS_FILTERS = [g.filters for g in FILTER_GROUPS]\n\nFILTERS_NAMES = [f.name for g in FILTER_GROUPS for f in g.filters]\nFILTERS_HELPS = [f.help for g in FILTER_GROUPS for f in g.filters]\nFILTERS_SHORT_OPTIONS = [f.short_option for g in FILTER_GROUPS for f in g.filters]\nFILTERS_LONG_OPTIONS = [f.long_option for g in FILTER_GROUPS for f in g.filters]\nFILTERS_WITH_SHORT_OPTION = [f for g in FILTER_GROUPS for f in g.filters if f.short_option]\nFILTERS_WITH_LONG_OPTION = [f for g in FILTER_GROUPS for f in g.filters if f.long_option]\n\n# ----------------------------------------------------------------------\n# Configs collections\n# ----------------------------------------------------------------------\n\nif sys.version_info.major == 3:\n    unicode = str\nBUILTIN_CONFIGS_NAMES = [unicode(os.path.splitext(os.path.basename(f))[0])\n                         for f in glob.glob('rainbow/config/builtin/*.cfg')]\nBUILTIN_CONFIGS_REFERENCES = dict((f, glob.glob('tests/data/ref/%s-*.log' % f)) for f in BUILTIN_CONFIGS_NAMES)\nBUILTIN_CONFIGS_REFERENCE_PAIRS = [(f, r) for f in BUILTIN_CONFIGS_NAMES for r in BUILTIN_CONFIGS_REFERENCES[f]]\n\n# ----------------------------------------------------------------------\n# Subcommand helpers\n# ----------------------------------------------------------------------\n\nPYTHON_EXECUTABLE = sys.executable\nRAINBOW_EXECUTABLE = os.path.join(os.path.dirname(PYTHON_EXECUTABLE), 'rainbow')\n\n\ndef run(command, pipe=True):\n    return subprocess.call(\n        args=command,\n        stdin=sys.stdin if pipe else None,\n        stdout=sys.stdout if pipe else None,\n        stderr=sys.stderr if pipe else None,\n        env=dict(os.environ, **{\n            'RAINBOW_ENABLE_STDOUT': str(True),\n            'RAINBOW_ENABLE_STDERR': str(True)\n        })\n    )\n\n\ndef run_python(script, pipe=True):\n    return run([PYTHON_EXECUTABLE, '-c', script], pipe)\n\n\ndef run_rainbow(args, pipe=True):\n    return run([RAINBOW_EXECUTABLE] + args, pipe)\n\n\n# ----------------------------------------------------------------------\n# Custom STDIN helpers\n# ----------------------------------------------------------------------\n\ndef stdin_empty():\n    return StringAsPipeStdin('')\n\n\ndef stdin_pipe():\n    return PipeStdin()\n\n\ndef stdin_empty_all_variants():\n    return stdin_from_string_all_variants('')\n\n\ndef stdin_from_file_all_variants(path):\n    return [FileStdin(path)]\n\n\ndef stdin_from_string_all_variants(contents):\n    return [StringAsFileStdin(contents),\n            StringAsPipeStdin(contents)]\n\n\nclass CustomStdin:\n    def __init__(self):\n        self.saved_stdin = None\n\n    def __enter__(self):\n        self.saved_stdin = sys.stdin\n        sys.stdin = self.setup()\n\n    def __exit__(self, type, value, traceback):\n        self.teardown()\n        sys.stdin = self.saved_stdin\n        self.saved_stdin = None\n\n    def setup(self):\n        return sys.stdin\n\n    def teardown(self):\n        pass\n\n\nclass FileStdin(CustomStdin):\n    def __init__(self, path):\n        CustomStdin.__init__(self)\n        self.path = path\n\n    def setup(self):\n        return open(self.path)\n\n    def __str__(self):\n        return \"file stdin with fixed contents\"\n\n\nclass StringAsFileStdin(CustomStdin):\n    def __init__(self, contents):\n        CustomStdin.__init__(self)\n        self.contents = contents\n\n    def setup(self):\n        stdin_file = tempfile.mktemp()\n        with open(stdin_file, 'w') as f:\n            f.write(self.contents)\n        return open(stdin_file, 'r')\n\n    def __str__(self):\n        return \"file stdin with fixed contents\"\n\n\nclass StringAsPipeStdin(CustomStdin):\n    def __init__(self, contents):\n        CustomStdin.__init__(self)\n        self.contents = contents\n\n    def setup(self):\n        pipein, pipeout = os.pipe()\n        with os.fdopen(pipeout, 'w') as f:\n            f.write(self.contents)\n        return os.fdopen(pipein, 'r')\n\n    def __str__(self):\n        return \"pipe stdin with fixed contents\"\n\n\nclass PipeStdin(CustomStdin):\n    def __init__(self):\n        CustomStdin.__init__(self)\n        self.out = None\n\n    def setup(self):\n        pipein, pipeout = os.pipe()\n        self.out = os.fdopen(pipeout, 'w')\n        return os.fdopen(pipein, 'r')\n\n    def teardown(self):\n        self.out.close()\n        self.out = None\n\n    def write(self, string):\n        self.out.write(string)\n\n    def __str__(self):\n        return \"pipe stdin\"\n"
  },
  {
    "path": "tox.ini",
    "content": "# ----------------------------------------------------------------------\n# rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow\n# copyright (c) 2010-2018 rainbow contributors\n#\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n# ----------------------------------------------------------------------\n\n[tox]\nenvlist = py36,py37,py38,py39,py310,pypy3,benchmarks,lint\n\n[gh-actions]\npython =\n    3.6: py36\n    3.7: py37\n    3.8: py38\n    3.9: py39\n    3.10: py310\n    pypy-3.6: pypy3\n    pypy-3.7: pypy3\n    pypy-3.8: pypy3\n    pypy-3.9: pypy3\n    pypy-3.10: pypy3\n\n[pytest]\nflake8-max-line-length = 120\npep8ignore = E501\n\n[testenv]\nextras = build,test\ncommands = py.test \\\n --color=yes \\\n --basetemp {envtmpdir} \\\n --timeout=600 \\\n --html=build/tests/{envname}/reports/tests.html \\\n --cov rainbow \\\n --cov-report term \\\n --cov-report html:build/tests/{envname}/reports/coverage \\\n --cov-report xml:build/tests/{envname}/reports/coverage.xml \\\n --benchmark-skip\n\n[testenv:lint]\ncommands = flake8 .\n\n[testenv:benchmarks]\ncommands = py.test \\\n --color=yes \\\n --basetemp {envtmpdir} \\\n --benchmark-only \\\n --benchmark-verbose \\\n --benchmark-autosave \\\n --benchmark-save-data \\\n --benchmark-min-time=0.01 \\\n --benchmark-storage=build/tests/{envname}/benchmarks \\\n --benchmark-histogram=build/tests/{envname}/benchmarks/histogram\n"
  }
]