Repository: nicoulaj/rainbow Branch: master Commit: 379c9b0333df Files: 150 Total size: 1.4 MB Directory structure: gitextract_f35q6phd/ ├── .codeclimate.yml ├── .coveragerc ├── .editorconfig ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── benchmarks.yml │ ├── lint.yml │ ├── packages.yml │ └── tests.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYING ├── MANIFEST.in ├── README.rst ├── rainbow/ │ ├── __init__.py │ ├── __main__.py │ ├── ansi.py │ ├── build.py │ ├── cli.py │ ├── command/ │ │ ├── __init__.py │ │ ├── execute.py │ │ ├── noop.py │ │ ├── print_config_names.py │ │ ├── print_path.py │ │ └── stdin.py │ ├── config/ │ │ ├── __init__.py │ │ ├── builtin/ │ │ │ ├── df.cfg │ │ │ ├── diff.cfg │ │ │ ├── env.cfg │ │ │ ├── host.cfg │ │ │ ├── ifconfig.cfg │ │ │ ├── java-stack-trace.cfg │ │ │ ├── jboss.cfg │ │ │ ├── md5sum.cfg │ │ │ ├── mvn.cfg │ │ │ ├── ping.cfg │ │ │ ├── tcpdump.cfg │ │ │ ├── tomcat.cfg │ │ │ └── traceroute.cfg │ │ ├── loader.py │ │ ├── locator.py │ │ └── parser.py │ ├── filter.py │ └── transformer.py ├── scripts/ │ └── rainbow ├── setup.cfg ├── setup.py ├── templates/ │ ├── completion.bash │ ├── completion.zsh │ └── rainbow.man ├── tests/ │ ├── __init__.py │ ├── command/ │ │ ├── __init__.py │ │ ├── test_execute.py │ │ ├── test_noop.py │ │ ├── test_print_config_names.py │ │ ├── test_print_path.py │ │ └── test_stdin.py │ ├── config/ │ │ ├── __init__.py │ │ ├── test_builtin.py │ │ ├── test_loader.py │ │ ├── test_locator.py │ │ └── test_parser.py │ ├── data/ │ │ ├── UTF-8-test.txt │ │ ├── cfg/ │ │ │ ├── config001.cfg │ │ │ ├── config002.cfg │ │ │ ├── config003.cfg │ │ │ ├── config004.cfg │ │ │ ├── config005.cfg │ │ │ ├── config006.cfg │ │ │ ├── config007.cfg │ │ │ ├── config008.cfg │ │ │ ├── config009.cfg │ │ │ ├── config010.cfg │ │ │ ├── config011.cfg │ │ │ ├── config012.cfg │ │ │ ├── config013.cfg │ │ │ ├── config014.cfg │ │ │ ├── config015.cfg │ │ │ ├── config016.cfg │ │ │ ├── config017.cfg │ │ │ ├── config018.cfg │ │ │ ├── config019.cfg │ │ │ ├── config020.cfg │ │ │ ├── config021.cfg │ │ │ ├── config022.cfg │ │ │ ├── config023.cfg │ │ │ ├── config024.cfg │ │ │ ├── config025.cfg │ │ │ ├── config026.cfg │ │ │ ├── config027.cfg │ │ │ ├── config028.cfg │ │ │ ├── config029.cfg │ │ │ ├── config030.cfg │ │ │ └── config031.cfg │ │ └── ref/ │ │ ├── df-001.log │ │ ├── df-001.log.out │ │ ├── df-002.log │ │ ├── df-002.log.out │ │ ├── diff-001.log │ │ ├── diff-001.log.out │ │ ├── diff-002.log │ │ ├── diff-002.log.out │ │ ├── diff-003.log │ │ ├── diff-003.log.out │ │ ├── env-001.log │ │ ├── env-001.log.out │ │ ├── host-001.log │ │ ├── host-001.log.out │ │ ├── host-002.log │ │ ├── host-002.log.out │ │ ├── ifconfig-001.log │ │ ├── ifconfig-001.log.out │ │ ├── ifconfig-002.log │ │ ├── ifconfig-002.log.out │ │ ├── java-stack-trace-001.log │ │ ├── java-stack-trace-001.log.out │ │ ├── jboss-001.log │ │ ├── jboss-001.log.out │ │ ├── md5sum-001.log │ │ ├── md5sum-001.log.out │ │ ├── md5sum-002.log │ │ ├── md5sum-002.log.out │ │ ├── mvn-001.log │ │ ├── mvn-001.log.out │ │ ├── mvn-002.log │ │ ├── mvn-002.log.out │ │ ├── mvn-003.log │ │ ├── mvn-003.log.out │ │ ├── mvn-004.log │ │ ├── mvn-004.log.out │ │ ├── ping-001.log │ │ ├── ping-001.log.out │ │ ├── ping-002.log │ │ ├── ping-002.log.out │ │ ├── tcpdump-001.log │ │ ├── tcpdump-001.log.out │ │ ├── tomcat-001.log │ │ ├── tomcat-001.log.out │ │ ├── traceroute-001.log │ │ ├── traceroute-001.log.out │ │ ├── traceroute-002.log │ │ └── traceroute-002.log.out │ ├── test_build.py │ ├── test_cli.py │ ├── test_filters.py │ ├── test_main.py │ ├── test_performance.py │ ├── test_rainbow.py │ ├── test_transformer.py │ └── test_utils.py └── tox.ini ================================================ FILE CONTENTS ================================================ ================================================ FILE: .codeclimate.yml ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- --- engines: duplication: enabled: true config: languages: - python fixme: enabled: true radon: enabled: true config: python_version: 2 ratings: paths: - "**.py" exclude_paths: - tests/ ================================================ FILE: .coveragerc ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [report] exclude_lines = no cover if __name__ == .__main__.: def __repr__ ================================================ FILE: .editorconfig ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- root = true [*] charset = UTF-8 end_of_line = lf max_line_length=120 insert_final_newline = true trim_trailing_whitespace = true [*.py] indent_style = space indent_size = 4 [tox.ini] indent_size = 1 ================================================ FILE: .github/dependabot.yml ================================================ version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: weekly - package-ecosystem: pip directory: "/" schedule: interval: weekly ================================================ FILE: .github/workflows/benchmarks.yml ================================================ name: Benchmarks on: [push, pull_request] jobs: benchmark: name: 'benchmarks' runs-on: 'ubuntu-latest' steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox - name: Run benchmarks run: tox -e benchmarks ================================================ FILE: .github/workflows/lint.yml ================================================ name: Lint on: [push, pull_request] jobs: lint: name: 'lint' runs-on: 'ubuntu-latest' steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox - name: Run checks run: tox -e lint ================================================ FILE: .github/workflows/packages.yml ================================================ name: Packages on: push: pull_request: release: types: [released] jobs: python-packages: name: 'wheel' runs-on: 'ubuntu-latest' steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip pip install wheel - name: Build source distribution and wheel package run: python setup.py sdist bdist_wheel - name: Publish on PyPI repository if: github.event_name == 'release' && github.event.action == 'released' uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} ================================================ FILE: .github/workflows/tests.yml ================================================ name: Tests on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: os: [ 'ubuntu-latest', 'macos-latest' ] python: [ '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8' ] runs-on: ${{ matrix.os }} name: ${{ matrix.os }} - python ${{ matrix.python }} steps: - name: Checkout uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - name: Set up pip cache uses: actions/cache@v2 with: path: ~/.cache/pip key: ${{ matrix.os }}-pip - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox tox-gh-actions - name: Run tests run: tox - name: Publish code coverage to CodeClimate uses: paambaati/codeclimate-action@v3.0.0 if: matrix.os == 'ubuntu-latest' && matrix.python == '3.10' continue-on-error: true with: coverageLocations: ${{github.workspace}}/build/tests/*/reports/coverage.xml:coverage.py env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} ================================================ FILE: .gitignore ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- *.pyc *.pyo *.pyd *$py.class __pycache__/ build/ dist/ MANIFEST *.egg-info/ *.egg/ .tox/ .cache/ .idea/ *.ipr *.iws .coverage .benchmarks .coverage.* out/ .pytest_cache/ *.rpm *.deb *.tar.* ================================================ FILE: CONTRIBUTING.md ================================================ Contributing ============ Contributions are welcome, please take a look at the [issues list](https://github.com/nicoulaj/rainbow/issues). Development environment ----------------------- This project uses a standard layout. Here are some example steps to setup your development environment using [pew](https://github.com/berdario/pew): 1. Checkout project sources: git clone https://github.com/nicoulaj/rainbow.git cd rainbow 2. To run tests, rainbow uses [tox](https://tox.readthedocs.io): tox This will run all the tests, for all python versions. To run tests for one specific version: tox -e py27 After you run tests, results (test, coverage and benchmark HTML reports) will be available in the `build/tests` directory. Commands wishlist ----------------- This table contains an inventory of commands we could potentially support in rainbow, with their current status. If you want to request and/or plan to working on one, please send a pull request to update this table. | command / format | rainbow support | third party support | status | | -------------------- | -------------------- | ---------------------------------------- | ------------------------------------ | | acpi | :x: | cope | | | ant | :x: | builtin color support, colorlogs | :ok: | | apm | :x: | ccze | | | arp | :x: | cope, cwrapper | | | arping | :x: | cwrapper | | | auth.log | :x: | cwrapper | | | blockdev | :x: | cwrapper | | | cal | :x: | cwrapper | | | cc | :x: | cope | rainbow config needed | | cksum | :x: | cwrapper | rainbow config needed | | clock | :x: | cwrapper | | | configure | :x: | cwrapper, grc | rainbow config needed | | cpuinfo | :x: | cwrapper | rainbow config needed | | crontab | :x: | cwrapper | | | cvs | :x: | colorcvs, grc | | | date | :x: | cwrapper | | | df | :heavy_check_mark: | dfc, cope, cwrapper, grc | :ok: | | diff | :heavy_check_mark: | colordiff, grc, cwrapper | :ok: | | dig | :x: | cwrapper | rainbow config needed | | distcc | :x: | ccze | | | dmesg | :x: | cwrapper | | | dpkg | :x: | ccze | | | dprofpp | :x: | cope | | | du | :x: | cwrapper | | | env | :heavy_check_mark: | cwrapper | :ok: | | esperanto | :x: | grc | | | example | :x: | colorlogs | | | exim | :x: | ccze | | | fdisk | :x: | cope | | | fetchmail | :x: | ccze | | | figlet | :x: | cwrapper | | | file | :x: | cwrapper | | | find | :x: | cwrapper | rainbow config needed | | finger | :x: | cwrapper | | | free | :x: | cwrapper, cope | rainbow config needed | | fstab | :x: | cwrapper | | | ftpstats | :x: | ccze | | | fuser | :x: | cwrapper | | | gcc | :x: | colorgcc, cope, cwrapper, grc | | | g++ | :x: | cwrapper, cope | | | git | :x: | partial builtin color support, colorlogs | | | group | :x: | cwrapper | | | groups | :x: | cwrapper | | | hdparm | :x: | cwrapper | | | hexdump | :x: | cwrapper | | | host | :heavy_check_mark: | cwrapper | :ok: | | hosts | :x: | cwrapper | | | httpd | :x: | ccze | | | icecast | :x: | ccze | | | id | :x: | cope, cwrapper | rainbow config needed | | ifconfig | :heavy_check_mark: | cwrapper, cope | :ok: | | inittab | :x: | cwrapper | | | iptables | :x: | cwrapper | | | irclog | :x: | grc | | | java stack traces | :heavy_check_mark: | | :ok: | | last | :x: | cwrapper | | | lastlog | :x: | cwrapper | | | ldap | :x: | grc | | | log | :x: | grc | | | lsattr | :x: | cwrapper | | | ls | :x: | dircolors, cope | | | lsmod | :x: | cwrapper | | | lsof | :x: | cwrapper | rainbow config needed | | lspci | :x: | cope | | | lsusb | :x: | cope | | | ltrace-color | :x: | cwrapper | | | make | :x: | colormake, cwrapper, cope | rainbow config needed | | md5sum | :heavy_check_mark: | cwrapper, cope | :ok: | | meminfo | :x: | cwrapper | | | messages | :x: | cwrapper | | | mount | :x: | grc, cwrapper | rainbow config needed | | mpc | :x: | cope | | | mpg123 | :x: | cwrapper | | | mvn | :heavy_check_mark: | colorslogs | :ok: | | netstat | :x: | grc, cope, cwrapper | rainbow config needed | | nfsstat | :x: | cwrapper | rainbow config needed | | nmap | :x: | cwrapper, cope | | | nm | :x: | cope | | | nocope | :x: | cope | | | nslookup | :x: | cwrapper | | | objdump | :x: | cwrapper | | | oops | :x: | ccze | | | passwd | :x: | cwrapper | | | php | :x: | ccze | | | ping | :heavy_check_mark: | grc, cwrapper, cope | :ok: | | pmap | :x: | cwrapper, cope | | | pmap_dump | :x: | cwrapper | | | postfix | :x: | ccze | | | praliases | :x: | cwrapper | | | procmail | :x: | ccze | | | proftpd | :x: | grc, ccze | | | ps | :x: | cwrapper, cope | rainbow config needed | | pstree | :x: | cwrapper | rainbow config needed | | quota | :x: | cwrapper | | | quotastats | :x: | cwrapper | | | readelf | :x: | cope | | | resolv | :x: | cwrapper | | | route | :x: | cwrapper, cope | | | routel | :x: | cwrapper | | | screen | :x: | cope | | | sdiff | :x: | cwrapper | | | services | :x: | cwrapper | | | sha1sum | :x: | cope | rainbow config needed | | sha224sum | :x: | cope | rainbow config needed | | sha256sum | :x: | cope | rainbow config needed | | sha384sum | :x: | cope | rainbow config needed | | sha512sum | :x: | cope | rainbow config needed | | shasum | :x: | cope | rainbow config needed | | showmount | :x: | cwrapper | | | smbstatus | :x: | cwrapper | | | socklist | :x: | cope | | | squid | :x: | ccze | | | stat | :x: | cwrapper, cope | | | strace | :x: | cope | rainbow config needed | | sulog | :x: | ccze | | | super | :x: | ccze | | | svn | :x: | colorsvn | | | sysctl | :x: | cwrapper | | | syslog | :x: | cwrapper, ccze | | | tar | :x: | cwrapper | | | tcpdump | :x: | cwrapper, cope | | | tomcat | :heavy_check_mark: | | :ok: | | tracepath | :x: | cwrapper, cope | | | traceroute | :heavy_check_mark: | cope, grc, cwrapper | :ok: | | ulogd | :x: | ccze | | | umount | :x: | cwrapper | | | uname | :x: | cwrapper | | | uptime | :x: | cwrapper | | | users | :x: | cwrapper | | | vmstat | :x: | cwrapper | | | vsftpd | :x: | ccze | | | wc | :x: | cwrapper | | | w | :x: | cwrapper, cope | | | wdiff | :x: | grc | | | wget | :x: | cope | | | whereis | :x: | cwrapper | | | who | :x: | cwrapper, cope | | | xferlog | :x: | cwrapper, ccze | | | xrandr | :x: | cope | | ================================================ FILE: COPYING ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: MANIFEST.in ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- include README.rst include COPYING include templates/* include scripts/* include rainbow/config/builtin/* ================================================ FILE: README.rst ================================================ rainbow ======= .. image:: https://img.shields.io/github/tag/nicoulaj/rainbow.svg :target: https://pypi.org/project/rainbow :alt: last release .. image:: https://pepy.tech/badge/rainbow :target: https://pypi.org/project/rainbow :alt: downloads .. image:: https://img.shields.io/pypi/pyversions/rainbow.svg :target: https://pypi.org/project/rainbow :alt: python versions .. image:: https://github.com/nicoulaj/rainbow/actions/workflows/tests.yml/badge.svg :target: https://github.com/nicoulaj/rainbow/actions :alt: continuous integration .. image:: https://api.codeclimate.com/v1/badges/724f29330eb898c7516b/test_coverage :target: https://codeclimate.com/github/nicoulaj/rainbow/test_coverage :alt: test Coverage .. image:: https://badges.gitter.im/nicoulaj/rainbow.svg :target: https://gitter.im/nicoulaj/rainbow :alt: gitter chat ---- **Easily colorize commands output using patterns.** :: rainbow [ --COLOR=PATTERN ... | --conf CONF ] COMMAND Examples -------- Using the command line ~~~~~~~~~~~~~~~~~~~~~~ Prepend ``rainbow`` with ``--COLOR=PATTERN`` associations to your command, for example: - Tail some log file with lines containing ``ERROR`` in red: :: rainbow --red=ERROR tail -f /var/log/my.log - You can also pipe commands output into rainbow: :: tail -f /var/log/my.log | rainbow --red=ERROR Using configs ~~~~~~~~~~~~~ Rainbow 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: - Colorize the ``diff`` command output using the builtin config: :: rainbow diff file1 file2 - Start my custom command, using ``~/.rainbow/mycommand.cfg``: :: rainbow mycommand The syntax for writing configs is straightforward, see the `builtin configs `_ for examples. See also the `commands support table `_. Installation ------------ Using packages ~~~~~~~~~~~~~~ ============================================ ============================================ System Installation instructions ============================================ ============================================ Debian / RPM based `rainbow repository `_ (`sources here `_) Arch Linux `AUR/rainbow `_ / `AUR/rainbow-git `_ pip `PyPI: rainbow `_ ============================================ ============================================ Building from sources ~~~~~~~~~~~~~~~~~~~~~ You can build from sources this way: :: git clone git://github.com/nicoulaj/rainbow.git cd rainbow python setup.py build install --user Contributing ------------ Contributions are welcome, please see `CONTRIBUTING `_. License ------- This project is a fork of `Linibou's colorex `_. It is is released under the terms of the `GNU General Public License `_. See ``COPYING`` for details. ================================================ FILE: rainbow/__init__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import sys import logging import os __prog__ = __name__ __author__ = 'Julien Nicoulaud' __email__ = 'julien.nicoulaud@gmail.com' __url__ = 'https://github.com/nicoulaj/rainbow' __copyright__ = 'copyright 2010-2018 rainbow contributors' __license__ = 'GPLv3' __description__ = 'Colorize commands output using patterns.' __version__ = '3.0.0-dev' LOGGER = logging.getLogger(__prog__) DEFAULT_PATH = [ os.environ.get('RAINBOW_CONFIGS'), os.path.join(os.environ.get('XDG_CONFIG_HOME') or os.path.expanduser('~/.config'), __prog__), os.path.join(os.path.expanduser('~'), '.' + __prog__), os.path.join(os.sep, 'etc', __prog__), os.path.join(os.sep, os.path.dirname(__file__), 'config', 'builtin') ] ENABLE_STDOUT = bool(os.environ.get('RAINBOW_ENABLE_STDOUT', sys.stdout.isatty())) ENABLE_STDERR = bool(os.environ.get('RAINBOW_ENABLE_STDERR', sys.stderr.isatty())) ================================================ FILE: rainbow/__main__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import sys import logging from logging import Formatter import rainbow from . import LOGGER, DEFAULT_PATH from .cli import CommandLineParser from .transformer import DummyTransformerBuilder def main(args=None): logger_console_handler = logging.StreamHandler(sys.stderr) try: logger_console_handler.setFormatter(Formatter("%(levelname)s %(message)s")) logging.addLevelName(logging.CRITICAL, 'rainbow error:') logging.addLevelName(logging.FATAL, 'rainbow error:') logging.addLevelName(logging.ERROR, 'rainbow error:') logging.addLevelName(logging.WARNING, 'rainbow warning:') logging.addLevelName(logging.INFO, 'rainbow:') logging.addLevelName(logging.DEBUG, 'rainbow:') logging.addLevelName(logging.NOTSET, 'rainbow:') LOGGER.addHandler(logger_console_handler) LOGGER.setLevel(logging.WARNING) errors = [] parser = CommandLineParser( paths=DEFAULT_PATH, stdout_builder=None if rainbow.ENABLE_STDOUT else DummyTransformerBuilder(), stderr_builder=None if rainbow.ENABLE_STDERR else DummyTransformerBuilder(), error_handler=errors.append ) command = parser.parse_args(args) if command: for message in errors: LOGGER.warning(message) return command.run() else: for message in errors: LOGGER.error(message) LOGGER.setLevel(logging.INFO) LOGGER.info(parser.get_usage()) return 1 except Exception as e: LOGGER.exception(e) return 1 finally: LOGGER.removeHandler(logger_console_handler) LOGGER.setLevel(logging.INFO) ================================================ FILE: rainbow/ansi.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ANSI_FOREGROUND_RED = chr(27) + '[31m' ANSI_FOREGROUND_LIGHT_RED = chr(27) + '[91m' ANSI_FOREGROUND_GREEN = chr(27) + '[32m' ANSI_FOREGROUND_LIGHT_GREEN = chr(27) + '[92m' ANSI_FOREGROUND_YELLOW = chr(27) + '[33m' ANSI_FOREGROUND_LIGHT_YELLOW = chr(27) + '[93m' ANSI_FOREGROUND_BLUE = chr(27) + '[34m' ANSI_FOREGROUND_LIGHT_BLUE = chr(27) + '[94m' ANSI_FOREGROUND_MAGENTA = chr(27) + '[35m' ANSI_FOREGROUND_CYAN = chr(27) + '[36m' ANSI_FOREGROUND_LIGHT_CYAN = chr(27) + '[96m' ANSI_FOREGROUND_RESET = chr(27) + '[39m' ANSI_BACKGROUND_RED = chr(27) + '[41m' ANSI_BACKGROUND_LIGHT_RED = chr(27) + '[101m' ANSI_BACKGROUND_GREEN = chr(27) + '[42m' ANSI_BACKGROUND_LIGHT_GREEN = chr(27) + '[102m' ANSI_BACKGROUND_YELLOW = chr(27) + '[43m' ANSI_BACKGROUND_LIGHT_YELLOW = chr(27) + '[103m' ANSI_BACKGROUND_BLUE = chr(27) + '[44m' ANSI_BACKGROUND_LIGHT_BLUE = chr(27) + '[104m' ANSI_BACKGROUND_MAGENTA = chr(27) + '[45m' ANSI_BACKGROUND_CYAN = chr(27) + '[46m' ANSI_BACKGROUND_LIGHT_CYAN = chr(27) + '[106m' ANSI_BACKGROUND_RESET = chr(27) + '[49m' ANSI_BOLD = chr(27) + '[1m' ANSI_FAINT = chr(27) + '[2m' ANSI_ITALIC = chr(27) + '[3m' ANSI_UNDERLINE = chr(27) + '[4m' ANSI_UNDERLINE_DOUBLE = chr(27) + '[21m' ANSI_BLINK = chr(27) + '[5m' ANSI_BLINK_RAPID = chr(27) + '[6m' ANSI_NEGATIVE = chr(27) + '[7m' ANSI_HIDE = chr(27) + '[8m' ANSI_RESET_INTENSITY = chr(27) + '[22m' ANSI_RESET_ITALIC = chr(27) + '[23m' ANSI_RESET_UNDERLINE = chr(27) + '[24m' ANSI_RESET_BLINK = chr(27) + '[25m' ANSI_RESET_NEGATIVE = chr(27) + '[27m' ANSI_RESET_HIDE = chr(27) + '[28m' ANSI_RESET_ALL = chr(27) + '[0m' ================================================ FILE: rainbow/build.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import errno import gzip import logging import os import shutil from distutils.command.build import build from distutils.command.clean import clean from distutils.core import Command from distutils.dir_util import remove_tree from distutils.errors import DistutilsOptionError from .filter import FILTERS, FILTER_GROUPS class Build(build): # no cover def run(self): self.run_command("build_completion_bash") self.run_command("build_completion_zsh") self.run_command("build_man_page") build.run(self) class Clean(clean): # no cover def __init__(self, dist): clean.__init__(self, dist) self.user_options += [ ('paths=', 'p', 'paths'), ] def initialize_options(self): super(clean, self).initialize_options() self.paths = None def finalize_options(self): clean.finalize_options(self) if self.paths is None: # no cover raise DistutilsOptionError('"paths" option is required') def run(self): clean.run(self) if self.all: for path in [path.strip() for path in self.paths.split(',')]: if os.path.isdir(path): remove_tree(path) elif os.path.isfile(path): self.announce("removing '%s'" % path) os.remove(path) else: self.announce("'%s' does not exist -- can't clean it" % path) class GenerateCompletion(Command): description = 'Generate shell completion script.' user_options = [ ('shell=', 'S', 'shell (bash or zsh)'), ('output=', 'O', 'output file') ] def initialize_options(self): self.shell = None self.output = None def finalize_options(self): if self.shell is None: # no cover raise DistutilsOptionError('"shell" option is required') if self.output is None: # no cover raise DistutilsOptionError('"output" option is required') def run(self): self.announce('generating %s completion -> %s' % (self.shell, self.output)) makeparentdirs(self.output) try: from jinja2 import Environment, FileSystemLoader Environment(loader=FileSystemLoader('templates')) \ .get_template('completion.%s' % self.shell) \ .stream(filters=FILTERS) \ .dump(self.output) except ImportError: logging.warning('Jinja is not installed, skipping %s completion generation' % self.shell) class GenerateManPage(Command): description = 'Generate man page.' user_options = [ ('output=', 'O', 'output file') ] def initialize_options(self): self.output = None def finalize_options(self): if self.output is None: # no cover raise DistutilsOptionError('"output" option is required') def run(self): self.announce('generating man page -> %s' % self.output) makeparentdirs(self.output) try: from jinja2 import Environment, FileSystemLoader Environment(loader=FileSystemLoader('templates')) \ .get_template('rainbow.man') \ .stream(filter_groups=FILTER_GROUPS) \ .dump(self.output) file_in = None file_out = None try: file_in = open(self.output, 'rb') file_out = gzip.open(self.output + '.gz', 'wb') shutil.copyfileobj(file_in, file_out) finally: if file_in: file_in.close() if file_out: file_out.close() except ImportError: logging.warning('Jinja is not installed, skipping man page generation') def makeparentdirs(path): directory = os.path.dirname(path) if not os.path.exists(directory): # no cover try: os.makedirs(directory) except OSError as e: if e.errno != errno.EEXIST: raise ================================================ FILE: rainbow/cli.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import sys from optparse import OptionParser, OptionGroup, BadOptionError, AmbiguousOptionError from . import __version__, __description__, LOGGER, DEFAULT_PATH from .command.execute import ExecuteCommand from .command.noop import NoOpCommand from .command.print_config_names import PrintConfigNamesCommand from .command.print_path import PrintPathCommand from .command.stdin import STDINCommand from .config.loader import ConfigLoader from .filter import FILTER_GROUPS, FILTERS_BY_LONG_OPTION from .transformer import TransformerBuilder, IdentityTransformer class CommandLineParser(OptionParser): def __init__(self, paths=None, stdout_builder=None, stderr_builder=None, error_handler=lambda error: None): OptionParser.__init__(self, usage='%prog [options] -- command [args...] ', version='%prog ' + __version__, description=__description__) self.disable_interspersed_args() self.formatter.max_help_position = 50 self.formatter.width = 150 self.command = None self.stdout_builder = stdout_builder or TransformerBuilder() self.stderr_builder = stderr_builder or TransformerBuilder() self.error_handler = error_handler self.config_loader = ConfigLoader(self.stdout_builder, self.stderr_builder, paths, error_handler) self.add_option('-f', '--config', action='callback', callback=self.handle_config_option, type='string', help='Load a config file defining patterns. ' 'This option can be called several times.') self.add_option('-v', '--verbose', action='callback', callback=self.handle_verbosity_option, help='Turn on verbose mode. ' 'This option can be called several times to increase the verbosity level.') self.add_option('--print-path', action='callback', callback=self.handle_print_path_option, help='Print config paths.') self.add_option('--print-config-names', action='callback', callback=self.handle_print_config_names_option, help='Print config names.') self.add_option('--disable-stderr-filtering', action='store_false', dest='enable_stderr_filtering', default=True, help='Disable STDERR filtering, which can have unexpected effects on command directly ' 'using tty.') for group in FILTER_GROUPS: option_group = OptionGroup(self, group.name, group.help) for f in group.filters: if f.short_option: option_group.add_option('-' + f.short_option, '--' + f.long_option, action='callback', callback=self.handle_pattern_option, type='string', help=f.help) else: option_group.add_option('--' + f.long_option, action='callback', callback=self.handle_pattern_option, type='string', help=f.help) self.add_option_group(option_group) def parse_args(self, args=None, values=None): try: (values, remaining_args) = OptionParser.parse_args(self, args=args) except SystemExit: return self.command if remaining_args: if not self.stdout_builder.transformers: self.config_loader.load_config_from_command_line(remaining_args) stdout_transformer = self.stdout_builder.build() stderr_transformer = self.stderr_builder.build() if values.enable_stderr_filtering else IdentityTransformer return ExecuteCommand(remaining_args, stdout_transformer, stderr_transformer) return STDINCommand(self.stdout_builder.build()) def _process_args(self, largs, rargs, values): while rargs: remaining = len(rargs) try: OptionParser._process_args(self, largs, rargs, values) if remaining == len(rargs): break except (BadOptionError, AmbiguousOptionError) as e: largs.append(e.opt_str) def exit(self, status=0, msg=None): if msg: self.error_handler(msg) sys.exit(status) def error(self, msg): self.exit(1, msg) def handle_config_option(self, option, opt, value, parser): self.config_loader.load_config_by_name(value) def handle_pattern_option(self, option, opt, value, parser): filter_name = option.get_opt_string()[2:] filter = FILTERS_BY_LONG_OPTION[filter_name] self.stdout_builder.add_mapping(value, filter) self.stderr_builder.add_mapping(value, filter) @staticmethod def handle_verbosity_option(option, opt, value, parser): LOGGER.setLevel(LOGGER.level - 10) def handle_print_path_option(self, option, opt, value, parser): self.command = PrintPathCommand(DEFAULT_PATH) parser.exit(0) def handle_print_config_names_option(self, option, opt, value, parser): self.command = PrintConfigNamesCommand(DEFAULT_PATH) parser.exit(0) def print_help(self, file=None): self.command = NoOpCommand() return OptionParser.print_help(self, file) def print_version(self, file=None): self.command = NoOpCommand() return OptionParser.print_version(self, file) ================================================ FILE: rainbow/command/__init__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ================================================ FILE: rainbow/command/execute.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import errno import os import pty import re import signal import subprocess import sys from select import select from rainbow.ansi import ANSI_RESET_ALL from rainbow.transformer import IdentityTransformer NEW_LINE = re.compile("\n|\r\n") class ExecuteCommand(object): def __init__(self, args, stdout_transformer=IdentityTransformer(), stderr_transformer=IdentityTransformer(), encoding=sys.getdefaultencoding()): self.args = args self.stdout_transformer = stdout_transformer self.stderr_transformer = stderr_transformer self.encoding = encoding def encode(self, string): return string.encode(self.encoding, 'replace') def decode(self, bytes): return bytes.decode(self.encoding, 'replace') def run(self): stdin_fd = sys.stdin.fileno() stdout_fd = sys.stdout.fileno() stderr_fd = sys.stderr.fileno() in_master, in_slave = pty.openpty() if sys.stdin.isatty() else os.pipe() out_master, out_slave = pty.openpty() if sys.stdout.isatty() else os.pipe() err_master, err_slave = pty.openpty() if sys.stderr.isatty() else os.pipe() p = subprocess.Popen(args=self.args, stdin=in_master, stdout=out_slave, stderr=err_slave) readables = [stdin_fd, out_master, err_master] writables = {stdin_fd: in_slave, out_master: stdout_fd, err_master: stderr_fd} buffers = {out_master: '', err_master: ''} transformers = {out_master: self.stdout_transformer, err_master: self.stderr_transformer} try: os.close(out_slave) os.close(err_slave) while True: for read_fd in select(readables, [], [])[0]: try: data = os.read(read_fd, 4096) except OSError as e: if e.errno != errno.EIO: raise # no cover data = None write_fd = writables[read_fd] if data: data_str = self.decode(data) if read_fd == stdin_fd: os.write(write_fd, self.encode(data_str)) for read_fd in buffers: buffers[read_fd] = '' else: lines = NEW_LINE.split(buffers[read_fd] + data_str) transformer = transformers[read_fd] if lines[0] and buffers[read_fd]: os.write(write_fd, self.encode('\r')) for line in lines[:-1]: os.write(write_fd, self.encode(transformer.transform(line) + '\n')) if lines[-1]: os.write(write_fd, self.encode(transformer.transform(lines[-1]))) buffers[read_fd] = lines[-1] else: buffers[read_fd] = '' else: if read_fd == stdin_fd: os.close(write_fd) else: os.write(write_fd, self.encode(ANSI_RESET_ALL)) os.close(read_fd) readables.remove(read_fd) if out_master not in readables and err_master not in readables: return p.wait() except KeyboardInterrupt: os.kill(p.pid, signal.SIGINT) return p.wait() ================================================ FILE: rainbow/command/noop.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- class NoOpCommand(object): def __init__(self, exit_code=0): self.exit_code = exit_code def run(self): return self.exit_code ================================================ FILE: rainbow/command/print_config_names.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os class PrintConfigNamesCommand(object): def __init__(self, paths=None): self.paths = paths or [] def run(self): for path in self.paths: if path and os.path.isdir(path): for file in os.listdir(path): if os.path.isfile(os.path.join(path, file)): print(os.path.splitext(file)[0]) return 0 ================================================ FILE: rainbow/command/print_path.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os class PrintPathCommand(object): def __init__(self, paths=None): self.paths = paths or [] def run(self): for path in self.paths: if path: print(os.path.abspath(path)) return 0 ================================================ FILE: rainbow/command/stdin.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import codecs import os import sys from rainbow.ansi import ANSI_RESET_ALL from rainbow.transformer import IdentityTransformer class STDINCommand(object): def __init__(self, transformer=IdentityTransformer(), encoding=sys.getdefaultencoding()): self.transformer = transformer self.encoding = encoding def run(self): stdin_fd = sys.stdin.fileno() stdout_fd = sys.stdout.fileno() reader = codecs.getreader(self.encoding)(os.fdopen(stdin_fd, 'rb'), errors='replace') try: while True: line = reader.readline() if line: os.write(stdout_fd, self.transformer.transform(line).encode(self.encoding, 'replace')) else: return 0 except KeyboardInterrupt: return 1 finally: os.write(stdout_fd, ANSI_RESET_ALL.encode(self.encoding, 'replace')) ================================================ FILE: rainbow/config/__init__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ================================================ FILE: rainbow/config/builtin/df.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for df. # # Usage: # $ rainbow df # ---------------------------------------------------------------------- [filters] red: (9\d|100)%% ================================================ FILE: rainbow/config/builtin/diff.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for the 'diff' command. # # Usage: # $ rainbow diff file1 file2 # ---------------------------------------------------------------------- [filters] green: ^\+.* red: ^\-.* faint: ^\s.* bold: Index:\s.*|^=+ magenta: ^@@.* ================================================ FILE: rainbow/config/builtin/env.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for env. # # Usage: # $ rainbow env # ---------------------------------------------------------------------- [filters] reset-all: (?<==).* bold: ^[^=]+=|[:;,] blue: ^[^=]+|[:;,] ================================================ FILE: rainbow/config/builtin/host.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for host. # # Usage: # $ rainbow host www.google.com # ---------------------------------------------------------------------- [filters] bold: ^.*\ has\ address\ [0-9.]*$|^.*\ mail\ is\ handled\ by\ .*$ ================================================ FILE: rainbow/config/builtin/ifconfig.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for ifconfig. # # Usage: # $ rainbow ifconfig # ---------------------------------------------------------------------- [filters] underline: ^([^\ ]+) bold: ^\ *inet\ ad{1,2}r:[0-9.]+ ================================================ FILE: rainbow/config/builtin/java-stack-trace.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Displays Java stack traces in red. # ---------------------------------------------------------------------- [filters] red: ^[a-zA-Z\.]*Exception.*|^\s+at\s.*|^Caused\ by:.*|^\s+\.\.\.\ [0-9]+\smore ================================================ FILE: rainbow/config/builtin/jboss.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for JBoss (4,5,6) output. # # Usage: # $ rainbow --config=jboss -- jboss/bin/run.sh run # ---------------------------------------------------------------------- [general] imports: java-stack-trace [filters] bold: ^=+ faint: ^\d+:\d+:\d+,\d+ red: \s+ERROR\s+.*|DEPLOYMENTS\sMISSING\sDEPENDENCIES:|DEPLOYMENTS\sIN\sERROR: yellow: \s+WARN\s+.*|\s+ATTENTION\s+.* green: \[Server\].*Started\sin\s.*|\[ServerImpl\].*Started\sin\s.*|\[AbstractServer\]\sStopped:.*\sin\s.*|\[Server\]\sShutdown\scomplete|\[ServerImpl\]\sShutdown\scomplete|^Shutdown\scomplete|^Halting\sVM ================================================ FILE: rainbow/config/builtin/md5sum.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for md5sum. # # Usage: # $ rainbow md5sum some-file # ---------------------------------------------------------------------- [filters] faint: ^([^\ ]+) ================================================ FILE: rainbow/config/builtin/mvn.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for Maven 3. # # Usage: # $ rainbow mvn clean install # ---------------------------------------------------------------------- [filters] bold: \[INFO\]\s-+$|\[ERROR\]\s.*|\[INFO\]\sBuilding\s[^jar\s].*|\[INFO\]\s+task-segment:\s.*|^Results.* faint: \[INFO\]\s(---|<<<|>>>)\s[a-z-]+:[0-9\.a-z-]+:.*\s@\s.*\s(---|<<<|>>>)|\[INFO\]\sTotal\stime:\s.*|\[INFO\]\sFinished\sat:\s.*|\[INFO\]\sFinal\sMemory:\s.* yellow: \[WARNING\]\s.*|^NOTE:\sMaven\sis\sexecuting\sin\soffline\smode\.|^-+$|^\sT\sE\sS\sT\sS$|^Tests\srun:.*Failures:\s0.*Errors:\s0.*Skipped:\s[^0].* red: \[ERROR\]\s.*|\[INFO\]\sBUILD\sFAILURE|^Tests\srun:.*Failures:\s[^0].*|^Tests\srun:.*Errors:\s[^0].* magenta: ^Downloading:\s.* green: \[INFO\]\sBUILD\sSUCCESS|\[INFO\]\sScanning\sfor\sprojects|^Tests\srun:.*Failures:\s0.*Errors:\s0.*Skipped:\s0.* ================================================ FILE: rainbow/config/builtin/ping.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for the 'ping' command. # # Usage: # $ rainbow ping www.google.fr # ---------------------------------------------------------------------- [filters] magenta: \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} yellow: time=\d+(\.\d+)*\sms red: .+unknown\shost\s.+ bold: PING.*|^---.*|.+unknown\shost\s.+|\d+(\.\d+)*\sms ================================================ FILE: rainbow/config/builtin/tcpdump.cfg ================================================ [filters] # IPv4 address+port: reset-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}) magenta-before: \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} blue-after: \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\. reset-after: \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} # MAC address: yellow: ([0-9a-f]{2}\:){5}[0-9a-f]{2} # TCP/UDP flags: # 1. TCP Flags # 2. UDP indicator # 3. UDP indicator with checksum indicator # Note: Bare "[udp sum ok]" is highlighted because tcpdump will # sometimes omit the "UDP" cyan: (?<=Flags )\[[SP\.RFU]+\] (?<=\: )UDP (?<=\: )\[udp sum ok\]( UDP)? # error conditions (UDP, TCP, IPv4): red: (?<=\: )\[bad udp cksum.*?\] cksum \S+ \(incorrect.*?\) bad cksum .*?! # Network-layer Description (e.g. "IP") # 1. With -e flag # 2. With -e flag where no link layer addresses exist (e.g. VPN interface) # 3. Without -e flag bold: (?<=ethertype )\S+ \S+(?=,) (?<=^\d{2}\:\d{2}\:\d{2}\.\d{6} AF )[^\s\:]+\s (?<=^\d{2}\:\d{2}\:\d{2}\.\d{6} )[^\s\:]+\s # Time stamp: faint: \d{2}\:\d{2}\:\d{2}\.\d{6} ================================================ FILE: rainbow/config/builtin/tomcat.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for Tomcat (5,6,7) output. # # Usage: # $ rainbow tomcat/bin/catalina.sh run # ---------------------------------------------------------------------- [general] imports: java-stack-trace [filters] faint: ^[A-Z][a-z]+\s\d+,\s\d+\s\d+:\d+:\d+|^\d+\s[a-z]+\s\d+\s\d+:\d+:\d+ red: ^GRAVE:\s.*|^SEVERE:\s.* yellow: ^ATTENTION:\s.*|^WARNING:\s.* bold: ^Using\s.* ================================================ FILE: rainbow/config/builtin/traceroute.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- # Description: # Example Rainbow configuration for the 'traceroute' command. # # Usage: # $ rainbow traceroute www.google.com # ---------------------------------------------------------------------- [filters] underline: ^traceroute\sto\s.+ bold: ^\s*\d+ ================================================ FILE: rainbow/config/loader.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os from rainbow import LOGGER from rainbow.config.locator import ConfigLocator from rainbow.config.parser import ConfigParser PRECOMMANDS = [ 'sudo', 'strace', 'record', 'builtin', 'command', 'exec', 'nocorrect', 'noglob', 'pkexec', 'sh', 'bash', 'csh', 'ksh', 'fish', 'zsh' ] class ConfigLoader(object): def __init__(self, stdout_builder, stderr_builder, paths=None, error_handler=lambda error: None): self.locator = ConfigLocator(paths) self.parser = ConfigParser(stdout_builder, stderr_builder, paths, error_handler) self.error_handler = error_handler def load_config_by_name(self, config): config_file = self.locator.locate_config_file(config) if config_file: self.parser.parse_file(config_file) else: self.error_handler('Could not resolve config "%s"' % config) def load_config_from_command_line(self, command_line_args): LOGGER.debug('Trying to load config from command line "%s".', command_line_args) config_name = self.find_config_name_from_command_line(command_line_args) if config_name: config_file = self.locator.locate_config_file(config_name) if config_file: self.parser.parse_file(config_file) @staticmethod def find_config_name_from_command_line(command_line_args): for arg in command_line_args: if arg[0] != '-': basename = os.path.basename(arg) if basename not in PRECOMMANDS: return basename return ================================================ FILE: rainbow/config/locator.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os from os.path import isfile, join from rainbow import LOGGER class ConfigLocator(object): def __init__(self, paths=None): self.paths = paths or [] def locate_config_file(self, config, working_directory=None): LOGGER.debug('Trying to find config "%s"', config) config_file = self.locate_config_file_in_directory(os.getcwd(), config) if config_file: return config_file if working_directory: config_file = self.locate_config_file_in_directory(working_directory, config) if config_file: return config_file for directory in self.paths: if directory: config_file = self.locate_config_file_in_directory(directory, config) if config_file: return config_file @staticmethod def locate_config_file_in_directory(directory, config): config_file = config if isfile(config_file): return config_file config_file = config + '.cfg' if isfile(config_file): return config + '.cfg' config_file = join(directory, config) if isfile(config_file): return config_file config_file = join(directory, config + '.cfg') if isfile(config_file): return config_file ================================================ FILE: rainbow/config/parser.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- from os.path import dirname from rainbow import LOGGER from rainbow.config.locator import ConfigLocator from rainbow.filter import FILTERS_BY_NAME, FILTERS_BY_SHORT_OPTION, FILTERS_BY_LONG_OPTION try: import configparser except ImportError: # no cover import ConfigParser as configparser class ConfigParser(object): def __init__(self, stdout_builder, stderr_builder, paths=None, error_handler=lambda error: None): self.locator = ConfigLocator(paths) self.stdout_builder = stdout_builder self.stderr_builder = stderr_builder self.error_handler = error_handler def parse_file(self, config_file): LOGGER.debug('Loading the config file "%s"', config_file) config_parser = configparser.ConfigParser() try: if not config_parser.read(config_file): self.error_handler('Could not open config file "%s"' % config_file) return except configparser.DuplicateSectionError as e: # no cover (inconsistent between Python 2 and 3) self.error_handler('Duplicate section "%s" in "%s"' % (e.section, config_file)) return enable_stderr_filtering = True for section in config_parser.sections(): if section == 'general': for key, value in config_parser.items(section): if key == 'imports': if not value: self.error_handler('Empty imports section in config "%s"' % config_file) else: for config_import in [v.strip() for v in value.split(',')]: if not config_import: self.error_handler('Empty import in config "%s"' % config_file) else: config_import_file = self.locator.locate_config_file(config_import, dirname(config_file)) if config_import_file: self.parse_file(config_import_file) else: self.error_handler('Failed to resolve import of "%s" in config "%s"' % (config_import, config_file)) elif key == 'enable-stderr-filtering': try: enable_stderr_filtering = config_parser.getboolean(section, 'enable-stderr-filtering') except ValueError: self.error_handler( 'Invalid value "%s" for key "%s" in config "%s"' % (value, key, config_file)) else: self.error_handler('Invalid key "%s" in general section of config "%s"' % (key, config_file)) elif section == 'filters': for filter_name, pattern_lines in config_parser.items(section): resolved_filter = \ FILTERS_BY_NAME.get(filter_name) or \ FILTERS_BY_LONG_OPTION.get(filter_name) or \ FILTERS_BY_SHORT_OPTION.get(filter_name) if not resolved_filter: self.error_handler('Unknown filter "%s" in config "%s"' % (filter_name, config_file)) continue if not pattern_lines: self.error_handler('Empty pattern for "%s" in config "%s"' % (filter_name, config_file)) continue for pattern in pattern_lines.splitlines(): self.stdout_builder.add_mapping(pattern, resolved_filter) if enable_stderr_filtering: self.stderr_builder.add_mapping(pattern, resolved_filter) else: self.error_handler('Invalid section "%s" in config "%s"' % (section, config_file)) LOGGER.info('Loaded config "%s"', config_file) ================================================ FILE: rainbow/filter.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- from . import ansi class Filter(object): def __init__(self, name, help, short_option=None, long_option=None, before=None, after=None): self.name = name self.help = help self.short_option = short_option self.long_option = long_option self.before = before self.after = after def __str__(self): return self.name class FilterGroup(object): def __init__(self, name, help, filters): self.name = name self.help = help self.filters = filters def __str__(self): return self.name FILTER_GROUPS = [ FilterGroup( name='Foreground color', help='Use these options to associate patterns to text foreground colors.', filters=[ Filter(name='foreground-red', short_option='r', long_option='red', help='print pattern in red', before=ansi.ANSI_FOREGROUND_RED, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-light-red', long_option='lightred', help='print pattern in light red', before=ansi.ANSI_FOREGROUND_LIGHT_RED, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-green', short_option='g', long_option='green', help='print pattern in green', before=ansi.ANSI_FOREGROUND_GREEN, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-light-green', long_option='lightgreen', help='print pattern in light green', before=ansi.ANSI_FOREGROUND_LIGHT_GREEN, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-yellow', short_option='y', long_option='yellow', help='print pattern in yellow', before=ansi.ANSI_FOREGROUND_YELLOW, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-light-yellow', long_option='lightyellow', help='print pattern in light yellow', before=ansi.ANSI_FOREGROUND_LIGHT_YELLOW, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-blue', short_option='b', long_option='blue', help='print pattern in blue', before=ansi.ANSI_FOREGROUND_BLUE, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-light-blue', long_option='lightblue', help='print pattern in light blue', before=ansi.ANSI_FOREGROUND_LIGHT_BLUE, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-magenta', short_option='m', long_option='magenta', help='print pattern in magenta', before=ansi.ANSI_FOREGROUND_MAGENTA, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-cyan', short_option='c', long_option='cyan', help='print pattern in cyan', before=ansi.ANSI_FOREGROUND_CYAN, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-light-cyan', long_option='lightcyan', help='print pattern in light cyan', before=ansi.ANSI_FOREGROUND_LIGHT_CYAN, after=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-red-before', long_option='red-before', help='toggle foreground to red on beginning of pattern', before=ansi.ANSI_FOREGROUND_RED), Filter(name='foreground-light-red-before', long_option='lightred-before', help='toggle foreground to light red on beginning of pattern', before=ansi.ANSI_FOREGROUND_LIGHT_RED), Filter(name='foreground-green-before', long_option='green-before', help='toggle foreground to green on beginning of pattern', before=ansi.ANSI_FOREGROUND_GREEN), Filter(name='foreground-light-green-before', long_option='lightgreen-before', help='toggle foreground to light green on beginning of pattern', before=ansi.ANSI_FOREGROUND_LIGHT_GREEN), Filter(name='foreground-yellow-before', long_option='yellow-before', help='toggle foreground to yellow on beginning of pattern', before=ansi.ANSI_FOREGROUND_YELLOW), Filter(name='foreground-light-yellow-before', long_option='lightyellow-before', help='toggle foreground to light yellow on beginning of pattern', before=ansi.ANSI_FOREGROUND_LIGHT_YELLOW), Filter(name='foreground-blue-before', long_option='blue-before', help='toggle foreground to blue on beginning of pattern', before=ansi.ANSI_FOREGROUND_BLUE), Filter(name='foreground-light-blue-before', long_option='lightblue-before', help='toggle foreground to light blue on beginning of pattern', before=ansi.ANSI_FOREGROUND_LIGHT_BLUE), Filter(name='foreground-magenta-before', long_option='magenta-before', help='toggle foreground to magenta on beginning of pattern', before=ansi.ANSI_FOREGROUND_MAGENTA), Filter(name='foreground-cyan-before', long_option='cyan-before', help='toggle foreground to cyan on beginning of pattern', before=ansi.ANSI_FOREGROUND_CYAN), Filter(name='foreground-light-cyan-before', long_option='lightcyan-before', help='toggle foreground to light cyan on beginning of pattern', before=ansi.ANSI_FOREGROUND_LIGHT_CYAN), Filter(name='foreground-reset-before', long_option='reset-before', help='reset foreground color on beginning of pattern', before=ansi.ANSI_FOREGROUND_RESET), Filter(name='foreground-red-after', long_option='red-after', help='toggle foreground to red on end of pattern', after=ansi.ANSI_FOREGROUND_RED), Filter(name='foreground-light-red-after', long_option='lightred-after', help='toggle foreground to light red on end of pattern', after=ansi.ANSI_FOREGROUND_LIGHT_RED), Filter(name='foreground-green-after', long_option='green-after', help='toggle foreground to green on end of pattern', after=ansi.ANSI_FOREGROUND_GREEN), Filter(name='foreground-light-green-after', long_option='lightgreen-after', help='toggle foreground to light green on end of pattern', after=ansi.ANSI_FOREGROUND_LIGHT_GREEN), Filter(name='foreground-yellow-after', long_option='yellow-after', help='toggle foreground to yellow on end of pattern', after=ansi.ANSI_FOREGROUND_YELLOW), Filter(name='foreground-light-yellow-after', long_option='lightyellow-after', help='toggle foreground to light yellow on end of pattern', after=ansi.ANSI_FOREGROUND_LIGHT_YELLOW), Filter(name='foreground-blue-after', long_option='blue-after', help='toggle foreground to blue on end of pattern', after=ansi.ANSI_FOREGROUND_BLUE), Filter(name='foreground-light-blue-after', long_option='lightblue-after', help='toggle foreground to light blue on end of pattern', after=ansi.ANSI_FOREGROUND_LIGHT_BLUE), Filter(name='foreground-magenta-after', long_option='magenta-after', help='toggle foreground to magenta on end of pattern', after=ansi.ANSI_FOREGROUND_MAGENTA), Filter(name='foreground-cyan-after', long_option='cyan-after', help='toggle foreground to cyan on end of pattern', after=ansi.ANSI_FOREGROUND_CYAN), Filter(name='foreground-light-cyan-after', long_option='lightcyan-after', help='toggle foreground to light cyan on end of pattern', after=ansi.ANSI_FOREGROUND_LIGHT_CYAN), Filter(name='foreground-reset-after', long_option='reset-after', help='reset foreground color on end of pattern', after=ansi.ANSI_FOREGROUND_RESET), ] ), FilterGroup( name='Background color', help='Use these options to associate patterns to text background colors.', filters=[ Filter(name='background-red', long_option='background-red', help='print pattern with red background', before=ansi.ANSI_BACKGROUND_RED, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-light-red', long_option='background-lightred', help='print pattern with light red background', before=ansi.ANSI_BACKGROUND_LIGHT_RED, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-green', long_option='background-green', help='print pattern with green background', before=ansi.ANSI_BACKGROUND_GREEN, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-light-green', long_option='background-lightgreen', help='print pattern with light green background', before=ansi.ANSI_BACKGROUND_LIGHT_GREEN, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-yellow', long_option='background-yellow', help='print pattern with yellow background', before=ansi.ANSI_BACKGROUND_YELLOW, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-light-yellow', long_option='background-lightyellow', help='print pattern with light yellow background', before=ansi.ANSI_BACKGROUND_LIGHT_YELLOW, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-blue', long_option='background-blue', help='print pattern with blue background', before=ansi.ANSI_BACKGROUND_BLUE, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-light-blue', long_option='background-lightblue', help='print pattern with light blue background', before=ansi.ANSI_BACKGROUND_LIGHT_BLUE, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-magenta', long_option='background-magenta', help='print pattern with magenta background', before=ansi.ANSI_BACKGROUND_MAGENTA, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-cyan', long_option='background-cyan', help='print pattern with cyan background', before=ansi.ANSI_BACKGROUND_CYAN, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-light-cyan', long_option='background-lightcyan', help='print pattern with light cyan background', before=ansi.ANSI_BACKGROUND_LIGHT_CYAN, after=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-red-before', long_option='background-red-before', help='toggle background to red on beginning of pattern', before=ansi.ANSI_BACKGROUND_RED), Filter(name='background-light-red-before', long_option='background-lightred-before', help='toggle background to light red on beginning of pattern', before=ansi.ANSI_BACKGROUND_LIGHT_RED), Filter(name='background-green-before', long_option='background-green-before', help='toggle background to green on beginning of pattern', before=ansi.ANSI_BACKGROUND_GREEN), Filter(name='background-light-green-before', long_option='background-lightgreen-before', help='toggle background to light green on beginning of pattern', before=ansi.ANSI_BACKGROUND_LIGHT_GREEN), Filter(name='background-yellow-before', long_option='background-yellow-before', help='toggle background to yellow on beginning of pattern', before=ansi.ANSI_BACKGROUND_YELLOW), Filter(name='background-light-yellow-before', long_option='background-lightyellow-before', help='toggle background to light yellow on beginning of pattern', before=ansi.ANSI_BACKGROUND_LIGHT_YELLOW), Filter(name='background-blue-before', long_option='background-blue-before', help='toggle background to blue on beginning of pattern', before=ansi.ANSI_BACKGROUND_BLUE), Filter(name='background-light-blue-before', long_option='background-lightblue-before', help='toggle background to light blue on beginning of pattern', before=ansi.ANSI_BACKGROUND_LIGHT_BLUE), Filter(name='background-magenta-before', long_option='background-magenta-before', help='toggle background to magenta on beginning of pattern', before=ansi.ANSI_BACKGROUND_MAGENTA), Filter(name='background-cyan-before', long_option='background-cyan-before', help='toggle background to cyan on beginning of pattern', before=ansi.ANSI_BACKGROUND_CYAN), Filter(name='background-light-cyan-before', long_option='background-lightcyan-before', help='toggle background to light cyan on beginning of pattern', before=ansi.ANSI_BACKGROUND_LIGHT_CYAN), Filter(name='background-reset-before', long_option='background-reset-before', help='reset background color on beginning of pattern', before=ansi.ANSI_BACKGROUND_RESET), Filter(name='background-red-after', long_option='background-red-after', help='toggle background to red on end of pattern', after=ansi.ANSI_BACKGROUND_RED), Filter(name='background-light-red-after', long_option='background-lightred-after', help='toggle background to light red on end of pattern', after=ansi.ANSI_BACKGROUND_LIGHT_RED), Filter(name='background-green-after', long_option='background-green-after', help='toggle background to green on end of pattern', after=ansi.ANSI_BACKGROUND_GREEN), Filter(name='background-light-green-after', long_option='background-lightgreen-after', help='toggle background to light green on end of pattern', after=ansi.ANSI_BACKGROUND_LIGHT_GREEN), Filter(name='background-yellow-after', long_option='background-yellow-after', help='toggle background to yellow on end of pattern', after=ansi.ANSI_BACKGROUND_YELLOW), Filter(name='background-light-yellow-after', long_option='background-lightyellow-after', help='toggle background to light yellow on end of pattern', after=ansi.ANSI_BACKGROUND_LIGHT_YELLOW), Filter(name='background-blue-after', long_option='background-blue-after', help='toggle background to blue on end of pattern', after=ansi.ANSI_BACKGROUND_BLUE), Filter(name='background-light-blue-after', long_option='background-lightblue-after', help='toggle background to light blue on end of pattern', after=ansi.ANSI_BACKGROUND_LIGHT_BLUE), Filter(name='background-magenta-after', long_option='background-magenta-after', help='toggle background to magenta on end of pattern', after=ansi.ANSI_BACKGROUND_MAGENTA), Filter(name='background-cyan-after', long_option='background-cyan-after', help='toggle background to cyan on end of pattern', after=ansi.ANSI_BACKGROUND_CYAN), Filter(name='background-light-cyan-after', long_option='background-lightcyan-after', help='toggle background to light cyan on end of pattern', after=ansi.ANSI_BACKGROUND_LIGHT_CYAN), Filter(name='background-reset-after', long_option='background-reset-after', help='reset background color on end of pattern', after=ansi.ANSI_BACKGROUND_RESET), ] ), FilterGroup( name='Text effects', help='Use these options to associate patterns to text effects.', filters=[ Filter(name='bold', long_option='bold', help='print pattern in bold', before=ansi.ANSI_BOLD, after=ansi.ANSI_RESET_INTENSITY), Filter(name='bold-before', long_option='bold-before', help='toggle bold on beginning of pattern', before=ansi.ANSI_BOLD), Filter(name='bold-after', long_option='bold-after', help='toggle bold on end of pattern', after=ansi.ANSI_BOLD), Filter(name='faint', long_option='faint', help='print pattern with decreased intensity', before=ansi.ANSI_FAINT, after=ansi.ANSI_RESET_INTENSITY), Filter(name='faint-before', long_option='faint-before', help='toggle faint on beginning of pattern', before=ansi.ANSI_FAINT), Filter(name='faint-after', long_option='faint-after', help='toggle faint on end of pattern', after=ansi.ANSI_FAINT), Filter(name='intensity-reset-before', long_option='intensity-reset-before', help='reset text intensity (bold, faint) on beginning of pattern', before=ansi.ANSI_RESET_INTENSITY), Filter(name='intensity-reset-after', long_option='intensity-reset-after', help='reset text intensity (bold, faint) on end of pattern', after=ansi.ANSI_RESET_INTENSITY), Filter(name='italic', long_option='italic', help='print pattern in italic', before=ansi.ANSI_ITALIC, after=ansi.ANSI_RESET_ITALIC), Filter(name='italic-before', long_option='italic-before', help='toggle italic on beginning of pattern', before=ansi.ANSI_ITALIC), Filter(name='italic-after', long_option='italic-after', help='toggle italic on end of pattern', after=ansi.ANSI_ITALIC), Filter(name='italic-reset-before', long_option='italic-reset-before', help='reset italic on beginning of pattern', before=ansi.ANSI_RESET_ITALIC), Filter(name='italic-reset-after', long_option='italic-reset-after', help='reset italic on end of pattern', after=ansi.ANSI_RESET_ITALIC), Filter(name='underline', long_option='underline', help='print pattern underlined', before=ansi.ANSI_UNDERLINE, after=ansi.ANSI_RESET_UNDERLINE), Filter(name='underline-before', long_option='underline-before', help='toggle underline on beginning of pattern', before=ansi.ANSI_UNDERLINE), Filter(name='underline-after', long_option='underline-after', help='toggle underline on end of pattern', after=ansi.ANSI_UNDERLINE), Filter(name='underline-double', long_option='underline-double', help='print pattern double underlined', before=ansi.ANSI_UNDERLINE_DOUBLE, after=ansi.ANSI_RESET_UNDERLINE), Filter(name='underline-double-before', long_option='underline-double-before', help='toggle double underline on beginning of pattern', before=ansi.ANSI_UNDERLINE_DOUBLE), Filter(name='underline-double-after', long_option='underline-double-after', help='toggle double underline on end of pattern', after=ansi.ANSI_UNDERLINE_DOUBLE), Filter(name='underline-reset-before', long_option='underline-reset-before', help='reset underline on beginning of pattern', before=ansi.ANSI_RESET_UNDERLINE), Filter(name='underline-reset-after', long_option='underline-reset-after', help='reset underline on end of pattern', after=ansi.ANSI_RESET_UNDERLINE), Filter(name='blink', long_option='blink', help='print pattern blinking', before=ansi.ANSI_BLINK, after=ansi.ANSI_RESET_BLINK), Filter(name='blink-before', long_option='blink-before', help='toggle blinking on beginning of pattern', before=ansi.ANSI_BLINK), Filter(name='blink-after', long_option='blink-after', help='toggle blinking on end of pattern', after=ansi.ANSI_BLINK), Filter(name='blink-rapid', long_option='blink-rapid', help='print pattern blinking rapidly', before=ansi.ANSI_BLINK, after=ansi.ANSI_RESET_BLINK), Filter(name='blink-rapid-before', long_option='blink-rapid-before', help='toggle rapid blinking on beginning of pattern', before=ansi.ANSI_BLINK), Filter(name='blink-rapid-after', long_option='blink-rapid-after', help='toggle rapid blinking on end of pattern', after=ansi.ANSI_BLINK), Filter(name='blink-reset-before', long_option='blink-reset-before', help='reset blinking on beginning of pattern', before=ansi.ANSI_RESET_BLINK), Filter(name='blink-reset-after', long_option='blink-reset-after', help='reset blinking on end of pattern', after=ansi.ANSI_RESET_BLINK), Filter(name='negative', long_option='negative', help='print pattern swapping foreground and background', before=ansi.ANSI_NEGATIVE, after=ansi.ANSI_RESET_NEGATIVE), Filter(name='negative-before', long_option='negative-before', help='toggle negative on beginning of pattern', before=ansi.ANSI_NEGATIVE), Filter(name='negative-after', long_option='negative-after', help='toggle negative on end of pattern', after=ansi.ANSI_NEGATIVE), Filter(name='negative-reset-before', long_option='negative-reset-before', help='reset negative on beginning of pattern', before=ansi.ANSI_RESET_NEGATIVE), Filter(name='negative-reset-after', long_option='negative-reset-after', help='reset negative on end of pattern', after=ansi.ANSI_RESET_NEGATIVE), Filter(name='hide', long_option='hide', help='print pattern hidden', before=ansi.ANSI_HIDE, after=ansi.ANSI_RESET_HIDE), Filter(name='hide-before', long_option='hide-before', help='toggle hiding on beginning of pattern', before=ansi.ANSI_HIDE), Filter(name='hide-after', long_option='hide-after', help='toggle hiding on end of pattern', after=ansi.ANSI_HIDE), Filter(name='hide-reset-before', long_option='hide-reset-before', help='reset hiding on beginning of pattern', before=ansi.ANSI_RESET_HIDE), Filter(name='hide-reset-after', long_option='hide-reset-after', help='reset hiding on end of pattern', after=ansi.ANSI_RESET_HIDE), Filter(name='reset-all', long_option='reset-all', help='reset all colors', before=ansi.ANSI_RESET_ALL, after=ansi.ANSI_RESET_ALL), Filter(name='reset-all-before', long_option='reset-all-before', help='reset all colors on beginning of pattern', before=ansi.ANSI_RESET_ALL), Filter(name='reset-all-after', long_option='reset-all-after', help='reset all colors on end of pattern', after=ansi.ANSI_RESET_ALL), ] ) ] FILTERS = [f for g in FILTER_GROUPS for f in g.filters] FILTERS_BY_NAME = dict((filter.name, filter) for group in FILTER_GROUPS for filter in group.filters) FILTERS_BY_SHORT_OPTION = dict((filter.short_option, filter) for group in FILTER_GROUPS for filter in group.filters) FILTERS_BY_LONG_OPTION = dict((filter.long_option, filter) for group in FILTER_GROUPS for filter in group.filters) ================================================ FILE: rainbow/transformer.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os import re from . import LOGGER class IdentityTransformer(object): def __init__(self): pass def transform(self, line): return line def __str__(self): return 'identity' def __eq__(self, other): return isinstance(other, self.__class__) class ReplaceTransformer(IdentityTransformer): def __init__(self, value, replacement): IdentityTransformer.__init__(self) self.value = value self.replacement = replacement def transform(self, line): return line.replace(self.value, self.replacement) def __str__(self): return 'replace "%s" with "%s"' % (self.value, self.replacement) def __eq__(self, other): return isinstance(other, self.__class__) and (self.value, self.replacement) == (other.value, other.replacement) class ReplaceRegexTransformer(IdentityTransformer): def __init__(self, regex, replacement): IdentityTransformer.__init__(self) self.regex = regex self.replacement = replacement def transform(self, line): return self.regex.sub(self.replacement, line) def __str__(self): return 'replace "%s" with "%s"' % (self.regex.pattern, self.replacement) def __eq__(self, other): return isinstance(other, self.__class__) and (self.regex, self.replacement) == (other.regex, other.replacement) class InsertBeforeRegexTransformer(IdentityTransformer): def __init__(self, regex, before): IdentityTransformer.__init__(self) self.regex = regex self.before = before def transform(self, line): return self.regex.sub(self.before + r'\g<0>', line) def __str__(self): return 'insert "%s" before "%s"' % (self.before, self.regex.pattern) def __eq__(self, other): return isinstance(other, self.__class__) and (self.regex, self.before) == (other.regex, other.before) class InsertAfterRegexTransformer(IdentityTransformer): def __init__(self, regex, after): IdentityTransformer.__init__(self) self.regex = regex self.after = after def transform(self, line): return self.regex.sub(r'\g<0>' + self.after, line) def __str__(self): return 'insert "%s" after "%s"' % (self.after, self.regex.pattern) def __eq__(self, other): return isinstance(other, self.__class__) and (self.regex, self.after) == (other.regex, other.after) class InsertBeforeAndAfterRegexTransformer(IdentityTransformer): def __init__(self, regex, before, after): IdentityTransformer.__init__(self) self.regex = regex self.before = before self.after = after def transform(self, line): return self.regex.sub(self.before + r'\g<0>' + self.after, line) def __str__(self): return 'insert "%s" before and "%s" after "%s"' % (self.before, self.after, self.regex.pattern) def __eq__(self, other): return isinstance(other, self.__class__) and (self.regex, self.before, self.after) == \ (other.regex, other.before, other.after) class ListTransformer(IdentityTransformer): def __init__(self, transformers): IdentityTransformer.__init__(self) self.transformers = transformers def transform(self, line): for transformer in self.transformers: line = transformer.transform(line) return line def __str__(self): return os.linesep.join([transformer.__str__() for transformer in self.transformers]) def __eq__(self, other): return isinstance(other, self.__class__) and self.transformers == other.transformers class DummyTransformerBuilder(object): def __init__(self): self.transformers = [] def add_mapping(self, pattern, filter): pass def build(self): return IdentityTransformer() class TransformerBuilder(DummyTransformerBuilder): def add_mapping(self, pattern, filter): LOGGER.debug('Binding pattern "%s" with filter "%s".', pattern, filter) self.transformers.append(self.make_transformer(re.compile(pattern), filter)) @staticmethod def make_transformer(regex, filter): if filter.before and filter.after: return InsertBeforeAndAfterRegexTransformer(regex, filter.before, filter.after) elif filter.before: return InsertBeforeRegexTransformer(regex, filter.before) elif filter.after: return InsertAfterRegexTransformer(regex, filter.after) def build(self): if not self.transformers: return IdentityTransformer() if len(self.transformers) == 1: return self.transformers[0] return ListTransformer(self.transformers) ================================================ FILE: scripts/rainbow ================================================ #!/usr/bin/python3 # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import sys from rainbow.__main__ import main sys.exit(main()) ================================================ FILE: setup.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [clean] paths = .cache, .tox, build, dist, rainbow.egg-info, .coverage [build_completion_bash] shell = bash output = build/completion/rainbow [build_completion_zsh] shell = zsh output = build/completion/_rainbow [build_man_page] output = build/man/rainbow.1 [bdist_wheel] universal = 1 [flake8] max-line-length = 120 ================================================ FILE: setup.py ================================================ #!/usr/bin/env python # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os from setuptools import setup, find_packages from rainbow import __prog__, __version__, __license__, __author__, __email__, __url__, __description__ from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage setup( name=__prog__, version=__version__, author=__author__, author_email=__email__, url=__url__, license=__license__, description=__description__, long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), keywords='color colorize colorizer pattern', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX', 'Topic :: System', 'Topic :: Utilities', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: System Administrators', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: OSI Approved :: GNU General Public License (GPL)' ], packages=find_packages(exclude=['tests*']), include_package_data=True, python_requires='>=3.6', extras_require={ 'build': [ 'Jinja2==3.0.3', ], 'test': [ 'pytest==6.2.5', 'coverage==6.2', 'pytest-cov==3.0.0', 'pytest-html==3.1.1', 'pytest-timeout==2.1.0', 'flake8==4.0.1', 'pygal==3.0.0', 'pygaljs==1.0.2', 'pytest-benchmark==3.4.1' ] }, scripts=['scripts/rainbow'], cmdclass={ 'clean': Clean, 'build': Build, 'build_completion_bash': GenerateCompletion, 'build_completion_zsh': GenerateCompletion, 'build_man_page': GenerateManPage } ) ================================================ FILE: templates/completion.bash ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- _rainbow() { local offset=0 i for (( i=1; i <= COMP_CWORD; i++ )); do case ${COMP_WORDS[$i]} in --version|-h|--help|--disable-stderr-filtering|--verbose|-f|--config|-{{ filters|selectattr('short_option')|join('|-', attribute='short_option') }}|--{{ filters|join('|--', attribute='long_option') }}) i=$((i+1)) continue ;; -*) continue ;; esac offset=$i break done if [[ $offset -gt 0 ]]; then _command_offset $offset else cur=${COMP_WORDS[COMP_CWORD]} if [ $COMP_CWORD -eq 1 ]; then 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 ) ) else first=${COMP_WORDS[1]} case "$first" in --version|-h|--help|--print-path|--print-config-names) COMPREPLY=() ;; *) prev=${COMP_WORDS[COMP_CWORD-1]} case "$prev" in -{{ filters|selectattr('short_option')|join('|-', attribute='short_option') }}|--{{ filters|join('|--', attribute='long_option') }}) COMPREPLY=() ;; -f|--config) COMPREPLY=( $(rainbow --print-config-names) \ $(compgen -d $cur ) \ $(compgen -f -X "!*.cfg" $cur ) ) ;; *) COMPREPLY=( $( compgen -W "--disable-stderr-filtering --verbose -f --config -{{ filters|selectattr('short_option')|join(' -', attribute='short_option') }} --{{ filters|join(' --', attribute='long_option') }}" -- $cur ) ) ;; esac ;; esac fi fi } complete -F _rainbow rainbow ================================================ FILE: templates/completion.zsh ================================================ #compdef rainbow # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- _rainbow() { typeset -A opt_args local context state line curcontext="$curcontext" _arguments \ {%- for filter in filters %} {%- if filter.short_option %} '*'{-{{ filter.short_option }}+,--{{ filter.long_option }}=}'[{{ filter.help }}]:pattern:_rainbow_patterns' \ {%- else %} '*--{{ filter.long_option }}=[{{ filter.help }}]:pattern:_rainbow_patterns' \ {%- endif %} {%- endfor %} '(- 1 *)'{-h,--help}'[print program usage]' \ '(- 1 *)--version[print program version]' \ '(- 1 *)--print-path[print config paths]' \ '(- 1 *)--print-config-names[print config names]' \ '*'{-v,--verbose}'[verbose mode]' \ '--disable-stderr-filtering[disable STDERR filtering]' \ '*'{-f,--config=}'[rainbow config file]:rainbow config:_rainbow_configs' \ '(-):command name: _command_names -e' \ '*::arguments:_normal' && ret=0 } (( $+functions[_rainbow_patterns] )) || _rainbow_patterns() { _message -e pattern "pattern" } (( $+functions[_rainbow_configs] )) || _rainbow_configs() { _alternative \ 'config-names:config name:_rainbow_config_names' \ 'config-files:config file:_rainbow_config_files' } (( $+functions[_rainbow_config_names] )) || _rainbow_config_names() { local rainbow_config_names rainbow_config_names=( "${(f)$(_call_program configs rainbow --print-config-names 2>/dev/null)}" ) _describe -t 'rainbow config names' 'rainbow config name' rainbow_config_names } (( $+functions[_rainbow_config_files] )) || _rainbow_config_files() { _files -g "*.cfg" } _rainbow "$@" ================================================ FILE: templates/rainbow.man ================================================ .TH RAINBOW 1 .SH NAME rainbow \- Colorize commands output using patterns. .SH SYNOPSIS .B rainbow [rainbow options...] command [command args...] command [command args...] | .B rainbow [rainbow options...] .SH DESCRIPTION Display commands output colored matching words or regular expressions. If you don't specify a command, STDIN is used. .SH OPTIONS These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. .PP .B Common options .TP .B \-v, \-\-version show program's version number and exit. .TP .B \-h, \-\-help show help message and exit. .TP .B \-\-print-path Print config paths and exit. .TP .B \-\-print-config-names Print config names and exit. .TP .B \-f CONFIG, \-\-config CONFIG Load a config file defining patterns. Go to /usr/share/rainbow/configs for examples. The option can be called several times. .TP .B \-\-disable\-stderr\-filtering Disable STDERR filtering, which can have unexpected effects on commands directly using tty (such as top). {%- for filter_group in filter_groups %} .PP .B {{ filter_group.name }} \- {{ filter_group.help }} {%- for filter in filter_group.filters %} .TP .B {%- if filter.short_option %} \-{{ filter.short_option }}, \-\-{{ filter.long_option }} PATTERN {{ filter.help }} {%- else %} \-\-{{ filter.long_option }} PATTERN {{ filter.help }} {%- endif %} {%- endfor %} {%- endfor %} .SH EXAMPLES .TP Colorize the 'diff' command output using the builtin config: rainbow diff file1 file2 .TP Colorize the 'ping' command output using the builtin config: rainbow ping www.google.com .TP Ping Google with IP addresses colorized in red: rainbow \-\-red '\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}' ping www.google.com .TP Pipe content to rainbow instead of providing a command: tail -f my-file.log | rainbow \-\-config my-config .SH CONFIGS .TP The \-f or \-\-config option allows to load patterns defined in a configuration file, for example: rainbow \-\-config MY_CONFIG .PP rainbow will look for the config at the following places, in the following order: * $RAINBOW_CONFIGS/MY_CONFIG * $RAINBOW_CONFIGS/MY_CONFIG.cfg * $XDG_CONFIG_HOME/rainbow/MY_CONFIG * $XDG_CONFIG_HOME/rainbow/MY_CONFIG.cfg * ~/.rainbow/MY_CONFIG * ~/.rainbow/MY_CONFIG.cfg * /etc/rainbow/MY_CONFIG * /etc/rainbow/MY_CONFIG.cfg * /MY_CONFIG * /usr/share/rainbow/configs/MY_CONFIG.cfg rainbow comes bundled with several configs, for example for the ping, top and diff commands, for Tomcat/JBoss logs, etc. You can override the default configs with your own ones by placing them in $RAINBOW_CONFIGS, ~/.rainbow or /etc/rainbow. .SH BUGS Please report bugs to https://github.com/nicoulaj/rainbow/issues. .SH AUTHOR .PP This manual page was written by Julien Nicoulaud , for the rainbow project (https://github.com/nicoulaj/rainbow), and may be used by others. ================================================ FILE: tests/__init__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ================================================ FILE: tests/command/__init__.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ================================================ FILE: tests/command/test_execute.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os import signal import sys from textwrap import dedent from threading import Timer import pytest from rainbow import ansi from rainbow.command.execute import ExecuteCommand from rainbow.transformer import ReplaceTransformer from tests.test_utils import stdin_empty_all_variants, stdin_from_string_all_variants @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_true(capfd, stdin): with stdin: assert ExecuteCommand(['true']).run() == 0 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_false(capfd, stdin): with stdin: assert ExecuteCommand(['false']).run() == 1 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys sys.stdout.write('stdout\n') sys.stdout.flush() sys.stderr.write('stderr\n') sys.stderr.flush() ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout\n' + ansi.ANSI_RESET_ALL assert err == 'stderr\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity_no_newline(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys sys.stdout.write('stdout') sys.stdout.flush() sys.stderr.write('stderr') sys.stderr.flush() ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout' + ansi.ANSI_RESET_ALL assert err == 'stderr' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity_partial_line(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys, time sys.stdout.write('stdout1') sys.stdout.flush() time.sleep(0.5) sys.stderr.write('stderr1') sys.stderr.flush() time.sleep(0.5) sys.stdout.write('stdout2') sys.stdout.flush() time.sleep(0.5) sys.stderr.write('stderr2') ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout1\rstdout1stdout2' + ansi.ANSI_RESET_ALL assert err == 'stderr1\rstderr1stderr2' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity_overwritten_line(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys, time sys.stdout.write('stdout1') sys.stdout.flush() time.sleep(0.5) sys.stderr.write('stderr1') sys.stderr.flush() time.sleep(0.5) sys.stdout.write('\rstdout2') sys.stdout.flush() time.sleep(0.5) sys.stderr.write('\rstderr2') sys.stderr.flush() time.sleep(0.5) ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout1\rstdout1\rstdout2' + ansi.ANSI_RESET_ALL assert err == 'stderr1\rstderr1\rstderr2' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity_bash(capfd, stdin): with stdin: assert ExecuteCommand(['/bin/bash', '-c', 'echo "stdout"; echo "stderr" >&2']).run() == 0 out, err = capfd.readouterr() assert out == 'stdout\n' + ansi.ANSI_RESET_ALL assert err == 'stderr\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_identity_mixed_stdin_and_err(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys sys.stdout.write('stdout1\n') sys.stderr.write('stderr2\n') sys.stdout.write('stdout3') sys.stdout.write('stdout4\n') sys.stderr.write('stderr4') sys.stderr.write('stderr5\n') ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout1\nstdout3stdout4\n' + ansi.ANSI_RESET_ALL assert err == 'stderr2\nstderr4stderr5\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_bufferized_output(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys, time sys.stdout.write('stdout1\n') sys.stdout.flush() time.sleep(0.5) sys.stdout.write('stdout2\nstdout3\n') sys.stdout.flush() time.sleep(0.5) sys.stdout.write('stdout4\n') ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'stdout1\nstdout2\nstdout3\nstdout4\n' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_bufferized_partial_lines(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys, time sys.stdout.write('std') sys.stdout.flush() time.sleep(0.5) sys.stdout.write('out1\nstdout2\n') ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'std\rstdout1\nstdout2\n' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_unflushed_output(capfd, stdin): with stdin: assert ExecuteCommand( [sys.executable, '-c', dedent(r''' import sys sys.stdout.write('message') ''')] ).run() == 0 out, err = capfd.readouterr() assert out == 'message' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.skip(reason="Issue #23: missing unit tests for executing subcommands with stdin") @pytest.mark.timeout(2) @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line\n'), ids=str) def test_cat_stdin(capfd, stdin): with stdin: assert ExecuteCommand(['cat']).run() == 0 out, err = capfd.readouterr() assert out == 'line\n' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.skip(reason="Issue #23: missing unit tests for executing subcommands with stdin") @pytest.mark.timeout(2) @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line1\nline2\n'), ids=str) def test_cat_stdin_two_lines(capfd, stdin): with stdin: assert ExecuteCommand(['cat']).run() == 0 out, err = capfd.readouterr() assert out == 'line1\nline2\n' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stdout_transformer(capfd, stdin): with stdin: assert ExecuteCommand( args=[sys.executable, '-c', dedent(r''' import sys sys.stdout.write('message\n') sys.stderr.write('message\n') ''')], stdout_transformer=ReplaceTransformer('message', 'REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'REPLACED\n' + ansi.ANSI_RESET_ALL assert err == 'message\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stdout_transformer_bash(capfd, stdin): with stdin: assert ExecuteCommand( args=['/bin/bash', '-c', 'echo "message"; echo "message" >&2'], stdout_transformer=ReplaceTransformer('message', 'REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'REPLACED\n' + ansi.ANSI_RESET_ALL assert err == 'message\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stderr_transformer(capfd, stdin): with stdin: assert ExecuteCommand( args=[sys.executable, '-c', dedent(r''' import sys sys.stdout.write('message\n') sys.stderr.write('message\n') ''')], stderr_transformer=ReplaceTransformer('message', 'REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'message\n' + ansi.ANSI_RESET_ALL assert err == 'REPLACED\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stderr_transformer_bash(capfd, stdin): with stdin: assert ExecuteCommand( args=['/bin/bash', '-c', 'echo "message"; echo "message" >&2'], stderr_transformer=ReplaceTransformer('message', 'REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'message\n' + ansi.ANSI_RESET_ALL assert err == 'REPLACED\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stdout_and_stderr_transformers(capfd, stdin): with stdin: assert ExecuteCommand( args=[sys.executable, '-c', dedent(r''' import sys sys.stdout.write('stdout\n') sys.stderr.write('stderr\n') ''')], stdout_transformer=ReplaceTransformer('stdout', 'STDOUT_REPLACED'), stderr_transformer=ReplaceTransformer('stderr', 'STDERR_REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'STDOUT_REPLACED\n' + ansi.ANSI_RESET_ALL assert err == 'STDERR_REPLACED\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stdout_and_stderr_transformers_bash(capfd, stdin): with stdin: assert ExecuteCommand( args=['/bin/bash', '-c', 'echo "stdout"; echo "stderr" >&2'], stdout_transformer=ReplaceTransformer('stdout', 'STDOUT_REPLACED'), stderr_transformer=ReplaceTransformer('stderr', 'STDERR_REPLACED') ).run() == 0 out, err = capfd.readouterr() assert out == 'STDOUT_REPLACED\n' + ansi.ANSI_RESET_ALL assert err == 'STDERR_REPLACED\n' + ansi.ANSI_RESET_ALL @pytest.mark.skip(reason="Issue #23: missing unit tests for executing subcommands with stdin") @pytest.mark.timeout(2) @pytest.mark.parametrize("stdin", stdin_from_string_all_variants("foo bar"), ids=str) def test_read_bash(capfd, stdin): with stdin: assert ExecuteCommand( args=['/bin/bash', '-c', 'read -p "Enter your input:" result; echo "You entered: $result"'] ).run() == 0 out, err = capfd.readouterr() assert out == 'Enter your input:\nYou entered: foo bar' + ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.timeout(5) @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_interrupted(stdin): with stdin: Timer(1.0, os.kill, [os.getpid(), signal.SIGINT]).start() assert ExecuteCommand(['sleep', '100']).run() == -2 @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_malformed_utf8(stdin): with stdin: assert ExecuteCommand(['cat', 'tests/data/UTF-8-test.txt']).run() == 0 ================================================ FILE: tests/command/test_noop.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import pytest from rainbow.command.noop import NoOpCommand def test_noop(capsys): assert NoOpCommand().run() == 0 out, err = capsys.readouterr() assert out == '' assert err == '' @pytest.mark.parametrize("exit_code", range(-256, 256), ids=str) def test_noop_with_exit_code(capsys, exit_code): assert NoOpCommand(exit_code).run() == exit_code out, err = capsys.readouterr() assert out == '' assert err == '' ================================================ FILE: tests/command/test_print_config_names.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- from rainbow import DEFAULT_PATH from rainbow.command.print_config_names import PrintConfigNamesCommand def test_empty_path(capsys): assert PrintConfigNamesCommand().run() == 0 out, err = capsys.readouterr() assert out == '' assert err == '' def test_default_path(capsys): assert PrintConfigNamesCommand(DEFAULT_PATH).run() == 0 out, err = capsys.readouterr() assert 'diff\n' in out assert 'ping' in out assert 'md5sum' in out assert 'env' in out assert 'java-stack-trace' in out assert 'host' in out assert 'ifconfig' in out assert 'traceroute' in out assert 'df' in out assert 'mvn' in out assert 'tomcat' in out assert err == '' ================================================ FILE: tests/command/test_print_path.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os from rainbow import DEFAULT_PATH from rainbow.command.print_path import PrintPathCommand def test_empty_path(capsys): assert PrintPathCommand().run() == 0 out, err = capsys.readouterr() assert out == '' assert err == '' def test_default_path(capsys): assert PrintPathCommand(DEFAULT_PATH).run() == 0 out, err = capsys.readouterr() assert os.path.expanduser('~/.rainbow') in out assert os.path.join(os.sep, 'etc', 'rainbow') in out assert os.path.join(os.sep, 'rainbow', 'config', 'builtin') in out ================================================ FILE: tests/command/test_stdin.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os import signal from threading import Timer import pytest from rainbow import ansi from rainbow.command.stdin import STDINCommand from tests.test_utils import stdin_empty_all_variants, stdin_from_string_all_variants, stdin_from_file_all_variants, \ stdin_pipe @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_empty(capfd, stdin): with stdin: assert STDINCommand().run() == 0 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == '' @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line\n'), ids=str) def test_one_line(capfd, stdin): with stdin: assert STDINCommand().run() == 0 out, err = capfd.readouterr() assert out == 'line\n' + ansi.ANSI_RESET_ALL assert err == '' @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line1\nline2\n'), ids=str) def test_several_lines(capfd, stdin): with stdin: assert STDINCommand().run() == 0 out, err = capfd.readouterr() assert out == 'line1\nline2\n' + ansi.ANSI_RESET_ALL assert err == '' def test_interrupted(capfd): with stdin_pipe(): Timer(1.0, os.kill, [os.getpid(), signal.SIGINT]).start() assert STDINCommand().run() == 1 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == '' @pytest.mark.parametrize("stdin", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str) def test_malformed_utf8(stdin): with stdin: assert STDINCommand().run() == 0 ================================================ FILE: tests/config/__init__.py ================================================ ================================================ FILE: tests/config/test_builtin.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import os import pytest from rainbow.ansi import ANSI_BACKGROUND_BLUE, ANSI_BACKGROUND_CYAN, \ ANSI_BACKGROUND_GREEN, ANSI_BACKGROUND_MAGENTA, ANSI_BACKGROUND_RED, \ ANSI_BACKGROUND_RESET, ANSI_BACKGROUND_YELLOW, ANSI_BACKGROUND_LIGHT_RED, \ ANSI_BACKGROUND_LIGHT_GREEN, ANSI_BACKGROUND_LIGHT_YELLOW, \ ANSI_BACKGROUND_LIGHT_BLUE, ANSI_BACKGROUND_LIGHT_CYAN, ANSI_BLINK, \ ANSI_BLINK_RAPID, ANSI_BOLD, ANSI_FAINT, ANSI_FOREGROUND_BLUE, \ ANSI_FOREGROUND_CYAN, ANSI_FOREGROUND_GREEN, ANSI_FOREGROUND_MAGENTA, \ ANSI_FOREGROUND_RED, ANSI_FOREGROUND_RESET, ANSI_FOREGROUND_YELLOW, \ ANSI_FOREGROUND_LIGHT_RED, ANSI_FOREGROUND_LIGHT_GREEN, \ ANSI_FOREGROUND_LIGHT_YELLOW, ANSI_FOREGROUND_LIGHT_BLUE, \ ANSI_FOREGROUND_LIGHT_CYAN, ANSI_HIDE, ANSI_ITALIC, ANSI_NEGATIVE, \ ANSI_RESET_ALL, ANSI_RESET_BLINK, ANSI_RESET_HIDE, ANSI_RESET_INTENSITY, \ ANSI_RESET_ITALIC, ANSI_RESET_NEGATIVE, ANSI_RESET_UNDERLINE, \ ANSI_UNDERLINE, ANSI_UNDERLINE_DOUBLE from rainbow.config.loader import ConfigLoader from rainbow.transformer import DummyTransformerBuilder, TransformerBuilder, ListTransformer, ReplaceTransformer from tests.test_utils import BUILTIN_CONFIGS_NAMES, BUILTIN_CONFIGS_REFERENCES, BUILTIN_CONFIGS_REFERENCE_PAIRS # Use this to update references. # NEVER commit it with True! GENERATE_REFERENCES = False def load_builtin_config(config): stdout_builder = TransformerBuilder() errors = [] ConfigLoader(stdout_builder=stdout_builder, stderr_builder=DummyTransformerBuilder(), paths=['rainbow/config/builtin'], error_handler=errors.append) \ .load_config_by_name(config) return stdout_builder.build(), errors def test_generate_flag_has_not_been_committed(): assert not (bool(os.environ.get('CI', False)) and GENERATE_REFERENCES) @pytest.mark.parametrize("config", BUILTIN_CONFIGS_NAMES) def test_config_has_at_least_one_reference(config): assert len(BUILTIN_CONFIGS_REFERENCES[config]) > 0 @pytest.mark.parametrize("config", BUILTIN_CONFIGS_NAMES) def test_config_loads_without_errors(config): (transformer, errors) = load_builtin_config(config) assert not errors @pytest.mark.parametrize("test", BUILTIN_CONFIGS_REFERENCE_PAIRS, ids=str) def test_config_by_reference(test): config_name = test[0] input_file = test[1] expected_file = input_file + '.out' (transformer, errors) = load_builtin_config(config_name) assert not errors transformer = ListTransformer([ transformer, ReplaceTransformer(ANSI_FOREGROUND_RED, '[FOREGROUND_RED]'), ReplaceTransformer(ANSI_FOREGROUND_GREEN, '[FOREGROUND_GREEN]'), ReplaceTransformer(ANSI_FOREGROUND_YELLOW, '[FOREGROUND_YELLOW]'), ReplaceTransformer(ANSI_FOREGROUND_BLUE, '[FOREGROUND_BLUE]'), ReplaceTransformer(ANSI_FOREGROUND_MAGENTA, '[FOREGROUND_MAGENTA]'), ReplaceTransformer(ANSI_FOREGROUND_CYAN, '[FOREGROUND_CYAN]'), ReplaceTransformer(ANSI_FOREGROUND_RESET, '[FOREGROUND_RESET]'), ReplaceTransformer(ANSI_FOREGROUND_LIGHT_RED, '[FOREGROUND_LIGHT_RED]'), ReplaceTransformer(ANSI_FOREGROUND_LIGHT_GREEN, '[FOREGROUND_LIGHT_GREEN]'), ReplaceTransformer(ANSI_FOREGROUND_LIGHT_YELLOW, '[FOREGROUND_LIGHT_YELLOW]'), ReplaceTransformer(ANSI_FOREGROUND_LIGHT_BLUE, '[FOREGROUND_LIGHT_BLUE]'), ReplaceTransformer(ANSI_FOREGROUND_LIGHT_CYAN, '[ANSI_FOREGROUND_LIGHT_CYAN]'), ReplaceTransformer(ANSI_BACKGROUND_RED, '[BACKGROUND_RED]'), ReplaceTransformer(ANSI_BACKGROUND_GREEN, '[BACKGROUND_GREEN]'), ReplaceTransformer(ANSI_BACKGROUND_YELLOW, '[BACKGROUND_YELLOW]'), ReplaceTransformer(ANSI_BACKGROUND_BLUE, '[BACKGROUND_BLUE]'), ReplaceTransformer(ANSI_BACKGROUND_MAGENTA, '[BACKGROUND_MAGENTA]'), ReplaceTransformer(ANSI_BACKGROUND_CYAN, '[BACKGROUND_CYAN]'), ReplaceTransformer(ANSI_BACKGROUND_LIGHT_RED, '[BACKGROUND_LIGHT_RED]'), ReplaceTransformer(ANSI_BACKGROUND_LIGHT_GREEN, '[BACKGROUND_LIGHT_GREEN]'), ReplaceTransformer(ANSI_BACKGROUND_LIGHT_YELLOW, '[BACKGROUND_LIGHT_YELLOW]'), ReplaceTransformer(ANSI_BACKGROUND_LIGHT_BLUE, '[BACKGROUND_LIGHT_BLUE]'), ReplaceTransformer(ANSI_BACKGROUND_LIGHT_CYAN, '[BACKGROUND_LIGHT_CYAN]'), ReplaceTransformer(ANSI_BACKGROUND_RESET, '[BACKGROUND_RESET]'), ReplaceTransformer(ANSI_BOLD, '[BOLD]'), ReplaceTransformer(ANSI_FAINT, '[FAINT]'), ReplaceTransformer(ANSI_ITALIC, '[ITALIC]'), ReplaceTransformer(ANSI_UNDERLINE, '[UNDERLINE]'), ReplaceTransformer(ANSI_UNDERLINE_DOUBLE, '[UNDERLINE_DOUBLE]'), ReplaceTransformer(ANSI_BLINK, '[BLINK]'), ReplaceTransformer(ANSI_BLINK_RAPID, '[BLINK_RAPID]'), ReplaceTransformer(ANSI_NEGATIVE, '[NEGATIVE]'), ReplaceTransformer(ANSI_HIDE, '[HIDE]'), ReplaceTransformer(ANSI_RESET_INTENSITY, '[RESET_INTENSITY]'), ReplaceTransformer(ANSI_RESET_ITALIC, '[RESET_ITALIC]'), ReplaceTransformer(ANSI_RESET_UNDERLINE, '[RESET_UNDERLINE]'), ReplaceTransformer(ANSI_RESET_BLINK, '[RESET_BLINK]'), ReplaceTransformer(ANSI_RESET_NEGATIVE, '[RESET_NEGATIVE]'), ReplaceTransformer(ANSI_RESET_HIDE, '[RESET_HIDE]'), ReplaceTransformer(ANSI_RESET_ALL, '[RESET_ALL]') ]) with open(input_file) as f: actual_lines = [transformer.transform(line) for line in f.read().splitlines()] if GENERATE_REFERENCES: with open(expected_file, 'w') as f: for line in actual_lines: f.write('%s\n' % line) with open(expected_file) as f: expected_lines = f.read().splitlines() assert actual_lines == expected_lines ================================================ FILE: tests/config/test_loader.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import pytest from rainbow.config.loader import ConfigLoader, PRECOMMANDS from rainbow.transformer import IdentityTransformer from rainbow.transformer import TransformerBuilder def load_by_name(config): stdout_builder = TransformerBuilder() stderr_builder = TransformerBuilder() errors = [] ConfigLoader(stdout_builder=stdout_builder, stderr_builder=stderr_builder, paths=['tests/data/cfg'], error_handler=errors.append) \ .load_config_by_name(config) return stdout_builder.build(), stderr_builder.build(), errors def load_from_command_line(args): stdout_builder = TransformerBuilder() stderr_builder = TransformerBuilder() errors = [] ConfigLoader(stdout_builder=stdout_builder, stderr_builder=stderr_builder, paths=['tests/data/cfg'], error_handler=errors.append) \ .load_config_from_command_line(args) return stdout_builder.build(), stderr_builder.build(), errors def test_load_unresolvable_config_file(): (stdout_transformer, stderr_transformer, errors) = load_by_name('does_not_exist') assert errors == ['Could not resolve config "does_not_exist"'] def test_load_empty_config_file(): (stdout_transformer, stderr_transformer, errors) = load_by_name(u'tests/data/cfg/config001.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_load_empty_config_file_from_command_line(): (stdout_transformer, stderr_transformer, errors) = load_from_command_line([u'config001']) assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_find_config_name_from_command_line_empty_args(): assert not ConfigLoader.find_config_name_from_command_line([]) def test_find_config_name_from_command_line_one_arg(): assert ConfigLoader.find_config_name_from_command_line(['foo']) == 'foo' def test_find_config_name_from_command_line_several_args(): assert ConfigLoader.find_config_name_from_command_line(['foo', 'bar', 'bar']) == 'foo' def test_find_config_name_from_command_line_full_path(): assert ConfigLoader.find_config_name_from_command_line(['/usr/bin/foo']) == 'foo' @pytest.mark.parametrize("precommand", PRECOMMANDS) def test_find_config_name_from_command_line_precommand(precommand): assert ConfigLoader.find_config_name_from_command_line([precommand, 'foo']) == 'foo' @pytest.mark.parametrize("precommand", PRECOMMANDS) def test_find_config_name_from_command_line_precommand_with_args(precommand): assert ConfigLoader.find_config_name_from_command_line([precommand, '--arg', 'foo']) == 'foo' @pytest.mark.parametrize("precommand", PRECOMMANDS) def test_find_config_name_from_command_line_full_path_precommand(precommand): assert ConfigLoader.find_config_name_from_command_line([precommand, '/usr/bin/foo']) == 'foo' @pytest.mark.parametrize("precommand", PRECOMMANDS) def test_find_config_name_from_command_line_full_path_precommand_with_args(precommand): assert ConfigLoader.find_config_name_from_command_line([precommand, '--arg', '/usr/bin/foo']) == 'foo' ================================================ FILE: tests/config/test_locator.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- from rainbow.config.locator import ConfigLocator def test_locate_config_file_empty_path(): assert ConfigLocator([]).locate_config_file("tests/data/cfg/config001") == "tests/data/cfg/config001.cfg" def test_locate_inexistent_config_file_empty_path(): assert not ConfigLocator([]).locate_config_file("does_not_exist") def test_locate_config_file_none_in_path(): assert ConfigLocator([None]).locate_config_file("tests/data/cfg/config001") == "tests/data/cfg/config001.cfg" def test_locate_inexistent_config_file_none_in_path(): assert not ConfigLocator([None]).locate_config_file("does_not_exist") def test_locate_config_file_path_without_extension(): assert ConfigLocator().locate_config_file("tests/data/cfg/config001") == "tests/data/cfg/config001.cfg" def test_locate_config_file_path(): assert ConfigLocator().locate_config_file("tests/data/cfg/config001.cfg") == "tests/data/cfg/config001.cfg" def test_locate_config_file_filename(): assert ConfigLocator(['tests/data/cfg']).locate_config_file("config001.cfg") == "tests/data/cfg/config001.cfg" def test_locate_config_file_filename_without_extension(): assert ConfigLocator(['tests/data/cfg']).locate_config_file("config001") == "tests/data/cfg/config001.cfg" def test_locate_config_file_in_directory_filename(): assert ConfigLocator().locate_config_file_in_directory('tests/data/cfg', "config001.cfg") == "tests/data/cfg/config001.cfg" def test_locate_config_file_in_directory_filename_without_extension(): assert ConfigLocator().locate_config_file_in_directory('tests/data/cfg', "config001") == "tests/data/cfg/config001.cfg" ================================================ FILE: tests/config/test_parser.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- import sys import pytest from rainbow import ansi from rainbow.config.parser import ConfigParser from rainbow.transformer import IdentityTransformer from rainbow.transformer import InsertBeforeAndAfterRegexTransformer from rainbow.transformer import ListTransformer from rainbow.transformer import TransformerBuilder def parse(config): stdout_builder = TransformerBuilder() stderr_builder = TransformerBuilder() errors = [] ConfigParser(stdout_builder=stdout_builder, stderr_builder=stderr_builder, paths=None, error_handler=errors.append) \ .parse_file(config) return stdout_builder.build(), stderr_builder.build(), errors def test_parse_inexistent_config(): (stdout_transformer, stderr_transformer, errors) = parse(u'does_not_exist') assert errors == ['Could not open config file "does_not_exist"'] def test_parse_empty_config(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config001.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_empty_filters_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config002.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_empty_general_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config003.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_empty_filters_and_general_sections(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config004.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) @pytest.mark.skipif(condition=sys.version_info[0] < 3, reason="Issue #2: Python 2 does not detect duplicate sections") def test_parse_two_empty_filters_sections(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config005.cfg') assert errors == ['Duplicate section "filters" in "tests/data/cfg/config005.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_one_filter(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config006.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_two_different_filters(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config007.cfg') assert not errors assert isinstance(stdout_transformer, ListTransformer) assert isinstance(stderr_transformer, ListTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[0].regex.pattern == 'ERROR' assert stderr_transformer.transformers[0].regex.pattern == 'ERROR' assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[1].regex.pattern == 'WARN' assert stderr_transformer.transformers[1].regex.pattern == 'WARN' assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_YELLOW assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_YELLOW assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET @pytest.mark.skip(reason="Issue #2: Duplicate key support not implemented") def test_parse_two_times_same_filter(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config008.cfg') assert not errors assert isinstance(stdout_transformer, ListTransformer) assert isinstance(stderr_transformer, ListTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[0].regex.pattern == 'ERROR' assert stderr_transformer.transformers[0].regex.pattern == 'ERROR' assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[1].regex.pattern == 'WARN' assert stderr_transformer.transformers[1].regex.pattern == 'WARN' assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET @pytest.mark.skip(reason="Issue #2: Support of filters in global section not implemented") def test_parse_filter_in_global_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config009.cfg') assert not errors assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_one_filter_and_stderr_setting_enabled(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config010.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_and_stderr_setting_enabled_uppercase(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config011.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_and_stderr_setting_disabled(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config012.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, IdentityTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_and_stderr_setting_disabled_uppercase(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config013.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, IdentityTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_and_stderr_setting_disabled_with_no(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config030.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, IdentityTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_uppercase(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config014.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_one_filter_extra_spaces_before_regex(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config015.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_unknown_filter(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config016.cfg') assert errors == ['Unknown filter "foo" in config "tests/data/cfg/config016.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_unresolved_import(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config017.cfg') assert errors == ['Failed to resolve import of "foo" in config "tests/data/cfg/config017.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_unresolved_import_and_valid_filter(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config018.cfg') assert errors == ['Failed to resolve import of "foo" in config "tests/data/cfg/config018.cfg"'] assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_relative_import_without_extension(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config019.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_relative_import_with_extension(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config020.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_invalid_key_in_general_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config021.cfg') assert errors == ['Invalid key "foo" in general section of config "tests/data/cfg/config021.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_two_times_same_filter_once_in_config_once_in_import(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config022.cfg') assert not errors assert isinstance(stdout_transformer, ListTransformer) assert isinstance(stderr_transformer, ListTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[0].regex.pattern == 'ERROR' assert stderr_transformer.transformers[0].regex.pattern == 'ERROR' assert stdout_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert isinstance(stdout_transformer.transformers[1], InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.transformers[1].regex.pattern == 'WARNING' assert stderr_transformer.transformers[1].regex.pattern == 'WARNING' assert stdout_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.transformers[1].before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.transformers[1].after == ansi.ANSI_FOREGROUND_RESET def test_parse_multiple_relative_imports_without_extension(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config023.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_filter_using_filter_name(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config024.cfg') assert not errors assert isinstance(stdout_transformer, InsertBeforeAndAfterRegexTransformer) assert isinstance(stderr_transformer, InsertBeforeAndAfterRegexTransformer) assert stdout_transformer.regex.pattern == 'ERROR' assert stderr_transformer.regex.pattern == 'ERROR' assert stdout_transformer.before == ansi.ANSI_FOREGROUND_RED assert stderr_transformer.before == ansi.ANSI_FOREGROUND_RED assert stdout_transformer.after == ansi.ANSI_FOREGROUND_RESET assert stderr_transformer.after == ansi.ANSI_FOREGROUND_RESET def test_parse_filter_with_empty_pattern(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config025.cfg') assert errors == ['Empty pattern for "red" in config "tests/data/cfg/config025.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_empty_imports_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config026.cfg') assert errors == ['Empty imports section in config "tests/data/cfg/config026.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_multiple_imports_with_empty_one(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config027.cfg') assert errors == ['Empty import in config "tests/data/cfg/config027.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_invalid_section(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config028.cfg') assert errors == ['Invalid section "foo" in config "tests/data/cfg/config028.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) def test_parse_invalid_stderr_filtering_value(): (stdout_transformer, stderr_transformer, errors) = parse(u'tests/data/cfg/config029.cfg') assert errors == ['Invalid value "foo" for key "enable-stderr-filtering" in config "tests/data/cfg/config029.cfg"'] assert isinstance(stdout_transformer, IdentityTransformer) assert isinstance(stderr_transformer, IdentityTransformer) ================================================ FILE: tests/data/cfg/config001.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- ================================================ FILE: tests/data/cfg/config002.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] ================================================ FILE: tests/data/cfg/config003.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] ================================================ FILE: tests/data/cfg/config004.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] [filters] ================================================ FILE: tests/data/cfg/config005.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] [filters] ================================================ FILE: tests/data/cfg/config006.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] red: ERROR ================================================ FILE: tests/data/cfg/config007.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] red: ERROR yellow: WARN ================================================ FILE: tests/data/cfg/config008.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] red: ERROR red: WARN ================================================ FILE: tests/data/cfg/config009.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- red: ERROR ================================================ FILE: tests/data/cfg/config010.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering=true [filters] red: ERROR ================================================ FILE: tests/data/cfg/config011.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering=True [filters] red: ERROR ================================================ FILE: tests/data/cfg/config012.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering=false [filters] red: ERROR ================================================ FILE: tests/data/cfg/config013.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering=False [filters] red: ERROR ================================================ FILE: tests/data/cfg/config014.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] RED: ERROR ================================================ FILE: tests/data/cfg/config015.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] red: ERROR ================================================ FILE: tests/data/cfg/config016.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] foo: ERROR ================================================ FILE: tests/data/cfg/config017.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: foo ================================================ FILE: tests/data/cfg/config018.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: foo [filters] red: ERROR ================================================ FILE: tests/data/cfg/config019.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: config006 ================================================ FILE: tests/data/cfg/config020.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: config006.cfg ================================================ FILE: tests/data/cfg/config021.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] foo: bar ================================================ FILE: tests/data/cfg/config022.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: config006 [filters] red: WARNING ================================================ FILE: tests/data/cfg/config023.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: config006, config002 ================================================ FILE: tests/data/cfg/config024.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] foreground-red: ERROR ================================================ FILE: tests/data/cfg/config025.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] red: ================================================ FILE: tests/data/cfg/config026.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: ================================================ FILE: tests/data/cfg/config027.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] imports: config001, , config002 ================================================ FILE: tests/data/cfg/config028.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [foo] ================================================ FILE: tests/data/cfg/config029.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering=foo ================================================ FILE: tests/data/cfg/config030.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [general] enable-stderr-filtering: no [filters] red: ERROR ================================================ FILE: tests/data/cfg/config031.cfg ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ---------------------------------------------------------------------- [filters] foreground-red: test r: test red: test foreground-light-red: test lightred: test foreground-green: test g: test green: test foreground-light-green: test lightgreen: test foreground-yellow: test y: test yellow: test foreground-light-yellow: test lightyellow: test foreground-blue: test b: test blue: test foreground-light-blue: test lightblue: test foreground-magenta: test m: test magenta: test foreground-cyan: test c: test cyan: test foreground-light-cyan: test lightcyan: test foreground-red-before: test red-before: test foreground-light-red-before: test lightred-before: test foreground-green-before: test green-before: test foreground-light-green-before: test lightgreen-before: test foreground-yellow-before: test yellow-before: test foreground-light-yellow-before: test lightyellow-before: test foreground-blue-before: test blue-before: test foreground-magenta-before: test foreground-light-blue-before: test lightblue-before: test magenta-before: test foreground-cyan-before: test cyan-before: test foreground-light-cyan-before: test lightcyan-before: test foreground-reset-before: test reset-before: test foreground-red-after: test red-after: test foreground-light-red-after: test lightred-after: test foreground-green-after: test green-after: test foreground-light-green-after: test lightgreen-after: test foreground-yellow-after: test yellow-after: test foreground-light-yellow-after: test lightyellow-after: test foreground-blue-after: test blue-after: test foreground-light-blue-after: test lightblue-after: test foreground-magenta-after: test magenta-after: test foreground-cyan-after: test cyan-after: test foreground-light-cyan-after: test lightcyan-after: test foreground-reset-after: test reset-after: test background-red: test background-light-red: test background-lightred: test background-green: test background-light-green: test background-lightgreen: test background-yellow: test background-light-yellow: test background-lightyellow: test background-blue: test background-light-blue: test background-lightblue: test background-magenta: test background-cyan: test background-light-cyan: test background-lightcyan: test background-red-before: test background-light-red-before: test background-lightred-before: test background-green-before: test background-light-green-before: test background-lightgreen-before: test background-yellow-before: test background-light-yellow-before: test background-lightyellow-before: test background-blue-before: test background-light-blue-before: test background-lightblue-before: test background-magenta-before: test background-cyan-before: test background-light-cyan-before: test background-lightcyan-before: test background-reset-before: test background-red-after: test background-light-red-after: test background-lightred-after: test background-green-after: test background-light-green-after: test background-lightgreen-after: test background-yellow-after: test background-light-yellow-after: test background-lightyellow-after: test background-blue-after: test background-light-blue-after: test background-lightblue-after: test background-magenta-after: test background-cyan-after: test background-light-cyan-after: test background-lightcyan-after: test background-reset-after: test bold: test bold-before: test bold-after: test faint: test faint-before: test faint-after: test intensity-reset-before: test intensity-reset-after: test italic: test italic-before: test italic-after: test italic-reset-before: test italic-reset-after: test underline: test underline-before: test underline-after: test underline-double: test underline-double-before: test underline-double-after: test underline-reset-before: test underline-reset-after: test blink: test blink-before: test blink-after: test blink-rapid: test blink-rapid-before: test blink-rapid-after: test blink-reset-before: test blink-reset-after: test negative: test negative-before: test negative-after: test negative-reset-before: test negative-reset-after: test hide: test hide-before: test hide-after: test hide-reset-before: test hide-reset-after: test ================================================ FILE: tests/data/ref/df-001.log ================================================ Filesystem 1K-blocks Used Available Use% Mounted on dev 8184284 0 8184284 0% /dev run 8189212 1452 8187760 1% /run /dev/sda6 279005228 98120552 166688964 38% / tmpfs 8189212 74428 8114784 1% /dev/shm tmpfs 8189212 0 8189212 0% /sys/fs/cgroup tmpfs 8189212 1016812 7172400 13% /tmp /dev/sda2 97280 25975 71305 27% /boot/efi /dev/sdb1 976760828 902367760 74393068 93% /mnt/data1 tmpfs 1637840 16 1637824 1% /run/user/120 tmpfs 1637840 36 1637804 1% /run/user/1000 ================================================ FILE: tests/data/ref/df-001.log.out ================================================ Filesystem 1K-blocks Used Available Use% Mounted on dev 8184284 0 8184284 0% /dev run 8189212 1452 8187760 1% /run /dev/sda6 279005228 98120552 166688964 38% / tmpfs 8189212 74428 8114784 1% /dev/shm tmpfs 8189212 0 8189212 0% /sys/fs/cgroup tmpfs 8189212 1016812 7172400 13% /tmp /dev/sda2 97280 25975 71305 27% /boot/efi /dev/sdb1 976760828 902367760 74393068 [FOREGROUND_RED]93%[FOREGROUND_RESET] /mnt/data1 tmpfs 1637840 16 1637824 1% /run/user/120 tmpfs 1637840 36 1637804 1% /run/user/1000 ================================================ FILE: tests/data/ref/df-002.log ================================================ df: unrecognized option '--test' Try 'df --help' for more information. ================================================ FILE: tests/data/ref/df-002.log.out ================================================ df: unrecognized option '--test' Try 'df --help' for more information. ================================================ FILE: tests/data/ref/diff-001.log ================================================ diff: missing operand after 'diff' diff: Try 'diff --help' for more information. ================================================ FILE: tests/data/ref/diff-001.log.out ================================================ diff: missing operand after 'diff' diff: Try 'diff --help' for more information. ================================================ FILE: tests/data/ref/diff-002.log ================================================ 0a1 > #!/usr/bin/env python 19,25c20 < [clean] < paths = .cache, < .tox, < build, < dist, < rainbow.egg-info, < .coverage --- > import os 27,29c22 < [build_completion_bash] < shell = bash < output = build/completion/rainbow --- > from setuptools import setup, find_packages 31,33c24,25 < [build_completion_zsh] < shell = zsh < output = build/completion/_rainbow --- > from rainbow import VERSION > from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage 35,39c27,76 < [build_man_page] < output = build/man/rainbow.1 < < [bdist_wheel] < universal = 1 --- > setup( > name='rainbow', > version=VERSION, > author='Julien Nicoulaud', > author_email='julien.nicoulaud@gmail.com', > description='Colorize commands output or STDIN using patterns.', > long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), > license='GPLv3', > url='https://github.com/nicoulaj/rainbow', > keywords='color colorize colorizer pattern', > classifiers=[ > 'Development Status :: 5 - Production/Stable', > 'Environment :: Console', > 'Operating System :: MacOS :: MacOS X', > 'Operating System :: POSIX', > 'Topic :: System', > 'Topic :: Utilities', > 'Intended Audience :: Developers', > 'Intended Audience :: End Users/Desktop', > 'Intended Audience :: System Administrators', > 'Natural Language :: English', > 'Programming Language :: Python', > 'Programming Language :: Python :: 2', > 'Programming Language :: Python :: 2.6', > 'Programming Language :: Python :: 2.7', > 'Programming Language :: Python :: 3', > 'Programming Language :: Python :: 3.3', > 'Programming Language :: Python :: 3.4', > 'Programming Language :: Python :: 3.5', > 'Programming Language :: Python :: 3.6', > 'Programming Language :: Python :: Implementation :: CPython', > 'Programming Language :: Python :: Implementation :: PyPy', > 'License :: OSI Approved :: GNU General Public License (GPL)' > ], > packages=find_packages(exclude=['tests*']), > include_package_data=True, > data_files=[ > ('/etc/bash_completion.d', ['build/completion/rainbow']), > ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']), > ('/usr/share/man/man1', ['build/man/rainbow.1.gz']) > ], > scripts=['scripts/rainbow'], > cmdclass={ > 'clean': Clean, > 'build': Build, > 'build_completion_bash': GenerateCompletion, > 'build_completion_zsh': GenerateCompletion, > 'build_man_page': GenerateManPage > } > ) ================================================ FILE: tests/data/ref/diff-002.log.out ================================================ 0a1 > #!/usr/bin/env python 19,25c20 < [clean] < paths = .cache, < .tox, < build, < dist, < rainbow.egg-info, < .coverage [FOREGROUND_RED]---[FOREGROUND_RESET] > import os 27,29c22 < [build_completion_bash] < shell = bash < output = build/completion/rainbow [FOREGROUND_RED]---[FOREGROUND_RESET] > from setuptools import setup, find_packages 31,33c24,25 < [build_completion_zsh] < shell = zsh < output = build/completion/_rainbow [FOREGROUND_RED]---[FOREGROUND_RESET] > from rainbow import VERSION > from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage 35,39c27,76 < [build_man_page] < output = build/man/rainbow.1 < < [bdist_wheel] < universal = 1 [FOREGROUND_RED]---[FOREGROUND_RESET] > setup( > name='rainbow', > version=VERSION, > author='Julien Nicoulaud', > author_email='julien.nicoulaud@gmail.com', > description='Colorize commands output or STDIN using patterns.', > long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), > license='GPLv3', > url='https://github.com/nicoulaj/rainbow', > keywords='color colorize colorizer pattern', > classifiers=[ > 'Development Status :: 5 - Production/Stable', > 'Environment :: Console', > 'Operating System :: MacOS :: MacOS X', > 'Operating System :: POSIX', > 'Topic :: System', > 'Topic :: Utilities', > 'Intended Audience :: Developers', > 'Intended Audience :: End Users/Desktop', > 'Intended Audience :: System Administrators', > 'Natural Language :: English', > 'Programming Language :: Python', > 'Programming Language :: Python :: 2', > 'Programming Language :: Python :: 2.6', > 'Programming Language :: Python :: 2.7', > 'Programming Language :: Python :: 3', > 'Programming Language :: Python :: 3.3', > 'Programming Language :: Python :: 3.4', > 'Programming Language :: Python :: 3.5', > 'Programming Language :: Python :: 3.6', > 'Programming Language :: Python :: Implementation :: CPython', > 'Programming Language :: Python :: Implementation :: PyPy', > 'License :: OSI Approved :: GNU General Public License (GPL)' > ], > packages=find_packages(exclude=['tests*']), > include_package_data=True, > data_files=[ > ('/etc/bash_completion.d', ['build/completion/rainbow']), > ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']), > ('/usr/share/man/man1', ['build/man/rainbow.1.gz']) > ], > scripts=['scripts/rainbow'], > cmdclass={ > 'clean': Clean, > 'build': Build, > 'build_completion_bash': GenerateCompletion, > 'build_completion_zsh': GenerateCompletion, > 'build_man_page': GenerateManPage > } > ) ================================================ FILE: tests/data/ref/diff-003.log ================================================ --- setup.cfg 2017-03-18 22:27:04.430726575 +0100 +++ setup.py 2017-03-19 11:54:17.386754769 +0100 @@ -1,3 +1,4 @@ +#!/usr/bin/env python # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors @@ -16,24 +17,60 @@ # along with this program. If not, see . # ---------------------------------------------------------------------- -[clean] -paths = .cache, - .tox, - build, - dist, - rainbow.egg-info, - .coverage +import os -[build_completion_bash] -shell = bash -output = build/completion/rainbow +from setuptools import setup, find_packages -[build_completion_zsh] -shell = zsh -output = build/completion/_rainbow +from rainbow import VERSION +from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage -[build_man_page] -output = build/man/rainbow.1 - -[bdist_wheel] -universal = 1 +setup( + name='rainbow', + version=VERSION, + author='Julien Nicoulaud', + author_email='julien.nicoulaud@gmail.com', + description='Colorize commands output or STDIN using patterns.', + long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), + license='GPLv3', + url='https://github.com/nicoulaj/rainbow', + keywords='color colorize colorizer pattern', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX', + 'Topic :: System', + 'Topic :: Utilities', + 'Intended Audience :: Developers', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: System Administrators', + 'Natural Language :: English', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'License :: OSI Approved :: GNU General Public License (GPL)' + ], + packages=find_packages(exclude=['tests*']), + include_package_data=True, + data_files=[ + ('/etc/bash_completion.d', ['build/completion/rainbow']), + ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']), + ('/usr/share/man/man1', ['build/man/rainbow.1.gz']) + ], + scripts=['scripts/rainbow'], + cmdclass={ + 'clean': Clean, + 'build': Build, + 'build_completion_bash': GenerateCompletion, + 'build_completion_zsh': GenerateCompletion, + 'build_man_page': GenerateManPage + } +) ================================================ FILE: tests/data/ref/diff-003.log.out ================================================ [FOREGROUND_RED]--- setup.cfg 2017-03-18 22:27:04.430726575 +0100[FOREGROUND_RESET] [FOREGROUND_GREEN]+++ setup.py 2017-03-19 11:54:17.386754769 +0100[FOREGROUND_RESET] [FOREGROUND_MAGENTA]@@ -1,3 +1,4 @@[FOREGROUND_RESET] [FOREGROUND_GREEN]+#!/usr/bin/env python[FOREGROUND_RESET] [FAINT] # ----------------------------------------------------------------------[RESET_INTENSITY] [FAINT] # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow[RESET_INTENSITY] [FAINT] # copyright (c) 2010-2018 rainbow contributors[RESET_INTENSITY] [FOREGROUND_MAGENTA]@@ -16,24 +17,60 @@[FOREGROUND_RESET] [FAINT] # along with this program. If not, see .[RESET_INTENSITY] [FAINT] # ----------------------------------------------------------------------[RESET_INTENSITY] [FAINT] [RESET_INTENSITY] [FOREGROUND_RED]-[clean][FOREGROUND_RESET] [FOREGROUND_RED]-paths = .cache,[FOREGROUND_RESET] [FOREGROUND_RED]- .tox,[FOREGROUND_RESET] [FOREGROUND_RED]- build,[FOREGROUND_RESET] [FOREGROUND_RED]- dist,[FOREGROUND_RESET] [FOREGROUND_RED]- rainbow.egg-info,[FOREGROUND_RESET] [FOREGROUND_RED]- .coverage[FOREGROUND_RESET] [FOREGROUND_GREEN]+import os[FOREGROUND_RESET] [FAINT] [RESET_INTENSITY] [FOREGROUND_RED]-[build_completion_bash][FOREGROUND_RESET] [FOREGROUND_RED]-shell = bash[FOREGROUND_RESET] [FOREGROUND_RED]-output = build/completion/rainbow[FOREGROUND_RESET] [FOREGROUND_GREEN]+from setuptools import setup, find_packages[FOREGROUND_RESET] [FAINT] [RESET_INTENSITY] [FOREGROUND_RED]-[build_completion_zsh][FOREGROUND_RESET] [FOREGROUND_RED]-shell = zsh[FOREGROUND_RESET] [FOREGROUND_RED]-output = build/completion/_rainbow[FOREGROUND_RESET] [FOREGROUND_GREEN]+from rainbow import VERSION[FOREGROUND_RESET] [FOREGROUND_GREEN]+from rainbow.build import Clean, Build, GenerateCompletion, GenerateManPage[FOREGROUND_RESET] [FAINT] [RESET_INTENSITY] [FOREGROUND_RED]-[build_man_page][FOREGROUND_RESET] [FOREGROUND_RED]-output = build/man/rainbow.1[FOREGROUND_RESET] [FOREGROUND_RED]-[FOREGROUND_RESET] [FOREGROUND_RED]-[bdist_wheel][FOREGROUND_RESET] [FOREGROUND_RED]-universal = 1[FOREGROUND_RESET] [FOREGROUND_GREEN]+setup([FOREGROUND_RESET] [FOREGROUND_GREEN]+ name='rainbow',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ version=VERSION,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ author='Julien Nicoulaud',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ author_email='julien.nicoulaud@gmail.com',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ description='Colorize commands output or STDIN using patterns.',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),[FOREGROUND_RESET] [FOREGROUND_GREEN]+ license='GPLv3',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ url='https://github.com/nicoulaj/rainbow',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ keywords='color colorize colorizer pattern',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ classifiers=[[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Development Status :: 5 - Production/Stable',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Environment :: Console',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Operating System :: MacOS :: MacOS X',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Operating System :: POSIX',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Topic :: System',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Topic :: Utilities',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Intended Audience :: Developers',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Intended Audience :: End Users/Desktop',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Intended Audience :: System Administrators',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Natural Language :: English',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 2',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 2.6',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 2.7',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 3',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 3.3',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 3.4',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 3.5',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: 3.6',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: Implementation :: CPython',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'Programming Language :: Python :: Implementation :: PyPy',[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'License :: OSI Approved :: GNU General Public License (GPL)'[FOREGROUND_RESET] [FOREGROUND_GREEN]+ ],[FOREGROUND_RESET] [FOREGROUND_GREEN]+ packages=find_packages(exclude=['tests*']),[FOREGROUND_RESET] [FOREGROUND_GREEN]+ include_package_data=True,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ data_files=[[FOREGROUND_RESET] [FOREGROUND_GREEN]+ ('/etc/bash_completion.d', ['build/completion/rainbow']),[FOREGROUND_RESET] [FOREGROUND_GREEN]+ ('/usr/share/zsh/site-functions', ['build/completion/_rainbow']),[FOREGROUND_RESET] [FOREGROUND_GREEN]+ ('/usr/share/man/man1', ['build/man/rainbow.1.gz'])[FOREGROUND_RESET] [FOREGROUND_GREEN]+ ],[FOREGROUND_RESET] [FOREGROUND_GREEN]+ scripts=['scripts/rainbow'],[FOREGROUND_RESET] [FOREGROUND_GREEN]+ cmdclass={[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'clean': Clean,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'build': Build,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'build_completion_bash': GenerateCompletion,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'build_completion_zsh': GenerateCompletion,[FOREGROUND_RESET] [FOREGROUND_GREEN]+ 'build_man_page': GenerateManPage[FOREGROUND_RESET] [FOREGROUND_GREEN]+ }[FOREGROUND_RESET] [FOREGROUND_GREEN]+)[FOREGROUND_RESET] ================================================ FILE: tests/data/ref/env-001.log ================================================ LANG=C DISPLAY=:1 SHLVL=1 LOGNAME=nicoulaj XDG_VTNR=2 FREETYPE_PROPERTIES=truetype:interpreter-version=38 PWD=/home/nicoulaj/workspace/rainbow HG=/usr/bin/hg MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins XAUTHORITY=/run/user/1000/gdm/Xauthority GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/terminator.desktop MAVEN_OPTS=-Xmx512m JOURNAL_STREAM=8:248308 ANT_HOME=/usr/share/apache-ant XDG_SESSION_ID=c4 DESKTOP_SESSION=cinnamon QT_QPA_PLATFORMTHEME=qt5ct XDG_SESSION_DESKTOP=cinnamon GDMSESSION=cinnamon USERNAME=nicoulaj WINDOWPATH=2 COLORTERM=truecolor GNOME_DESKTOP_SESSION_ID=this-is-deprecated CINNAMON_VERSION=3.2.8 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus TERMINATOR_UUID=urn:uuid:9aee5f5b-e7f2-4d9e-9974-58474fbaed2a GTK_OVERLAY_SCROLLING=1 GJS_DEBUG_TOPICS=JS ERROR;JS LOG TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x1a6021154d881d VTE_VERSION=4601 TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2 GDM_LANG=fr_FR.utf8 SHELL=/bin/zsh GRADLE_HOME=/usr/share/java/gradle XDG_SESSION_TYPE=x11 GJS_DEBUG_OUTPUT=stderr TERM=xterm-256color GTK_MODULES=canberra-gtk-module SESSION_MANAGER=local/storm:@/tmp/.ICE-unix/31369,unix/storm:/tmp/.ICE-unix/31369 XDG_CURRENT_DESKTOP=X-Cinnamon 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 SSH_AUTH_SOCK=/run/user/1000/keyring/ssh HOME=/home/nicoulaj XDG_SEAT=seat0 ANDROID_HOME=/opt/android-sdk XDG_RUNTIME_DIR=/run/user/1000 GIO_LAUNCHED_DESKTOP_FILE_PID=17585 USER=nicoulaj OLDPWD=/home/nicoulaj/workspace/rainbow MAIN_USER_HOME=/home/nicoulaj MAIN_USER=nicoulaj HISTFILE=/home/nicoulaj/.zshhistory HISTFILESIZE=65536 HISTSIZE=4096 SAVEHIST=4096 EDITOR=vim VISUAL=geany BROWSER=google-chrome PAGER=less MANPAGER=less LESS=--LONG-PROMPT --HILITE-UNREAD --ignore-case --tabs=2 --shift 5 --tilde --RAW-CONTROL-CHARS LESSCHARSET=utf-8 LESSHISTFILE=/home/nicoulaj/.lesshst LESSHISTSIZE=2000 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: LESS_TERMCAP_mb= LESS_TERMCAP_md= LESS_TERMCAP_me=(B LESS_TERMCAP_so= LESS_TERMCAP_se=(B LESS_TERMCAP_us= LESS_TERMCAP_ue=(B LESS_TERMCAP_mr= LESS_TERMCAP_mh= LESSOPEN=| src-hilite-lesspipe.sh %s ANT_ARGS=-logger org.apache.tools.ant.listener.AnsiColorLogger WORKON_HOME=/home/nicoulaj/.virtualenvs PROJECT_HOME=/home/nicoulaj/workspace _=/usr/bin/env ================================================ FILE: tests/data/ref/env-001.log.out ================================================ [FOREGROUND_BLUE][BOLD]LANG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]C[RESET_ALL] [FOREGROUND_BLUE][BOLD]DISPLAY[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]1[RESET_ALL] [FOREGROUND_BLUE][BOLD]SHLVL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]1[RESET_ALL] [FOREGROUND_BLUE][BOLD]LOGNAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_VTNR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2[RESET_ALL] [FOREGROUND_BLUE][BOLD]FREETYPE_PROPERTIES[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]truetype[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]interpreter-version=38[RESET_ALL] [FOREGROUND_BLUE][BOLD]PWD[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace/rainbow[RESET_ALL] [FOREGROUND_BLUE][BOLD]HG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/bin/hg[RESET_ALL] [FOREGROUND_BLUE][BOLD]MOZ_PLUGIN_PATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/lib/mozilla/plugins[RESET_ALL] [FOREGROUND_BLUE][BOLD]XAUTHORITY[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000/gdm/Xauthority[RESET_ALL] [FOREGROUND_BLUE][BOLD]GIO_LAUNCHED_DESKTOP_FILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/applications/terminator.desktop[RESET_ALL] [FOREGROUND_BLUE][BOLD]MAVEN_OPTS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]-Xmx512m[RESET_ALL] [FOREGROUND_BLUE][BOLD]JOURNAL_STREAM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]8[BOLD][FOREGROUND_BLUE]:[FOREGROUND_RESET][RESET_INTENSITY]248308[RESET_ALL] [FOREGROUND_BLUE][BOLD]ANT_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/apache-ant[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_SESSION_ID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]c4[RESET_ALL] [FOREGROUND_BLUE][BOLD]DESKTOP_SESSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL] [FOREGROUND_BLUE][BOLD]QT_QPA_PLATFORMTHEME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]qt5ct[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_SESSION_DESKTOP[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL] [FOREGROUND_BLUE][BOLD]GDMSESSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]cinnamon[RESET_ALL] [FOREGROUND_BLUE][BOLD]USERNAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]WINDOWPATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2[RESET_ALL] [FOREGROUND_BLUE][BOLD]COLORTERM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]truecolor[RESET_ALL] [FOREGROUND_BLUE][BOLD]GNOME_DESKTOP_SESSION_ID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]this-is-deprecated[RESET_ALL] [FOREGROUND_BLUE][BOLD]CINNAMON_VERSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]3.2.8[RESET_ALL] [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] [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] [FOREGROUND_BLUE][BOLD]GTK_OVERLAY_SCROLLING[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]1[RESET_ALL] [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] [FOREGROUND_BLUE][BOLD]TERMINATOR_DBUS_NAME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]net.tenshu.Terminator20x1a6021154d881d[RESET_ALL] [FOREGROUND_BLUE][BOLD]VTE_VERSION[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4601[RESET_ALL] [FOREGROUND_BLUE][BOLD]TERMINATOR_DBUS_PATH[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/net/tenshu/Terminator2[RESET_ALL] [FOREGROUND_BLUE][BOLD]GDM_LANG[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]fr_FR.utf8[RESET_ALL] [FOREGROUND_BLUE][BOLD]SHELL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/bin/zsh[RESET_ALL] [FOREGROUND_BLUE][BOLD]GRADLE_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/share/java/gradle[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_SESSION_TYPE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]x11[RESET_ALL] [FOREGROUND_BLUE][BOLD]GJS_DEBUG_OUTPUT[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]stderr[RESET_ALL] [FOREGROUND_BLUE][BOLD]TERM[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]xterm-256color[RESET_ALL] [FOREGROUND_BLUE][BOLD]GTK_MODULES[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]canberra-gtk-module[RESET_ALL] [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] [FOREGROUND_BLUE][BOLD]XDG_CURRENT_DESKTOP[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]X-Cinnamon[RESET_ALL] [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] [FOREGROUND_BLUE][BOLD]SSH_AUTH_SOCK[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000/keyring/ssh[RESET_ALL] [FOREGROUND_BLUE][BOLD]HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_SEAT[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]seat0[RESET_ALL] [FOREGROUND_BLUE][BOLD]ANDROID_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/opt/android-sdk[RESET_ALL] [FOREGROUND_BLUE][BOLD]XDG_RUNTIME_DIR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/run/user/1000[RESET_ALL] [FOREGROUND_BLUE][BOLD]GIO_LAUNCHED_DESKTOP_FILE_PID[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]17585[RESET_ALL] [FOREGROUND_BLUE][BOLD]USER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]OLDPWD[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace/rainbow[RESET_ALL] [FOREGROUND_BLUE][BOLD]MAIN_USER_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]MAIN_USER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]nicoulaj[RESET_ALL] [FOREGROUND_BLUE][BOLD]HISTFILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.zshhistory[RESET_ALL] [FOREGROUND_BLUE][BOLD]HISTFILESIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]65536[RESET_ALL] [FOREGROUND_BLUE][BOLD]HISTSIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4096[RESET_ALL] [FOREGROUND_BLUE][BOLD]SAVEHIST[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]4096[RESET_ALL] [FOREGROUND_BLUE][BOLD]EDITOR[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]vim[RESET_ALL] [FOREGROUND_BLUE][BOLD]VISUAL[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]geany[RESET_ALL] [FOREGROUND_BLUE][BOLD]BROWSER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]google-chrome[RESET_ALL] [FOREGROUND_BLUE][BOLD]PAGER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]less[RESET_ALL] [FOREGROUND_BLUE][BOLD]MANPAGER[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]less[RESET_ALL] [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] [FOREGROUND_BLUE][BOLD]LESSCHARSET[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]utf-8[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESSHISTFILE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.lesshst[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESSHISTSIZE[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]2000[RESET_ALL] [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] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mb[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]12m[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_md[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]12m[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_me[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL](B[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_so[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][48[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]8m[38[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]5[BOLD][FOREGROUND_BLUE];[FOREGROUND_RESET][RESET_INTENSITY]15m[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_se[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL](B[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_us[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][UNDERLINE][RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_ue[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][RESET_UNDERLINE](B[RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mr[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][NEGATIVE][BOLD][RESET_ALL] [FOREGROUND_BLUE][BOLD]LESS_TERMCAP_mh[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL][BOLD][RESET_ALL] [FOREGROUND_BLUE][BOLD]LESSOPEN[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]| src-hilite-lesspipe.sh %s[RESET_ALL] [FOREGROUND_BLUE][BOLD]ANT_ARGS[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]-logger org.apache.tools.ant.listener.AnsiColorLogger[RESET_ALL] [FOREGROUND_BLUE][BOLD]WORKON_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/.virtualenvs[RESET_ALL] [FOREGROUND_BLUE][BOLD]PROJECT_HOME[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/home/nicoulaj/workspace[RESET_ALL] [FOREGROUND_BLUE][BOLD]_[FOREGROUND_RESET]=[RESET_INTENSITY][RESET_ALL]/usr/bin/env[RESET_ALL] ================================================ FILE: tests/data/ref/host-001.log ================================================ google.com has address 216.58.205.14 google.com has IPv6 address 2a00:1450:4007:80a::200e google.com mail is handled by 10 aspmx.l.google.com. google.com mail is handled by 50 alt4.aspmx.l.google.com. google.com mail is handled by 20 alt1.aspmx.l.google.com. google.com mail is handled by 30 alt2.aspmx.l.google.com. google.com mail is handled by 40 alt3.aspmx.l.google.com. ================================================ FILE: tests/data/ref/host-001.log.out ================================================ [BOLD]google.com has address 216.58.205.14[RESET_INTENSITY] google.com has IPv6 address 2a00:1450:4007:80a::200e [BOLD]google.com mail is handled by 10 aspmx.l.google.com.[RESET_INTENSITY] [BOLD]google.com mail is handled by 50 alt4.aspmx.l.google.com.[RESET_INTENSITY] [BOLD]google.com mail is handled by 20 alt1.aspmx.l.google.com.[RESET_INTENSITY] [BOLD]google.com mail is handled by 30 alt2.aspmx.l.google.com.[RESET_INTENSITY] [BOLD]google.com mail is handled by 40 alt3.aspmx.l.google.com.[RESET_INTENSITY] ================================================ FILE: tests/data/ref/host-002.log ================================================ Host wwwww.google.com not found: 3(NXDOMAIN) ================================================ FILE: tests/data/ref/host-002.log.out ================================================ Host wwwww.google.com not found: 3(NXDOMAIN) ================================================ FILE: tests/data/ref/ifconfig-001.log ================================================ docker0: flags=4099 mtu 1500 inet 172.17.0.1 netmask 255.255.0.0 broadcast 0.0.0.0 ether 02:42:9f:f3:01:56 txqueuelen 0 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 eno1: flags=4163 mtu 1500 inet 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 2a01:cb15:8281:8a00:d349:122f:d366:b85b prefixlen 64 scopeid 0x0 inet6 fe80::d1e9:e05d:707a:6a84 prefixlen 64 scopeid 0x20 ether 40:16:7e:ac:38:09 txqueuelen 1000 (Ethernet) RX packets 3064555 bytes 3647530318 (3.3 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1233714 bytes 151930472 (144.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 20 memory 0xf7200000-f7220000 lo: flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 346116 bytes 281096663 (268.0 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 346116 bytes 281096663 (268.0 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ================================================ FILE: tests/data/ref/ifconfig-001.log.out ================================================ [UNDERLINE]docker0:[RESET_UNDERLINE] flags=4099 mtu 1500 inet 172.17.0.1 netmask 255.255.0.0 broadcast 0.0.0.0 ether 02:42:9f:f3:01:56 txqueuelen 0 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 [UNDERLINE]eno1:[RESET_UNDERLINE] flags=4163 mtu 1500 inet 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 2a01:cb15:8281:8a00:d349:122f:d366:b85b prefixlen 64 scopeid 0x0 inet6 fe80::d1e9:e05d:707a:6a84 prefixlen 64 scopeid 0x20 ether 40:16:7e:ac:38:09 txqueuelen 1000 (Ethernet) RX packets 3064555 bytes 3647530318 (3.3 GiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1233714 bytes 151930472 (144.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 20 memory 0xf7200000-f7220000 [UNDERLINE]lo:[RESET_UNDERLINE] flags=73 mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 346116 bytes 281096663 (268.0 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 346116 bytes 281096663 (268.0 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ================================================ FILE: tests/data/ref/ifconfig-002.log ================================================ ifconfig: option `--test' not recognised. ifconfig: `--help' gives usage information. ================================================ FILE: tests/data/ref/ifconfig-002.log.out ================================================ [UNDERLINE]ifconfig:[RESET_UNDERLINE] option `--test' not recognised. [UNDERLINE]ifconfig:[RESET_UNDERLINE] `--help' gives usage information. ================================================ FILE: tests/data/ref/java-stack-trace-001.log ================================================ Exception in thread "main" java.lang.NullPointerException at com.example.myproject.Book.getTitle(Book.java:16) at com.example.myproject.Author.getBookTitles(Author.java:25) at com.example.myproject.Bootstrap.main(Bootstrap.java:14) ================================================ FILE: tests/data/ref/java-stack-trace-001.log.out ================================================ [FOREGROUND_RED]Exception in thread "main" java.lang.NullPointerException[FOREGROUND_RESET] [FOREGROUND_RED] at com.example.myproject.Book.getTitle(Book.java:16)[FOREGROUND_RESET] [FOREGROUND_RED] at com.example.myproject.Author.getBookTitles(Author.java:25)[FOREGROUND_RESET] [FOREGROUND_RED] at com.example.myproject.Bootstrap.main(Bootstrap.java:14)[FOREGROUND_RESET] ================================================ FILE: tests/data/ref/jboss-001.log ================================================ ================================================ FILE: tests/data/ref/jboss-001.log.out ================================================ ================================================ FILE: tests/data/ref/md5sum-001.log ================================================ 0bc2ee1037199736ad2b8b144f7834f1 setup.py ================================================ FILE: tests/data/ref/md5sum-001.log.out ================================================ [FAINT]0bc2ee1037199736ad2b8b144f7834f1[RESET_INTENSITY] setup.py ================================================ FILE: tests/data/ref/md5sum-002.log ================================================ md5sum: setup.pyy: No such file or directory ================================================ FILE: tests/data/ref/md5sum-002.log.out ================================================ [FAINT]md5sum:[RESET_INTENSITY] setup.pyy: No such file or directory ================================================ FILE: tests/data/ref/mvn-001.log ================================================ [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT [INFO] ------------------------------------------------------------------------ Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.pom 3/5 KB 5/5 KB Downloaded: 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) Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.0.0/maven-clean-plugin-3.0.0.jar 3/30 KB 5/30 KB 8/30 KB 11/30 KB 13/30 KB 16/30 KB 19/30 KB 21/30 KB 24/30 KB 27/30 KB 29/30 KB 30/30 KB Downloaded: 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) [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations --- [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations --- [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations --- [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 [INFO] [INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations --- [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations --- ------------------------------------------------------- T E S T S ------------------------------------------------------- Running TestSuite Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.276 sec - in TestSuite Results : Tests run: 28, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations --- [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] [INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations --- [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 [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 [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations --- [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 [INFO] [INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations --- [INFO] Building: IT-01/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (4.4 s) [INFO] Building: IT-03/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.0 s) [INFO] Building: IT-02/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.1 s) [INFO] Building: IT-05/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.5 s) [INFO] Building: IT-04/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.9 s) [INFO] ------------------------------------------------- [INFO] Build Summary: [INFO] Passed: 5, Failed: 0, Errors: 0, Skipped: 0 [INFO] ------------------------------------------------- [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations --- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations --- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations --- [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 [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 [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 20.525 s [INFO] Finished at: 2017-03-19T16:27:04+01:00 [INFO] Final Memory: 35M/329M [INFO] ------------------------------------------------------------------------ ================================================ FILE: tests/data/ref/mvn-001.log.out ================================================ [FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]... [INFO] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [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] 3/5 KB 5/5 KB Downloaded: 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) [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] 3/30 KB 5/30 KB 8/30 KB 11/30 KB 13/30 KB 16/30 KB 19/30 KB 21/30 KB 24/30 KB 27/30 KB 29/30 KB 30/30 KB Downloaded: 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) [INFO] [FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [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 [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] [FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] Running TestSuite [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.276 sec - in TestSuite[FOREGROUND_RESET] [BOLD]Results :[RESET_INTENSITY] [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET] [INFO] [FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [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 [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 [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY] [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 [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Building: IT-01/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (4.4 s) [INFO] Building: IT-03/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.0 s) [INFO] Building: IT-02/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.1 s) [INFO] Building: IT-05/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.5 s) [INFO] Building: IT-04/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.9 s) [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [INFO] Build Summary: [INFO] Passed: 5, Failed: 0, Errors: 0, Skipped: 0 [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [FAINT][INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---[RESET_INTENSITY] [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 [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 [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FOREGROUND_GREEN][INFO] BUILD SUCCESS[FOREGROUND_RESET] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FAINT][INFO] Total time: 20.525 s[RESET_INTENSITY] [FAINT][INFO] Finished at: 2017-03-19T16:27:04+01:00[RESET_INTENSITY] [FAINT][INFO] Final Memory: 35M/329M[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] ================================================ FILE: tests/data/ref/mvn-002.log ================================================ [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations --- [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations --- [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations --- [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 [INFO] [INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations --- [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations --- ------------------------------------------------------- T E S T S ------------------------------------------------------- Running TestSuite Tests run: 28, Failures: 28, Errors: 0, Skipped: 0, Time elapsed: 1.274 sec <<< FAILURE! - in TestSuite test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.446 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.021 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.022 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.021 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.016 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.026 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.025 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.027 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.031 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.022 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.012 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.016 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.026 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.02 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) Results : Failed tests: net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Run 1: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 2: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 3: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 4: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 5: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 6: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 7: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 8: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 9: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 10: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 11: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 12: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 13: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 14: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 15: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 16: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 17: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 18: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 19: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 20: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 21: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 22: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 23: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 24: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 25: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 26: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 27: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 28: CompileCommandProcessorTest.test:76 expected [true] but found [false] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0 [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3.563 s [INFO] Finished at: 2017-03-19T16:28:06+01:00 [INFO] Final Memory: 23M/276M [INFO] ------------------------------------------------------------------------ [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. [ERROR] [ERROR] Please refer to /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports for the individual test results. [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException ================================================ FILE: tests/data/ref/mvn-002.log.out ================================================ [FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]... [INFO] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [INFO] [FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [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 [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] [FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] Running TestSuite [FOREGROUND_RED]Tests run: 28, Failures: 28, Errors: 0, Skipped: 0, Time elapsed: 1.274 sec <<< FAILURE! - in TestSuite[FOREGROUND_RESET] test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.446 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.021 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.022 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.021 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.016 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.026 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.025 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.027 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.031 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.022 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.012 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.019 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.016 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.014 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.026 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.02 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Time elapsed: 0.017 sec <<< FAILURE! java.lang.AssertionError: expected [true] but found [false] at net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(CompileCommandProcessorTest.java:76) [BOLD]Results :[RESET_INTENSITY] Failed tests: net.nicoulaj.compilecommand.CompileCommandProcessorTest.test(net.nicoulaj.compilecommand.CompileCommandProcessorTest) Run 1: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 2: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 3: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 4: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 5: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 6: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 7: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 8: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 9: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 10: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 11: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 12: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 13: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 14: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 15: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 16: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 17: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 18: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 19: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 20: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 21: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 22: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 23: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 24: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 25: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 26: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 27: CompileCommandProcessorTest.test:76 expected [true] but found [false] Run 28: CompileCommandProcessorTest.test:76 expected [true] but found [false] [FOREGROUND_RED]Tests run: 1, Failures: 1, Errors: 0, Skipped: 0[FOREGROUND_RESET] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FOREGROUND_RED][INFO] BUILD FAILURE[FOREGROUND_RESET] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FAINT][INFO] Total time: 3.563 s[RESET_INTENSITY] [FAINT][INFO] Finished at: 2017-03-19T16:28:06+01:00[RESET_INTENSITY] [FAINT][INFO] Final Memory: 23M/276M[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [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] [BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET] [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] [BOLD][FOREGROUND_RED][ERROR] -> [Help 1][RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] Re-run Maven using the -X switch to enable full debug logging.[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] For more information about the errors and possible solutions, please read the following articles:[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException[RESET_INTENSITY][FOREGROUND_RESET] ================================================ FILE: tests/data/ref/mvn-003.log ================================================ [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations --- [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations --- [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations --- [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 [INFO] [INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations --- [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations --- ------------------------------------------------------- T E S T S ------------------------------------------------------- Running TestSuite Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.266 sec - in TestSuite Results : Tests run: 28, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations --- [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] [INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations --- [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 [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 [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations --- [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 [INFO] [INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations --- [INFO] Building: IT-01/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (4.7 s) [INFO] Building: IT-03/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.0 s) [INFO] Building: IT-02/pom.xml [INFO] run script postbuild.groovy [INFO] ..FAILED (3.0 s) [INFO] The post-build script returned false. [INFO] Building: IT-05/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.3 s) [INFO] Building: IT-04/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.9 s) [INFO] ------------------------------------------------- [INFO] Build Summary: [INFO] Passed: 4, Failed: 1, Errors: 0, Skipped: 0 [INFO] ------------------------------------------------- [ERROR] The following builds failed: [ERROR] * IT-02/pom.xml [INFO] ------------------------------------------------- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 19.879 s [INFO] Finished at: 2017-03-19T16:28:56+01:00 [INFO] Final Memory: 28M/338M [INFO] ------------------------------------------------------------------------ [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] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException ================================================ FILE: tests/data/ref/mvn-003.log.out ================================================ [FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]... [INFO] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [INFO] [FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] [FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [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 [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 24 resources [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Changes detected - recompiling the module! [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] [FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] Running TestSuite [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.266 sec - in TestSuite[FOREGROUND_RESET] [BOLD]Results :[RESET_INTENSITY] [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET] [INFO] [FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [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 [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 [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY] [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 [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [INFO] Building: IT-01/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (4.7 s) [INFO] Building: IT-03/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (3.0 s) [INFO] Building: IT-02/pom.xml [INFO] run script postbuild.groovy [INFO] ..FAILED (3.0 s) [INFO] The post-build script returned false. [INFO] Building: IT-05/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.3 s) [INFO] Building: IT-04/pom.xml [INFO] run script postbuild.groovy [INFO] ..SUCCESS (2.9 s) [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [INFO] Build Summary: [INFO] Passed: 4, Failed: 1, Errors: 0, Skipped: 0 [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [BOLD][FOREGROUND_RED][ERROR] The following builds failed:[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] * IT-02/pom.xml[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FOREGROUND_RED][INFO] BUILD FAILURE[FOREGROUND_RESET] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FAINT][INFO] Total time: 19.879 s[RESET_INTENSITY] [FAINT][INFO] Finished at: 2017-03-19T16:28:56+01:00[RESET_INTENSITY] [FAINT][INFO] Final Memory: 28M/338M[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [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] [BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] Re-run Maven using the -X switch to enable full debug logging.[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] [RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] For more information about the errors and possible solutions, please read the following articles:[RESET_INTENSITY][FOREGROUND_RESET] [BOLD][FOREGROUND_RED][ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException[RESET_INTENSITY][FOREGROUND_RESET] ================================================ FILE: tests/data/ref/mvn-004.log ================================================ Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00) Maven home: /opt/maven Java version: 1.8.0_121, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-jdk/jre Default locale: en_US, platform encoding: ANSI_X3.4-1968 OS name: "linux", version: "4.10.2-1-arch", arch: "amd64", family: "unix" [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: javax.enterprise.inject.* < plexus.core [DEBUG] Imported: javax.enterprise.util.* < plexus.core [DEBUG] Imported: javax.inject.* < plexus.core [DEBUG] Imported: org.apache.maven.* < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.execution.scope < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.apache.maven.wagon.* < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.* < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.eclipse.aether.* < plexus.core [DEBUG] Imported: org.eclipse.aether.artifact < plexus.core [DEBUG] Imported: org.eclipse.aether.collection < plexus.core [DEBUG] Imported: org.eclipse.aether.deployment < plexus.core [DEBUG] Imported: org.eclipse.aether.graph < plexus.core [DEBUG] Imported: org.eclipse.aether.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.installation < plexus.core [DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.metadata < plexus.core [DEBUG] Imported: org.eclipse.aether.repository < plexus.core [DEBUG] Imported: org.eclipse.aether.resolution < plexus.core [DEBUG] Imported: org.eclipse.aether.spi < plexus.core [DEBUG] Imported: org.eclipse.aether.transfer < plexus.core [DEBUG] Imported: org.eclipse.aether.version < plexus.core [DEBUG] Imported: org.slf4j.* < plexus.core [DEBUG] Imported: org.slf4j.helpers.* < plexus.core [DEBUG] Imported: org.slf4j.spi.* < plexus.core [DEBUG] Populating class realm maven.api [INFO] Error stacktraces are turned on. [DEBUG] Reading global settings from /opt/maven/conf/settings.xml [DEBUG] Reading user settings from /home/nicoulaj/.m2/settings.xml [DEBUG] Reading global toolchains from /opt/maven/conf/toolchains.xml [DEBUG] Reading user toolchains from /home/nicoulaj/.m2/toolchains.xml [DEBUG] Using local repository at /home/nicoulaj/.m2/repository [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /home/nicoulaj/.m2/repository [INFO] Scanning for projects... [DEBUG] Extension realms for project net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT: (none) [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null] [DEBUG] Extension realms for project net.nicoulaj:parent:pom:48: (none) [DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null] [DEBUG] === REACTOR BUILD PLAN ================================================ [DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] Tasks: [clean, install] [DEBUG] Style: Regular [DEBUG] ======================================================================= [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT [INFO] ------------------------------------------------------------------------ [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] === PROJECT BUILD PLAN ================================================ [DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT [DEBUG] Dependencies (collect): [test] [DEBUG] Dependencies (resolve): [compile, runtime, test] [DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean) [DEBUG] Style: Regular [DEBUG] Configuration: ${maven.clean.excludeDefaultDirectories} ${maven.clean.failOnError} ${maven.clean.followSymLinks} ${maven.clean.retryOnError} ${maven.clean.skip} ${maven.clean.verbose} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) [DEBUG] Style: Regular [DEBUG] Configuration: ${enforcer.fail} ${enforcer.failFast} ${enforcer.ignoreCache} [3.2.1,) Maven v3.2.1+ is required to build this project, please update. ${enforcer.skip} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) [DEBUG] Style: Regular [DEBUG] Configuration:
${jacoco.address}
${jacoco.append} ${jacoco.classDumpDir} ${jacoco.destFile} ${jacoco.dumpOnExit} ${jacoco.exclClassLoaders} ${jacoco.inclBootstrapClasses} ${jacoco.inclNoLocationClasses} ${jacoco.jmx} ${jacoco.output} ${plugin.artifactMap} ${jacoco.port} ${project} ${jacoco.propertyName} ${jacoco.sessionId} ${jacoco.skip}
[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources (default-resources) [DEBUG] Style: Regular [DEBUG] Configuration: ${maven.resources.skip} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile (default-compile) [DEBUG] Style: Regular [DEBUG] Configuration: -proc:none ${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.failOnWarning} ${maven.compiler.forceJavacCompilerUse} ${maven.compiler.fork} ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${maven.compiler.optimize} ${maven.compiler.release} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.main.skip} ${maven.compiler.skipMultiThreadWarning} 1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) [DEBUG] Style: Regular [DEBUG] Configuration: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources (default-testResources) [DEBUG] Style: Regular [DEBUG] Configuration: ${maven.test.skip} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile (default-testCompile) [DEBUG] Style: Regular [DEBUG] Configuration: -proc:none ${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.failOnWarning} ${maven.compiler.forceJavacCompilerUse} ${maven.compiler.fork} ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${maven.compiler.optimize} ${maven.compiler.release} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.test.skip} ${maven.compiler.skipMultiThreadWarning} 1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.testRelease} ${maven.compiler.testSource} ${maven.compiler.testTarget} ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) [DEBUG] Style: Regular [DEBUG] Configuration: ${maven.test.additionalClasspath} ${argLine} ${childDelegation} ${maven.test.dependency.excludes} ${maven.surefire.debug} ${dependenciesToScan} ${disableXmlReport} ${enableAssertions} ${excludedGroups} ${surefire.excludesFile} ${surefire.failIfNoSpecifiedTests} ${failIfNoTests} ${forkCount} ${forkMode} ${surefire.timeout} ${groups} ${surefire.includesFile} ${junitArtifactName} ${jvm} ${objectFactory} ${parallel} ${parallelOptimized} ${surefire.parallel.forcedTimeout} ${surefire.parallel.timeout} ${perCoreThreadCount} ${plugin.artifactMap} ${surefire.printSummary} ${project.artifactMap} ${maven.test.redirectTestOutputToFile} ${surefire.reportFormat} ${surefire.reportNameSuffix} ${surefire.rerunFailingTestsCount} ${reuseForks} ${surefire.runOrder} ${surefire.shutdown} ${maven.test.skip} ${surefire.skipAfterFailureCount} ${maven.test.skip.exec} ${skipTests} ${surefire.suiteXmlFiles} ${test} ${maven.test.failure.ignore} ${testNGArtifactName} ${threadCount} ${threadCountClasses} ${threadCountMethods} ${threadCountSuites} ${trimStackTrace} ${surefire.useFile} ${surefire.useManifestOnlyJar} ${surefire.useSystemClassLoader} ${useUnlimitedThreads} ${basedir} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar (default-jar) [DEBUG] Style: Regular [DEBUG] Configuration: ${maven.jar.forceCreation} ${jar.useDefaultManifestFile} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install (run-integration-tests) [DEBUG] Style: Regular [DEBUG] Configuration: ${localRepository} /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository false [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) [DEBUG] Style: Regular [DEBUG] Configuration:
${jacoco.address}
${jacoco.append} ${jacoco.classDumpDir} ${jacoco.destFile} ${jacoco.dumpOnExit} ${jacoco.exclClassLoaders} ${jacoco.inclBootstrapClasses} ${jacoco.inclNoLocationClasses} ${jacoco.jmx} ${jacoco.output} ${plugin.artifactMap} ${jacoco.port} ${project} invoker.mavenOpts ${jacoco.sessionId} ${jacoco.skip}
[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests) [DEBUG] Style: Regular [DEBUG] Configuration: true /home/nicoulaj/workspace/compile-command-annotations/target/it/tests false ${invoker.disableReports} ${encoding} ${invoker.failIfNoProjects} clean install ${invoker.goalsFile} ${maven.test.failure.ignore} ${invoker.invokerPropertiesFile} ${invoker.test} ${invoker.javaHome} /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository ${invoker.mavenExecutable} ${invoker.mavenHome} ${invoker.mavenOpts} ${invoker.mergeUserSettings} ${invoker.noLog} ${invoker.parallelThreads} ${plugin.artifacts} ${invoker.pom} */pom.xml ${invoker.postBuildHookScript} ${invoker.preBuildHookScript} ${invoker.profilesFile} src/it/tests /home/nicoulaj/workspace/compile-command-annotations/target/it/reports selector.bsh src/it/settings.xml true ${invoker.showVersion} false ${invoker.streamLogs} ${invoker.testPropertiesFile} [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) [DEBUG] Style: Regular [DEBUG] Configuration: ${project.reporting.outputEncoding} ${project} ${jacoco.skip} ${project.build.sourceEncoding} </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <dataFile default-value="${project.build.directory}/jacoco-it.exec"/> <outputDirectory default-value="${project.reporting.outputDirectory}/jacoco-it"/> <outputEncoding default-value="UTF-8">${project.reporting.outputEncoding}</outputEncoding> <project>${project}</project> <skip default-value="false">${jacoco.skip}</skip> <sourceEncoding default-value="UTF-8">${project.build.sourceEncoding}</sourceEncoding> <title default-value="${project.name}"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <artifact default-value="${project.artifact}"/> <attachedArtifacts default-value="${project.attachedArtifacts}"/> <createChecksum default-value="false">${createChecksum}</createChecksum> <localRepository>${localRepository}</localRepository> <packaging default-value="${project.packaging}"/> <pomFile default-value="${project.file}"/> <skip default-value="false">${maven.install.skip}</skip> <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo> </configuration> [DEBUG] ======================================================================= [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} [DEBUG] net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] org.testng:testng:jar:6.10:test [DEBUG] com.beust:jcommander:jar:1.48:test [DEBUG] com.google.guava:guava:jar:21.0:test [DEBUG] commons-io:commons-io:jar:2.5:test [DEBUG] org.assertj:assertj-core:jar:3.6.2:test [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.4 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator --> [DEBUG] (f) directory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) excludeDefaultDirectories = false [DEBUG] (f) failOnError = true [DEBUG] (f) followSymLinks = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) reportDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) retryOnError = true [DEBUG] (f) skip = false [DEBUG] (f) testOutputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] -- end configuration -- [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/maven-metadata-local.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories [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 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/_remote.repositories [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder [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 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/_remote.repositories [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io [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 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30 [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 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-03.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/invoker-summary.txt [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-01.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-02.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-04.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-05.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/reports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand/IT04.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/IT-04-1.0-SNAPSHOT.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand/IT04.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/my-compile-command-file [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand/IT05.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand/IT02.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/IT-02-1.0-SNAPSHOT.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand/IT02.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand/IT03.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/hotspot_pid11375.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/IT-03-1.0-SNAPSHOT.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand/IT03.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand/IT01.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/IT-01-1.0-SNAPSHOT.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand/IT01.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.css [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/emailable-report.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/navigator-bullet.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/jquery-1.7.1.min.js [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.js [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/failed.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TEST-TestSuite.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/bullet_point.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/passed.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports/TEST-net.nicoulaj.compilecommand.CompileCommandProcessorTest.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/skipped.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-results.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/index.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TestSuite.txt [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/reporter-output.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/classes.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/Surefire test.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/testng.xml.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/groups.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/main.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-alphabetical.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/index.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-not-run.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/toc.html [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/index.html [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/collapseall.gif [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng.css [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester$Report.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_03_Logging.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/ITAssert.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_04_Options.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/CompileCommandProcessorTest.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases/Test21.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand/Sample_04_Options.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases/Test09.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases/Test24.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases/Test19.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases/Test22.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases/Test10.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases/Test11.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases/Test05.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases/Test12.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases/Test01.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases/Test16.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases/Test20.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases/Test13.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases/Test17.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases/Test14.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases/Test15.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases/Test07.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases/Test08.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases/Test06.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases/Test02.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases/Test04.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases/Test18.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases/Test03.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases/Test23.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand/Sample_03_Logging.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$3.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$1.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Log.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/CompileOnly.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Options.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/DontInline.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Break.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Quiet.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Inline.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Option.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Print.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Exclude.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$2.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1: [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.22:compile [DEBUG] commons-lang:commons-lang:jar:2.3:compile [DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.4.1:compile [DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.4.1:compile [DEBUG] org.apache.maven.shared:maven-common-artifact-filters:jar:1.4:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.eclipse.aether:aether-util:jar:0.9.0.M2:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile [DEBUG] org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3:compile [DEBUG] org.codehaus.plexus:plexus-archiver:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.4:compile [DEBUG] junit:junit:jar:4.11:compile [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.22 [DEBUG] Included: commons-lang:commons-lang:jar:2.3 [DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.4.1 [DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4.1 [DEBUG] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.4 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.eclipse.aether:aether-util:jar:0.9.0.M2 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6 [DEBUG] Included: org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3 [DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.4 [DEBUG] Included: junit:junit:jar:4.11 [DEBUG] Included: org.hamcrest:hamcrest-core:jar:1.3 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce' with basic configurator --> [DEBUG] (s) fail = true [DEBUG] (s) failFast = false [DEBUG] (f) ignoreCache = false [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce {execution: enforce-maven-version} [DEBUG] (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) version = [3.2.1,) [DEBUG] (s) message = Maven v3.2.1+ is required to build this project, please update. [DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6622a690] [DEBUG] (s) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (s) skip = false [DEBUG] -- end configuration -- [DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion [DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable. [DEBUG] Detected Maven Version: 3.3.9 [DEBUG] Detected Maven Version: 3.3.9 is allowed in the range [3.2.1,). [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations --- [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} [DEBUG] org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.8.2:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.22:compile [DEBUG] org.apache.maven.shared:file-management:jar:1.2.1:compile [DEBUG] org.apache.maven.shared:maven-shared-io:jar:1.1:compile [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile [DEBUG] org.apache.maven.doxia:doxia-core:jar:1.1.2:compile [DEBUG] xerces:xercesImpl:jar:2.8.1:compile [DEBUG] commons-lang:commons-lang:jar:2.4:compile [DEBUG] commons-httpclient:commons-httpclient:jar:3.1:compile [DEBUG] commons-codec:commons-codec:jar:1.2:compile [DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile [DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile [DEBUG] org.apache.velocity:velocity:jar:1.5:compile [DEBUG] commons-collections:commons-collections:jar:3.2:compile [DEBUG] commons-validator:commons-validator:jar:1.2.0:compile [DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile [DEBUG] commons-digester:commons-digester:jar:1.6:compile [DEBUG] commons-logging:commons-logging:jar:1.0.4:compile [DEBUG] oro:oro:jar:2.0.8:compile [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile [DEBUG] org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile [DEBUG] org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile [DEBUG] org.ow2.asm:asm-debug-all:jar:5.1:compile [DEBUG] org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile [DEBUG] Created new class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Importing foreign packages into class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Included: org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: junit:junit:jar:4.8.2 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.22 [DEBUG] Included: org.apache.maven.shared:file-management:jar:1.2.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:1.1 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.1.2 [DEBUG] Included: xerces:xercesImpl:jar:2.8.1 [DEBUG] Included: commons-lang:commons-lang:jar:2.4 [DEBUG] Included: commons-httpclient:commons-httpclient:jar:3.1 [DEBUG] Included: commons-codec:commons-codec:jar:1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.2 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7 [DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7 [DEBUG] Included: org.apache.velocity:velocity:jar:1.5 [DEBUG] Included: commons-collections:commons-collections:jar:3.2 [DEBUG] Included: commons-validator:commons-validator:jar:1.2.0 [DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0 [DEBUG] Included: commons-digester:commons-digester:jar:1.6 [DEBUG] Included: commons-logging:commons-logging:jar:1.0.4 [DEBUG] Included: oro:oro:jar:2.0.8 [DEBUG] Included: xml-apis:xml-apis:jar:1.0.b2 [DEBUG] Included: org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606 [DEBUG] Included: org.jacoco:org.jacoco.core:jar:0.7.7.201606060606 [DEBUG] Included: org.ow2.asm:asm-debug-all:jar:5.1 [DEBUG] Included: org.jacoco:org.jacoco.report:jar:0.7.7.201606060606 [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent' with basic configurator --> [DEBUG] (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [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} [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] -- end configuration -- [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 [INFO] [INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] org.apache.maven.shared:maven-filtering:jar:3.1.1:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.22:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:3.1.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.22 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources' with basic configurator --> [DEBUG] (f) addDefaultExcludes = true [DEBUG] (f) buildFilters = [] [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) escapeString = \ [DEBUG] (f) escapeWindowsPaths = true [DEBUG] (f) fileNameFiltering = false [DEBUG] (s) includeEmptyDirs = false [DEBUG] (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (s) overwrite = false [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/main/resources, PatternSet [includes: {}, excludes: {}]}}] [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skip = false [DEBUG] (f) supportMultiLineFiltering = false [DEBUG] (f) useBuildFilters = true [DEBUG] (s) useDefaultDelimiters = true [DEBUG] -- end configuration -- [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=, 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=, env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=(B, env.DISPLAY=:1, env.LESS_TERMCAP_md=, 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=, 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= , 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=, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=(B, 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=, 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=(B, 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} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory /home/nicoulaj/workspace/compile-command-annotations/src/main/resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 1 resource [DEBUG] Copying file META-INF/services/javax.annotation.processing.Processor [DEBUG] file javax.annotation.processing.Processor has a filtered file extension [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 [DEBUG] no use filter components [INFO] [INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.14:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile [DEBUG] commons-io:commons-io:jar:2.5:compile [DEBUG] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile [DEBUG] org.ow2.asm:asm:jar:6.0_ALPHA:compile [DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:2.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1:runtime [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.4 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.14 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0 [DEBUG] Included: commons-io:commons-io:jar:2.5 [DEBUG] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1 [DEBUG] Included: org.ow2.asm:asm:jar:6.0_ALPHA [DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile' with basic configurator --> [DEBUG] (f) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/main/java] [DEBUG] (f) compilerArgument = -proc:none [DEBUG] (f) compilerId = javac [DEBUG] (f) debug = true [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) failOnError = true [DEBUG] (f) failOnWarning = false [DEBUG] (f) forceJavacCompilerUse = false [DEBUG] (f) fork = false [DEBUG] (f) generatedSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile {execution: default-compile} [DEBUG] (f) optimize = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) projectArtifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) showDeprecation = false [DEBUG] (f) showWarnings = false [DEBUG] (f) skipMultiThreadWarning = false [DEBUG] (f) source = 1.6 [DEBUG] (f) staleMillis = 0 [DEBUG] (f) target = 1.6 [DEBUG] (f) useIncrementalCompilation = true [DEBUG] (f) verbose = false [DEBUG] -- end configuration -- [DEBUG] Using compiler 'javac'. [DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations to compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/main/java [DEBUG] New compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/main/java /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] CompilerReuseStrategy: reuseCreated [DEBUG] useIncrementalCompilation enabled [DEBUG] classpathElements: [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Exclude.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Log.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Option.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/CompileOnly.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/CompileCommandProcessor.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/package-info.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/DontInline.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Inline.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Options.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Print.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Quiet.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Break.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/package-info.java [INFO] Changes detected - recompiling the module! [DEBUG] Classpath: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] Source roots: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/main/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] Command line options: [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 [DEBUG] incrementalBuildHelper#beforeRebuildExecution [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] incrementalBuildHelper#afterRebuildExecution [INFO] [INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations --- [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} [DEBUG] org.codehaus.mojo:build-helper-maven-plugin:jar:1.12: [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.12:test [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.apache.maven.shared:file-management:jar:3.0.0:compile [DEBUG] org.apache.maven.shared:maven-shared-io:jar:3.0.0:compile [DEBUG] org.apache.maven:maven-compat:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] Created new class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Importing foreign packages into class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Included: org.codehaus.mojo:build-helper-maven-plugin:jar:1.12 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.apache.maven.shared:file-management:jar:3.0.0 [DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:3.0.0 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [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] [DEBUG] Configuring mojo 'org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source' with basic configurator --> [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) sources = [/home/nicoulaj/workspace/compile-command-annotations/src/samples/java] [DEBUG] -- end configuration -- [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations --- [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources' with basic configurator --> [DEBUG] (f) addDefaultExcludes = true [DEBUG] (f) buildFilters = [] [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) escapeString = \ [DEBUG] (f) escapeWindowsPaths = true [DEBUG] (f) fileNameFiltering = false [DEBUG] (s) includeEmptyDirs = false [DEBUG] (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (s) overwrite = false [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/test/resources, PatternSet [includes: {}, excludes: {}]}}] [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skip = false [DEBUG] (f) supportMultiLineFiltering = false [DEBUG] (f) useBuildFilters = true [DEBUG] (s) useDefaultDelimiters = true [DEBUG] -- end configuration -- [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=, 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=, env.SAVEHIST=4096, env.GDM_LANG=fr_FR.utf8, env.LESS_TERMCAP_me=(B, env.DISPLAY=:1, env.LESS_TERMCAP_md=, 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=, 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= , 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=, java.vm.info=mixed mode, sun.desktop=gnome, java.vm.specification.name=Java Virtual Machine Specification, env.COLORTERM=truecolor, env.LESS_TERMCAP_ue=(B, 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=, 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=(B, 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} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory /home/nicoulaj/workspace/compile-command-annotations/src/test/resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 24 resources [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test05 [DEBUG] file Test05 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test17 [DEBUG] file Test17 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test01 [DEBUG] file Test01 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test04 [DEBUG] file Test04 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test19 [DEBUG] file Test19 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test15 [DEBUG] file Test15 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test23 [DEBUG] file Test23 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test12 [DEBUG] file Test12 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test10 [DEBUG] file Test10 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test08 [DEBUG] file Test08 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test03 [DEBUG] file Test03 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test13 [DEBUG] file Test13 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test02 [DEBUG] file Test02 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test21 [DEBUG] file Test21 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test11 [DEBUG] file Test11 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test14 [DEBUG] file Test14 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test22 [DEBUG] file Test22 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test18 [DEBUG] file Test18 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test07 [DEBUG] file Test07 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test06 [DEBUG] file Test06 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test24 [DEBUG] file Test24 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test09 [DEBUG] file Test09 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test16 [DEBUG] file Test16 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test20 [DEBUG] file Test20 has a filtered file extension [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 [DEBUG] no use filter components [INFO] [INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations --- [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile' with basic configurator --> [DEBUG] (f) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/test/java, /home/nicoulaj/workspace/compile-command-annotations/src/samples/java] [DEBUG] (f) compilerArgument = -proc:none [DEBUG] (f) compilerId = javac [DEBUG] (f) debug = true [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) failOnError = true [DEBUG] (f) failOnWarning = false [DEBUG] (f) forceJavacCompilerUse = false [DEBUG] (f) fork = false [DEBUG] (f) generatedTestSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile {execution: default-testCompile} [DEBUG] (f) optimize = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) showDeprecation = false [DEBUG] (f) showWarnings = false [DEBUG] (f) skipMultiThreadWarning = false [DEBUG] (f) source = 1.6 [DEBUG] (f) staleMillis = 0 [DEBUG] (f) target = 1.6 [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] [DEBUG] (f) useIncrementalCompilation = true [DEBUG] (f) verbose = false [DEBUG] -- end configuration -- [DEBUG] Using compiler 'javac'. [DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations to test-compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/test/java /home/nicoulaj/workspace/compile-command-annotations/src/samples/java [DEBUG] New test-compile source roots: /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 [DEBUG] CompilerReuseStrategy: reuseCreated [DEBUG] useIncrementalCompilation enabled [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test15.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test12.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test04.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test20.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test07.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/package-info.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test23.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test18.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test03.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test17.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test09.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test11.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_03_Logging.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test06.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test22.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test14.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test05.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test08.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/ITAssert.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test13.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test10.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test02.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test24.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test21.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/JavaCompilationTester.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test01.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_01_Inlining.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_02_Compilation.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test19.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test16.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_04_Options.java [INFO] Changes detected - recompiling the module! [DEBUG] Classpath: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar [DEBUG] /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar [DEBUG] /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar [DEBUG] /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar [DEBUG] /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar [DEBUG] Source roots: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/test/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/samples/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [DEBUG] Command line options: [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 [DEBUG] incrementalBuildHelper#beforeRebuildExecution [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] incrementalBuildHelper#afterRebuildExecution [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile [DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.12:compile [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.commons:commons-lang3:jar:3.1:compile [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:compile [DEBUG] org.apache.maven:maven-toolchain:jar:2.2.1:compile [DEBUG] org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1 [DEBUG] Included: org.apache.maven.surefire:maven-surefire-common:jar:2.19.1 [DEBUG] Included: org.apache.maven.surefire:surefire-booter:jar:2.19.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15 [DEBUG] Included: junit:junit:jar:4.12 [DEBUG] Included: org.hamcrest:hamcrest-core:jar:1.3 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.commons:commons-lang3:jar:3.1 [DEBUG] Included: org.apache.maven.surefire:surefire-api:jar:2.19.1 [DEBUG] Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test' with basic configurator --> [DEBUG] (s) additionalClasspathElements = [] [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 [DEBUG] (s) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (s) childDelegation = false [DEBUG] (s) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (s) classpathDependencyExcludes = [] [DEBUG] (s) dependenciesToScan = [] [DEBUG] (s) disableXmlReport = false [DEBUG] (s) enableAssertions = true [DEBUG] (f) forkCount = 1 [DEBUG] (s) forkMode = once [DEBUG] (s) junitArtifactName = junit:junit [DEBUG] (s) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) parallelMavenExecution = false [DEBUG] (s) parallelOptimized = true [DEBUG] (s) perCoreThreadCount = true [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} [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' role: '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' --- [DEBUG] (s) printSummary = true [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} [DEBUG] (s) redirectTestOutputToFile = false [DEBUG] (s) remoteRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => never] ] [DEBUG] (s) reportFormat = brief [DEBUG] (s) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [DEBUG] (f) rerunFailingTestsCount = 0 [DEBUG] (f) reuseForks = true [DEBUG] (s) runOrder = filesystem [DEBUG] (f) shutdown = testset [DEBUG] (s) skip = false [DEBUG] (f) skipAfterFailureCount = 0 [DEBUG] (s) skipTests = false [DEBUG] (s) suiteXmlFiles = [] [DEBUG] (s) testClassesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (s) testFailureIgnore = false [DEBUG] (s) testNGArtifactName = org.testng:testng [DEBUG] (s) testSourceDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/test/java [DEBUG] (s) threadCountClasses = 0 [DEBUG] (s) threadCountMethods = 0 [DEBUG] (s) threadCountSuites = 0 [DEBUG] (s) trimStackTrace = true [DEBUG] (s) useFile = true [DEBUG] (s) useManifestOnlyJar = true [DEBUG] (s) useSystemClassLoader = true [DEBUG] (s) useUnlimitedThreads = false [DEBUG] (s) workingDirectory = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] -- end configuration -- [DEBUG] Surefire report directory: /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [DEBUG] Setting system property [user.dir]=[/home/nicoulaj/workspace/compile-command-annotations] [DEBUG] Setting system property [localRepository]=[/home/nicoulaj/.m2/repository] [DEBUG] Setting system property [basedir]=[/home/nicoulaj/workspace/compile-command-annotations] [DEBUG] dummy:dummy:jar:1.0 (selected for null) [DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile (selected for compile) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:compile (selected for compile) [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 [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 [DEBUG] Using JVM: /usr/lib/jvm/java-8-jdk/jre/bin/java [DEBUG] dummy:dummy:jar:1.0 (selected for null) [DEBUG] org.apache.maven.surefire:surefire-testng:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:common-java5:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-testng-utils:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-grouper:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test) [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 [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 [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 [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 [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 [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 [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 [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 [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 ------------------------------------------------------- T E S T S ------------------------------------------------------- [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 [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 Forking 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 Running TestSuite Configuring TestNG with: TestNG60Configurator Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.358 sec - in TestSuite Results : Tests run: 28, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.14:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.apache.maven:maven-archiver:jar:3.1.1:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.1:compile [DEBUG] commons-io:commons-io:jar:2.5:compile [DEBUG] org.codehaus.plexus:plexus-archiver:jar:3.4:compile [DEBUG] org.codehaus.plexus:plexus-io:jar:2.7.1:compile [DEBUG] org.apache.commons:commons-compress:jar:1.11:compile [DEBUG] org.iq80.snappy:snappy:jar:0.4:compile [DEBUG] org.tukaani:xz:jar:1.5:runtime [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Included: org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.14 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven:maven-archiver:jar:3.1.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.1 [DEBUG] Included: commons-io:commons-io:jar:2.5 [DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:3.4 [DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.7.1 [DEBUG] Included: org.apache.commons:commons-compress:jar:1.11 [DEBUG] Included: org.iq80.snappy:snappy:jar:0.4 [DEBUG] Included: org.tukaani:xz:jar:1.5 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar' with basic configurator --> [DEBUG] (f) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) finalName = compile-command-annotations-1.2.2-SNAPSHOT [DEBUG] (f) forceCreation = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skipIfEmpty = false [DEBUG] (f) useDefaultManifestFile = false [DEBUG] -- end configuration -- [DEBUG] isUp2date: false (Destination /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar not found.) [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [DEBUG] adding directory META-INF/ [DEBUG] adding entry META-INF/MANIFEST.MF [DEBUG] adding directory META-INF/services/ [DEBUG] adding directory net/ [DEBUG] adding directory net/nicoulaj/ [DEBUG] adding directory net/nicoulaj/compilecommand/ [DEBUG] adding directory net/nicoulaj/compilecommand/annotations/ [DEBUG] adding entry META-INF/services/javax.annotation.processing.Processor [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$2.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Exclude.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Print.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Option.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Inline.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Quiet.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Break.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/DontInline.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Options.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/CompileOnly.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Log.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$1.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$3.class [DEBUG] adding directory META-INF/maven/ [DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/ [DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/ [DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.xml [DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.properties [INFO] [INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0: [DEBUG] org.apache.maven.shared:maven-invoker:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile [DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile [DEBUG] org.apache.maven.doxia:doxia-core:jar:1.2:compile [DEBUG] xerces:xercesImpl:jar:2.9.1:compile [DEBUG] xml-apis:xml-apis:jar:1.3.04:compile [DEBUG] commons-lang:commons-lang:jar:2.4:compile [DEBUG] org.apache.httpcomponents:httpclient:jar:4.0.2:compile [DEBUG] org.apache.httpcomponents:httpcore:jar:4.0.1:compile [DEBUG] commons-codec:commons-codec:jar:1.3:compile [DEBUG] commons-validator:commons-validator:jar:1.3.1:compile [DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile [DEBUG] commons-digester:commons-digester:jar:1.6:compile [DEBUG] commons-logging:commons-logging:jar:1.0.4:compile [DEBUG] org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile [DEBUG] org.codehaus.groovy:groovy:jar:2.0.1:compile [DEBUG] antlr:antlr:jar:2.7.7:compile [DEBUG] org.ow2.asm:asm-tree:jar:4.0:compile [DEBUG] org.ow2.asm:asm-commons:jar:4.0:compile [DEBUG] org.ow2.asm:asm:jar:4.0:compile [DEBUG] org.ow2.asm:asm-util:jar:4.0:compile [DEBUG] org.ow2.asm:asm-analysis:jar:4.0:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile [DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile [DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile [DEBUG] org.apache.velocity:velocity:jar:1.5:compile [DEBUG] oro:oro:jar:2.0.8:compile [DEBUG] commons-collections:commons-collections:jar:3.2:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.codehaus.groovy:groovy-all:jar:2.0.1:compile [DEBUG] org.apache.ant:ant:jar:1.8.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.21:compile [DEBUG] commons-io:commons-io:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.21:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Included: org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0 [DEBUG] Included: org.apache.maven.shared:maven-invoker:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.2 [DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.2 [DEBUG] Included: xerces:xercesImpl:jar:2.9.1 [DEBUG] Included: xml-apis:xml-apis:jar:1.3.04 [DEBUG] Included: commons-lang:commons-lang:jar:2.4 [DEBUG] Included: org.apache.httpcomponents:httpclient:jar:4.0.2 [DEBUG] Included: org.apache.httpcomponents:httpcore:jar:4.0.1 [DEBUG] Included: commons-codec:commons-codec:jar:1.3 [DEBUG] Included: commons-validator:commons-validator:jar:1.3.1 [DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0 [DEBUG] Included: commons-digester:commons-digester:jar:1.6 [DEBUG] Included: commons-logging:commons-logging:jar:1.0.4 [DEBUG] Included: org.apache.maven.shared:maven-script-interpreter:jar:1.1 [DEBUG] Included: org.codehaus.groovy:groovy:jar:2.0.1 [DEBUG] Included: antlr:antlr:jar:2.7.7 [DEBUG] Included: org.ow2.asm:asm-tree:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-commons:jar:4.0 [DEBUG] Included: org.ow2.asm:asm:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-util:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-analysis:jar:4.0 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.4 [DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7 [DEBUG] Included: org.apache.velocity:velocity:jar:1.5 [DEBUG] Included: oro:oro:jar:2.0.8 [DEBUG] Included: commons-collections:commons-collections:jar:3.2 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.codehaus.groovy:groovy-all:jar:2.0.1 [DEBUG] Included: org.apache.ant:ant:jar:1.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.21 [DEBUG] Included: commons-io:commons-io:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.21 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install' with basic configurator --> [DEBUG] (f) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) reactorProjects = [MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml] [DEBUG] (f) remoteArtifactRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => daily] ] [DEBUG] (f) remotePluginRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => never] ] [DEBUG] (f) skipInstallation = false [DEBUG] -- end configuration -- [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 [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 [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 [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 [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 [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 [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 [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations --- [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration' with basic configurator --> [DEBUG] (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [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} [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) propertyName = invoker.mavenOpts [DEBUG] (f) skip = false [DEBUG] -- end configuration -- [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 [INFO] [INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations --- [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run' with basic configurator --> [DEBUG] (f) addTestClassPath = true [DEBUG] (f) cloneAllFiles = false [DEBUG] (f) cloneClean = false [DEBUG] (f) cloneProjectsTo = /home/nicoulaj/workspace/compile-command-annotations/target/it/tests [DEBUG] (f) debug = false [DEBUG] (f) disableReports = false [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) goals = [clean, install] [DEBUG] (f) goalsFile = goals.txt [DEBUG] (f) ignoreFailures = false [DEBUG] (f) invokerPropertiesFile = invoker.properties [DEBUG] (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [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 [DEBUG] (f) mergeUserSettings = false [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run {execution: run-integration-tests} [DEBUG] (f) noLog = false [DEBUG] (f) parallelThreads = 1 [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] [DEBUG] (f) pomIncludes = [*/pom.xml] [DEBUG] (f) postBuildHookScript = postbuild [DEBUG] (f) preBuildHookScript = prebuild [DEBUG] (f) profilesFile = profiles.txt [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) projectsDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/it/tests [DEBUG] (f) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/it/reports [DEBUG] (f) selectorScript = selector.bsh [DEBUG] (f) settings = org.apache.maven.execution.SettingsAdapter@4d20616a [DEBUG] (f) settingsFile = /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml [DEBUG] (f) showErrors = true [DEBUG] (f) showVersion = false [DEBUG] (f) skipInvocation = false [DEBUG] (f) streamLogs = false [DEBUG] (f) suppressSummaries = false [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] [DEBUG] (f) testPropertiesFile = test.properties [DEBUG] -- end configuration -- [DEBUG] Setup projects: [] [DEBUG] Collecting parent/child projects of IT-01/pom.xml [DEBUG] Collecting parent/child projects of IT-03/pom.xml [DEBUG] Collecting parent/child projects of IT-02/pom.xml [DEBUG] Collecting parent/child projects of IT-05/pom.xml [DEBUG] Collecting parent/child projects of IT-04/pom.xml [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 [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 [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 [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 [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 [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 [INFO] Building: IT-01/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-01 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy [INFO] ..SUCCESS (4.8 s) [INFO] Building: IT-03/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-03 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy [INFO] ..SUCCESS (3.1 s) [INFO] Building: IT-02/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-02 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy [INFO] ..SUCCESS (3.3 s) [INFO] Building: IT-05/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = failure [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-05 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy [INFO] ..SUCCESS (2.4 s) [INFO] Building: IT-04/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-04 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy [INFO] ..SUCCESS (3.1 s) [INFO] ------------------------------------------------- [INFO] Build Summary: [INFO] Passed: 5, Failed: 0, Errors: 0, Skipped: 0 [INFO] ------------------------------------------------- [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations --- [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] [DEBUG] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'. [DEBUG] Setting property: site.resource.loader.class => 'org.codehaus.plexus.velocity.SiteResourceLoader'. [DEBUG] Setting property: velocimacro.messages.on => 'false'. [DEBUG] Setting property: resource.loader => 'classpath,site'. [DEBUG] Setting property: runtime.log.invalid.references => 'false'. [DEBUG] Setting property: resource.manager.logwhenfound => 'false'. [DEBUG] Setting property: velocimacro.permissions.allow.inline.to.replace.global => 'true'. [DEBUG] ******************************************************************* [DEBUG] Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) [DEBUG] RuntimeInstance initializing. [DEBUG] Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties [DEBUG] LogSystem has been deprecated. Please use a LogChute implementation. [DEBUG] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) [DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader [DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.SiteResourceLoader [DEBUG] ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) [DEBUG] Default ResourceManager initialization complete. [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach [DEBUG] Created '20' parsers. [DEBUG] Velocimacro : initialization starting. [DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in templates [DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may replace previous VM definitions [DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. [DEBUG] Velocimacro : autoload off : VM system will not automatically reload global library macros [DEBUG] Velocimacro : Velocimacro : initialization complete. [DEBUG] RuntimeInstance successfully initialized. [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report' with basic configurator --> [DEBUG] (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco [DEBUG] (f) outputEncoding = UTF-8 [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] (f) sourceEncoding = UTF-8 [DEBUG] (f) title = Hotspot compile command annotations [DEBUG] -- end configuration -- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations --- [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration' with basic configurator --> [DEBUG] (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco-it [DEBUG] (f) outputEncoding = UTF-8 [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] (f) sourceEncoding = UTF-8 [DEBUG] (f) title = Hotspot compile command annotations [DEBUG] -- end configuration -- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations --- [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} [DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.4: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.5:compile [DEBUG] org.codehaus.plexus:plexus-digest:jar:1.0:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Included: org.apache.maven.plugins:maven-install-plugin:jar:2.4 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.5 [DEBUG] Included: org.codehaus.plexus:plexus-digest:jar:1.0 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.4:install' with basic configurator --> [DEBUG] (f) artifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] (f) attachedArtifacts = [] [DEBUG] (f) createChecksum = false [DEBUG] (f) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) packaging = jar [DEBUG] (f) pomFile = /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) skip = false [DEBUG] (f) updateReleaseInfo = false [DEBUG] -- end configuration -- [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 [DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories [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 [DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories [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 [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 [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 20.999 s [INFO] Finished at: 2017-03-19T16:29:40+01:00 [INFO] Final Memory: 32M/319M [INFO] ------------------------------------------------------------------------ ================================================ FILE: tests/data/ref/mvn-004.log.out ================================================ Apache Maven 3.3.9 (NON-CANONICAL_2015-11-23T13:17:27+03:00_root; 2015-11-23T11:17:27+01:00) Maven home: /opt/maven Java version: 1.8.0_121, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-jdk/jre Default locale: en_US, platform encoding: ANSI_X3.4-1968 OS name: "linux", version: "4.10.2-1-arch", arch: "amd64", family: "unix" [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: javax.enterprise.inject.* < plexus.core [DEBUG] Imported: javax.enterprise.util.* < plexus.core [DEBUG] Imported: javax.inject.* < plexus.core [DEBUG] Imported: org.apache.maven.* < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.execution.scope < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.apache.maven.wagon.* < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.* < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.eclipse.aether.* < plexus.core [DEBUG] Imported: org.eclipse.aether.artifact < plexus.core [DEBUG] Imported: org.eclipse.aether.collection < plexus.core [DEBUG] Imported: org.eclipse.aether.deployment < plexus.core [DEBUG] Imported: org.eclipse.aether.graph < plexus.core [DEBUG] Imported: org.eclipse.aether.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.installation < plexus.core [DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.metadata < plexus.core [DEBUG] Imported: org.eclipse.aether.repository < plexus.core [DEBUG] Imported: org.eclipse.aether.resolution < plexus.core [DEBUG] Imported: org.eclipse.aether.spi < plexus.core [DEBUG] Imported: org.eclipse.aether.transfer < plexus.core [DEBUG] Imported: org.eclipse.aether.version < plexus.core [DEBUG] Imported: org.slf4j.* < plexus.core [DEBUG] Imported: org.slf4j.helpers.* < plexus.core [DEBUG] Imported: org.slf4j.spi.* < plexus.core [DEBUG] Populating class realm maven.api [INFO] Error stacktraces are turned on. [DEBUG] Reading global settings from /opt/maven/conf/settings.xml [DEBUG] Reading user settings from /home/nicoulaj/.m2/settings.xml [DEBUG] Reading global toolchains from /opt/maven/conf/toolchains.xml [DEBUG] Reading user toolchains from /home/nicoulaj/.m2/toolchains.xml [DEBUG] Using local repository at /home/nicoulaj/.m2/repository [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /home/nicoulaj/.m2/repository [FOREGROUND_GREEN][INFO] Scanning for projects[FOREGROUND_RESET]... [DEBUG] Extension realms for project net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT: (none) [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null] [DEBUG] Extension realms for project net.nicoulaj:parent:pom:48: (none) [DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null] [DEBUG] === REACTOR BUILD PLAN ================================================ [DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] Tasks: [clean, install] [DEBUG] Style: Regular [DEBUG] ======================================================================= [INFO] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [BOLD][INFO] Building Hotspot compile command annotations 1.2.2-SNAPSHOT[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [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] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] === PROJECT BUILD PLAN ================================================ [DEBUG] Project: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT [DEBUG] Dependencies (collect): [test] [DEBUG] Dependencies (resolve): [compile, runtime, test] [DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)] [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean (default-clean) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <directory default-value="${project.build.directory}"/> <excludeDefaultDirectories default-value="false">${maven.clean.excludeDefaultDirectories}</excludeDefaultDirectories> <failOnError default-value="true">${maven.clean.failOnError}</failOnError> <followSymLinks default-value="false">${maven.clean.followSymLinks}</followSymLinks> <outputDirectory default-value="${project.build.outputDirectory}"/> <reportDirectory default-value="${project.build.outputDirectory}"/> <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError> <skip default-value="false">${maven.clean.skip}</skip> <testOutputDirectory default-value="${project.build.testOutputDirectory}"/> <verbose>${maven.clean.verbose}</verbose> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <fail default-value="true">${enforcer.fail}</fail> <failFast default-value="false">${enforcer.failFast}</failFast> <ignoreCache default-value="false">${enforcer.ignoreCache}</ignoreCache> <mojoExecution default-value="${mojoExecution}"/> <project default-value="${project}"/> <rules> <requireMavenVersion> <version>[3.2.1,)</version> <message>Maven v3.2.1+ is required to build this project, please update.</message> </requireMavenVersion> </rules> <session default-value="${session}"/> <skip default-value="false">${enforcer.skip}</skip> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <address>${jacoco.address}</address> <append>${jacoco.append}</append> <classDumpDir>${jacoco.classDumpDir}</classDumpDir> <destFile default-value="${project.build.directory}/jacoco.exec">${jacoco.destFile}</destFile> <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit> <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders> <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses> <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses> <jmx>${jacoco.jmx}</jmx> <output>${jacoco.output}</output> <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap> <port>${jacoco.port}</port> <project>${project}</project> <propertyName>${jacoco.propertyName}</propertyName> <sessionId>${jacoco.sessionId}</sessionId> <skip default-value="false">${jacoco.skip}</skip> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources (default-resources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <addDefaultExcludes default-value="true"/> <buildFilters default-value="${project.build.filters}"/> <encoding default-value="${project.build.sourceEncoding}"/> <escapeString default-value="\"/> <escapeWindowsPaths default-value="true"/> <fileNameFiltering default-value="false"/> <includeEmptyDirs default-value="false"/> <outputDirectory default-value="${project.build.outputDirectory}"/> <overwrite default-value="false"/> <project default-value="${project}"/> <resources default-value="${project.resources}"/> <session default-value="${session}"/> <skip default-value="false">${maven.resources.skip}</skip> <supportMultiLineFiltering default-value="false"/> <useBuildFilters default-value="true"/> <useDefaultDelimiters default-value="true"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile (default-compile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <basedir default-value="${basedir}"/> <buildDirectory default-value="${project.build.directory}"/> <compilePath default-value="${project.compileClasspathElements}"/> <compileSourceRoots default-value="${project.compileSourceRoots}"/> <compilerArgument>-proc:none</compilerArgument> <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId> <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy> <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion> <debug default-value="true">${maven.compiler.debug}</debug> <debuglevel>${maven.compiler.debuglevel}</debuglevel> <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding> <executable>${maven.compiler.executable}</executable> <failOnError default-value="true">${maven.compiler.failOnError}</failOnError> <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning> <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse> <fork default-value="false">${maven.compiler.fork}</fork> <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/> <maxmem>${maven.compiler.maxmem}</maxmem> <meminitial>${maven.compiler.meminitial}</meminitial> <mojoExecution default-value="${mojoExecution}"/> <optimize default-value="false">${maven.compiler.optimize}</optimize> <outputDirectory default-value="${project.build.outputDirectory}"/> <project default-value="${project}"/> <projectArtifact default-value="${project.artifact}"/> <release>${maven.compiler.release}</release> <session default-value="${session}"/> <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation> <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings> <skipMain>${maven.main.skip}</skipMain> <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning> <source default-value="1.5">1.6</source> <staleMillis default-value="0">${lastModGranularityMs}</staleMillis> <target default-value="1.5">1.6</target> <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation> <verbose default-value="false">${maven.compiler.verbose}</verbose> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <project default-value="${project}"/> <sources> <source>/home/nicoulaj/workspace/compile-command-annotations/src/samples/java</source> </sources> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources (default-testResources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <addDefaultExcludes default-value="true"/> <buildFilters default-value="${project.build.filters}"/> <encoding default-value="${project.build.sourceEncoding}"/> <escapeString default-value="\"/> <escapeWindowsPaths default-value="true"/> <fileNameFiltering default-value="false"/> <includeEmptyDirs default-value="false"/> <outputDirectory default-value="${project.build.testOutputDirectory}"/> <overwrite default-value="false"/> <project default-value="${project}"/> <resources default-value="${project.testResources}"/> <session default-value="${session}"/> <skip default-value="false">${maven.test.skip}</skip> <supportMultiLineFiltering default-value="false"/> <useBuildFilters default-value="true"/> <useDefaultDelimiters default-value="true"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile (default-testCompile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <basedir default-value="${basedir}"/> <buildDirectory default-value="${project.build.directory}"/> <compilePath default-value="${project.compileClasspathElements}"/> <compileSourceRoots default-value="${project.testCompileSourceRoots}"/> <compilerArgument>-proc:none</compilerArgument> <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId> <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy> <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion> <debug default-value="true">${maven.compiler.debug}</debug> <debuglevel>${maven.compiler.debuglevel}</debuglevel> <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding> <executable>${maven.compiler.executable}</executable> <failOnError default-value="true">${maven.compiler.failOnError}</failOnError> <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning> <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse> <fork default-value="false">${maven.compiler.fork}</fork> <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/> <maxmem>${maven.compiler.maxmem}</maxmem> <meminitial>${maven.compiler.meminitial}</meminitial> <mojoExecution default-value="${mojoExecution}"/> <optimize default-value="false">${maven.compiler.optimize}</optimize> <outputDirectory default-value="${project.build.testOutputDirectory}"/> <project default-value="${project}"/> <release>${maven.compiler.release}</release> <session default-value="${session}"/> <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation> <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings> <skip>${maven.test.skip}</skip> <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning> <source default-value="1.5">1.6</source> <staleMillis default-value="0">${lastModGranularityMs}</staleMillis> <target default-value="1.5">1.6</target> <testPath default-value="${project.testClasspathElements}"/> <testRelease>${maven.compiler.testRelease}</testRelease> <testSource>${maven.compiler.testSource}</testSource> <testTarget>${maven.compiler.testTarget}</testTarget> <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation> <verbose default-value="false">${maven.compiler.verbose}</verbose> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <additionalClasspathElements>${maven.test.additionalClasspath}</additionalClasspathElements> <argLine>${argLine}</argLine> <basedir default-value="${basedir}"/> <childDelegation default-value="false">${childDelegation}</childDelegation> <classesDirectory default-value="${project.build.outputDirectory}"/> <classpathDependencyExcludes>${maven.test.dependency.excludes}</classpathDependencyExcludes> <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess> <dependenciesToScan>${dependenciesToScan}</dependenciesToScan> <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport> <enableAssertions default-value="true">${enableAssertions}</enableAssertions> <excludedGroups>${excludedGroups}</excludedGroups> <excludesFile>${surefire.excludesFile}</excludesFile> <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests> <failIfNoTests>${failIfNoTests}</failIfNoTests> <forkCount default-value="1">${forkCount}</forkCount> <forkMode default-value="once">${forkMode}</forkMode> <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds> <groups>${groups}</groups> <includesFile>${surefire.includesFile}</includesFile> <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName> <jvm>${jvm}</jvm> <localRepository default-value="${localRepository}"/> <objectFactory>${objectFactory}</objectFactory> <parallel>${parallel}</parallel> <parallelMavenExecution default-value="${session.parallel}"/> <parallelOptimized default-value="true">${parallelOptimized}</parallelOptimized> <parallelTestsTimeoutForcedInSeconds>${surefire.parallel.forcedTimeout}</parallelTestsTimeoutForcedInSeconds> <parallelTestsTimeoutInSeconds>${surefire.parallel.timeout}</parallelTestsTimeoutInSeconds> <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount> <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap> <pluginDescriptor default-value="${plugin}"/> <printSummary default-value="true">${surefire.printSummary}</printSummary> <projectArtifactMap>${project.artifactMap}</projectArtifactMap> <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile> <remoteRepositories default-value="${project.pluginArtifactRepositories}"/> <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat> <reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix> <reportsDirectory default-value="${project.build.directory}/surefire-reports"/> <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount> <reuseForks default-value="true">${reuseForks}</reuseForks> <runOrder default-value="filesystem">${surefire.runOrder}</runOrder> <shutdown default-value="testset">${surefire.shutdown}</shutdown> <skip default-value="false">${maven.test.skip}</skip> <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount> <skipExec>${maven.test.skip.exec}</skipExec> <skipTests default-value="false">${skipTests}</skipTests> <suiteXmlFiles>${surefire.suiteXmlFiles}</suiteXmlFiles> <test>${test}</test> <testClassesDirectory default-value="${project.build.testOutputDirectory}"/> <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore> <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName> <testSourceDirectory default-value="${project.build.testSourceDirectory}"/> <threadCount>${threadCount}</threadCount> <threadCountClasses default-value="0">${threadCountClasses}</threadCountClasses> <threadCountMethods default-value="0">${threadCountMethods}</threadCountMethods> <threadCountSuites default-value="0">${threadCountSuites}</threadCountSuites> <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace> <useFile default-value="true">${surefire.useFile}</useFile> <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar> <useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader> <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads> <workingDirectory>${basedir}</workingDirectory> <project default-value="${project}"/> <session default-value="${session}"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar (default-jar) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <classesDirectory default-value="${project.build.outputDirectory}"/> <finalName default-value="${project.build.finalName}"/> <forceCreation default-value="false">${maven.jar.forceCreation}</forceCreation> <outputDirectory default-value="${project.build.directory}"/> <project default-value="${project}"/> <session default-value="${session}"/> <skipIfEmpty default-value="false"/> <useDefaultManifestFile default-value="false">${jar.useDefaultManifestFile}</useDefaultManifestFile> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install (run-integration-tests) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <localRepository>${localRepository}</localRepository> <localRepositoryPath>/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath> <project default-value="${project}"/> <reactorProjects default-value="${reactorProjects}"/> <remoteArtifactRepositories default-value="${project.remoteArtifactRepositories}"/> <remotePluginRepositories default-value="${project.pluginArtifactRepositories}"/> <skipInstallation default-value="false">false</skipInstallation> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <address>${jacoco.address}</address> <append>${jacoco.append}</append> <classDumpDir>${jacoco.classDumpDir}</classDumpDir> <destFile default-value="${project.build.directory}/jacoco-it.exec">${jacoco.destFile}</destFile> <dumpOnExit>${jacoco.dumpOnExit}</dumpOnExit> <exclClassLoaders>${jacoco.exclClassLoaders}</exclClassLoaders> <inclBootstrapClasses>${jacoco.inclBootstrapClasses}</inclBootstrapClasses> <inclNoLocationClasses>${jacoco.inclNoLocationClasses}</inclNoLocationClasses> <jmx>${jacoco.jmx}</jmx> <output>${jacoco.output}</output> <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap> <port>${jacoco.port}</port> <project>${project}</project> <propertyName>invoker.mavenOpts</propertyName> <sessionId>${jacoco.sessionId}</sessionId> <skip default-value="false">${jacoco.skip}</skip> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run (run-integration-tests) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <addTestClassPath default-value="false">true</addTestClassPath> <cloneAllFiles default-value="false"/> <cloneClean default-value="false"/> <cloneProjectsTo>/home/nicoulaj/workspace/compile-command-annotations/target/it/tests</cloneProjectsTo> <debug default-value="false">false</debug> <disableReports default-value="false">${invoker.disableReports}</disableReports> <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding> <failIfNoProjects>${invoker.failIfNoProjects}</failIfNoProjects> <goals> <goal>clean</goal> <goal>install</goal> </goals> <goalsFile default-value="goals.txt">${invoker.goalsFile}</goalsFile> <ignoreFailures default-value="false">${maven.test.failure.ignore}</ignoreFailures> <invokerPropertiesFile default-value="invoker.properties">${invoker.invokerPropertiesFile}</invokerPropertiesFile> <invokerTest>${invoker.test}</invokerTest> <javaHome>${invoker.javaHome}</javaHome> <localRepositoryPath default-value="${settings.localRepository}">/home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository</localRepositoryPath> <mavenExecutable>${invoker.mavenExecutable}</mavenExecutable> <mavenHome>${invoker.mavenHome}</mavenHome> <mavenOpts>${invoker.mavenOpts}</mavenOpts> <mergeUserSettings default-value="false">${invoker.mergeUserSettings}</mergeUserSettings> <mojoExecution default-value="${mojoExecution}"/> <noLog default-value="false">${invoker.noLog}</noLog> <parallelThreads default-value="1">${invoker.parallelThreads}</parallelThreads> <pluginArtifacts>${plugin.artifacts}</pluginArtifacts> <pom>${invoker.pom}</pom> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript default-value="postbuild">${invoker.postBuildHookScript}</postBuildHookScript> <preBuildHookScript default-value="prebuild">${invoker.preBuildHookScript}</preBuildHookScript> <profilesFile default-value="profiles.txt">${invoker.profilesFile}</profilesFile> <project default-value="${project}"/> <projectsDirectory default-value="${basedir}/src/it/">src/it/tests</projectsDirectory> <reportsDirectory default-value="${project.build.directory}/invoker-reports">/home/nicoulaj/workspace/compile-command-annotations/target/it/reports</reportsDirectory> <selectorScript default-value="selector">selector.bsh</selectorScript> <settings default-value="${settings}"/> <settingsFile>src/it/settings.xml</settingsFile> <showErrors default-value="false">true</showErrors> <showVersion default-value="false">${invoker.showVersion}</showVersion> <skipInvocation default-value="false">false</skipInvocation> <streamLogs default-value="false">${invoker.streamLogs}</streamLogs> <suppressSummaries default-value="false"/> <testClassPath default-value="${project.testClasspathElements}"/> <testPropertiesFile default-value="test.properties">${invoker.testPropertiesFile}</testPropertiesFile> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <dataFile default-value="${project.build.directory}/jacoco.exec"/> <outputDirectory default-value="${project.reporting.outputDirectory}/jacoco"/> <outputEncoding default-value="UTF-8">${project.reporting.outputEncoding}</outputEncoding> <project>${project}</project> <skip default-value="false">${jacoco.skip}</skip> <sourceEncoding default-value="UTF-8">${project.build.sourceEncoding}</sourceEncoding> <title default-value="${project.name}"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <dataFile default-value="${project.build.directory}/jacoco-it.exec"/> <outputDirectory default-value="${project.reporting.outputDirectory}/jacoco-it"/> <outputEncoding default-value="UTF-8">${project.reporting.outputEncoding}</outputEncoding> <project>${project}</project> <skip default-value="false">${jacoco.skip}</skip> <sourceEncoding default-value="UTF-8">${project.build.sourceEncoding}</sourceEncoding> <title default-value="${project.name}"/> </configuration> [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-install-plugin:2.4:install (default-install) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?> <configuration> <artifact default-value="${project.artifact}"/> <attachedArtifacts default-value="${project.attachedArtifacts}"/> <createChecksum default-value="false">${createChecksum}</createChecksum> <localRepository>${localRepository}</localRepository> <packaging default-value="${project.packaging}"/> <pomFile default-value="${project.file}"/> <skip default-value="false">${maven.install.skip}</skip> <updateReleaseInfo default-value="false">${updateReleaseInfo}</updateReleaseInfo> </configuration> [DEBUG] ======================================================================= [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} [DEBUG] net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] org.testng:testng:jar:6.10:test [DEBUG] com.beust:jcommander:jar:1.48:test [DEBUG] com.google.guava:guava:jar:21.0:test [DEBUG] commons-io:commons-io:jar:2.5:test [DEBUG] org.assertj:assertj-core:jar:3.6.2:test [INFO] [FAINT][INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:3.0.0 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:3.0.0 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.4 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:3.0.0:clean' with basic configurator --> [DEBUG] (f) directory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) excludeDefaultDirectories = false [DEBUG] (f) failOnError = true [DEBUG] (f) followSymLinks = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) reportDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) retryOnError = true [DEBUG] (f) skip = false [DEBUG] (f) testOutputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] -- end configuration -- [INFO] Deleting /home/nicoulaj/workspace/compile-command-annotations/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0/commons-cli-1.0.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli/commons-cli [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-cli [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent/backport-util-concurrent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/backport-util-concurrent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/maven-metadata-local.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48/parent-48.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent/48 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/parent [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-04 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-02 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-03 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01/1.0-SNAPSHOT [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it/IT-01 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/it [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations/compile-command-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj/compile-command-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.pom [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5/commons-io-2.5.jar [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io/commons-io [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-io [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.pom [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang/2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang/commons-lang [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/commons-lang [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api/0.0.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-build-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-sec-dispatcher [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher/1.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus/plexus-cipher [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-impl [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-spi [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-util [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent/1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether/aether-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/aether [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6/forge-parent-6.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3/forge-parent-3.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent/3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge/forge-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/forge [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-bean [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice/2.1.7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-guice [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject-plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject/guice-bean [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/inject [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject/1.4.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu/sisu-inject [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/sisu [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/17 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16/spice-parent-16.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12/spice-parent-12.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent/10 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice/spice-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype/spice [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/sonatype [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11/apache-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15/apache-15.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16/apache-16.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18/apache-18.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9/apache-9.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5/apache-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4/apache-4.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13/apache-13.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10/apache-10.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6/apache-6.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3/apache-3.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache/3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/apache [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-toolchain [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-profile [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-descriptor [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-core [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-project [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-filtering [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/17 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/30 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components/19 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-components [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/3.1.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils/0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-utils [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-shared-incremental [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared/maven-common-artifact-filters [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/shared [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/3.0 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0/maven-3.0.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-repository-metadata [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11/maven-parent-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23/maven-parent-23.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/30 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13/maven-parent-13.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8/maven-parent-8.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21/maven-parent-21.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent/21 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-monitor [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin/3.6.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-compiler-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5/_remote.repositories [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 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin/2.5 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-clean-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin/2.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-jar-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin/2.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-resources-plugin [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/_remote.repositories [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30/maven-plugins-30.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/30 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins/22 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-plugins [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin/2.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-install-plugin [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins/maven-surefire-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugins [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-artifact-manager [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.6 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-parameter-documenter [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-registry [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.9 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-plugin-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-settings-builder [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-aether-provider [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder/3.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-model-builder [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 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-booter [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/maven-surefire-common [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api/2.12.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire/surefire-api [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/surefire [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-tools [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools/maven-plugin-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/plugin-tools [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.0.6 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/maven-error-diagnostics [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.1 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-sink-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api/1.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia-logging-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/_remote.repositories [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia/1.0-alpha-7 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia/doxia [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/doxia [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.9 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.0.6 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.9 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting/2.2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting/maven-reporting [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven/reporting [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/maven [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-exec [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3/3.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-lang3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11/commons-parent-11.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22/commons-parent-22.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/39 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35/commons-parent-35.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent/35 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons/commons-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache/commons [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/apache [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/jcl-over-slf4j [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14/1.5.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j/slf4j-jdk14 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/slf4j [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3/ow2-1.3.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/ow2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent/6.0_ALPHA [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm/6.0_ALPHA [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm/asm [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2/asm [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/ow2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent/38 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/mojo-parent [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin/1.5.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo/exec-maven-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/mojo [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/2.2.3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-classworlds [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0.3 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers/1.0-alpha-30 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-containers [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.14 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/4.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.7 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components/1.1.19 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-components [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest/1.0 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-digest [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io/2.0.2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-io [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 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation/1.14 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interpolation [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-30 [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 [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-container-default [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.6 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.3 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/4.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.7 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/2.0.2 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/1.0.4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.3.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus/3.0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.4 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.20 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/2.0.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.5.15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/3.0.8 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.4.5 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils/1.0.4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-utils [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations/1.6 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-component-annotations [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-javac [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compilers [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 [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-interactivity-api [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager/2.8.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-compiler-manager [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1/_remote.repositories [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 [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver/2.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus/plexus-archiver [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus/plexus [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/codehaus [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-core [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent/1.3 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest/hamcrest-parent [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org/hamcrest [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/org [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305/2.0.1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs/jsr305 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code/findbugs [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google/code [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com/google [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/com [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1 [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 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2/_remote.repositories [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 [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds/1.1-alpha-2 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds/classworlds [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/classworlds [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.pom [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1/junit-3.8.1.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/3.8.1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/_remote.repositories [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom.sha1 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12/junit-4.12.pom [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit/4.12 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit/junit [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository/junit [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-03.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/invoker-summary.txt [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-01.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-02.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-04.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/reports/BUILD-IT-05.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/reports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand/IT04.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/IT-04-1.0-SNAPSHOT.jar [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand/IT04.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes/my-compile-command-file [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand/IT05.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/src [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand/IT02.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/IT-02-1.0-SNAPSHOT.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand/IT02.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand/IT03.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/hotspot_pid11375.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/maven-status [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/IT-03-1.0-SNAPSHOT.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand/IT03.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/invoker.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand/IT01.java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main/java [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src/main [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/src [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-archiver [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 [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 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/maven-status [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/IT-01-1.0-SNAPSHOT.jar [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand/IT01.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/target [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/pom.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it/tests [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/it [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.css [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/emailable-report.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/navigator-bullet.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite/Surefire test.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/Surefire suite [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/jquery-1.7.1.min.js [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-reports.js [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/failed.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TEST-TestSuite.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/bullet_point.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/passed.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports/TEST-net.nicoulaj.compilecommand.CompileCommandProcessorTest.xml [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/junitreports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/skipped.png [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng-results.xml [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/index.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/TestSuite.txt [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/reporter-output.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/classes.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/Surefire test.properties [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/testng.xml.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/groups.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/main.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-alphabetical.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/index.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/methods-not-run.html [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite/toc.html [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/Surefire suite [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old/index.html [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/old [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/collapseall.gif [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports/testng.css [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver/pom.properties [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-archiver [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/testCompile [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile/default-compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin/compile [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status/maven-compiler-plugin [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/maven-status [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester$Report.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_03_Logging.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test24.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test11 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test21 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test08 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test12 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test07.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test10.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test09.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test14.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test18.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test15 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test06.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test04 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test16.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test01 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test02.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test03.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test23.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test17 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test20.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test13.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test22.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test05 [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases/Test19.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/ITAssert.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/JavaCompilationTester.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/Sample_04_Options.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand/CompileCommandProcessorTest.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes/net [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases/Test21.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456150338214 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand/Sample_04_Options.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456263527809 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases/Test09.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455957336903 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases/Test24.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456195733280 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases/Test19.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456111676713 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases/Test22.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456165197341 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases/Test10.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455973862984 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases/Test11.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455993044250 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases/Test05.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455840301393 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases/Test12.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456015200071 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases/Test01.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455334672176 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases/Test16.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456073666098 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases/Test20.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456128575501 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases/Test13.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456030019592 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases/Test17.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456086853783 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases/Test14.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456046227855 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases/Test15.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456059852813 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases/Test07.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455876640252 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases/Test08.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455910032727 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand/Sample_01_Inlining.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456209025012 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand/Sample_02_Compilation.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456234236468 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases/Test06.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455859172768 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases/Test02.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455777759752 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases/Test04.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455821026419 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases/Test18.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456099223404 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases/Test03.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240455800507041 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases/Test23.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand/testcases [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456182555050 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/sources [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand/Sample_03_Logging.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF/hotspot_compiler [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation/240456248853629 [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/test-compilation [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$3.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$1.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Log.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/CompileOnly.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Options.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/DontInline.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Break.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Quiet.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Inline.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Option.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Print.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations/Exclude.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/annotations [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor.class [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand/CompileCommandProcessor$2.class [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj/compilecommand [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net/nicoulaj [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/net [INFO] Deleting file /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services/javax.annotation.processing.Processor [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF/services [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes/META-INF [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] Deleting directory /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] Skipping non-existing directory /home/nicoulaj/workspace/compile-command-annotations/target/classes [INFO] [FAINT][INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1: [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.22:compile [DEBUG] commons-lang:commons-lang:jar:2.3:compile [DEBUG] org.apache.maven.enforcer:enforcer-api:jar:1.4.1:compile [DEBUG] org.apache.maven.enforcer:enforcer-rules:jar:1.4.1:compile [DEBUG] org.apache.maven.shared:maven-common-artifact-filters:jar:1.4:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.apache.maven.shared:maven-dependency-tree:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.eclipse.aether:aether-util:jar:0.9.0.M2:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile [DEBUG] org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3:compile [DEBUG] org.codehaus.plexus:plexus-archiver:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-io:jar:2.0.4:compile [DEBUG] junit:junit:jar:4.11:compile [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.4.1 [DEBUG] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.4.1 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.22 [DEBUG] Included: commons-lang:commons-lang:jar:2.3 [DEBUG] Included: org.apache.maven.enforcer:enforcer-api:jar:1.4.1 [DEBUG] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.4.1 [DEBUG] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.4 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.apache.maven.shared:maven-dependency-tree:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.eclipse.aether:aether-util:jar:0.9.0.M2 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6 [DEBUG] Included: org.apache.maven.plugin-testing:maven-plugin-testing-harness:jar:1.3 [DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.0.4 [DEBUG] Included: junit:junit:jar:4.11 [DEBUG] Included: org.hamcrest:hamcrest-core:jar:1.3 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce' with basic configurator --> [DEBUG] (s) fail = true [DEBUG] (s) failFast = false [DEBUG] (f) ignoreCache = false [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce {execution: enforce-maven-version} [DEBUG] (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) version = [3.2.1,) [DEBUG] (s) message = Maven v3.2.1+ is required to build this project, please update. [DEBUG] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@6622a690] [DEBUG] (s) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (s) skip = false [DEBUG] -- end configuration -- [DEBUG] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion [DEBUG] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable. [DEBUG] Detected Maven Version: 3.3.9 [DEBUG] Detected Maven Version: 3.3.9 is allowed in the range [3.2.1,). [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (pre-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.8.2:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.22:compile [DEBUG] org.apache.maven.shared:file-management:jar:1.2.1:compile [DEBUG] org.apache.maven.shared:maven-shared-io:jar:1.1:compile [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile [DEBUG] org.apache.maven.doxia:doxia-core:jar:1.1.2:compile [DEBUG] xerces:xercesImpl:jar:2.8.1:compile [DEBUG] commons-lang:commons-lang:jar:2.4:compile [DEBUG] commons-httpclient:commons-httpclient:jar:3.1:compile [DEBUG] commons-codec:commons-codec:jar:1.2:compile [DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile [DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile [DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile [DEBUG] org.apache.velocity:velocity:jar:1.5:compile [DEBUG] commons-collections:commons-collections:jar:3.2:compile [DEBUG] commons-validator:commons-validator:jar:1.2.0:compile [DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile [DEBUG] commons-digester:commons-digester:jar:1.6:compile [DEBUG] commons-logging:commons-logging:jar:1.0.4:compile [DEBUG] oro:oro:jar:2.0.8:compile [DEBUG] xml-apis:xml-apis:jar:1.0.b2:compile [DEBUG] org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606:compile [DEBUG] org.jacoco:org.jacoco.core:jar:0.7.7.201606060606:compile [DEBUG] org.ow2.asm:asm-debug-all:jar:5.1:compile [DEBUG] org.jacoco:org.jacoco.report:jar:0.7.7.201606060606:compile [DEBUG] Created new class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Importing foreign packages into class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.jacoco:jacoco-maven-plugin:0.7.7.201606060606 [DEBUG] Included: org.jacoco:jacoco-maven-plugin:jar:0.7.7.201606060606 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: junit:junit:jar:4.8.2 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.22 [DEBUG] Included: org.apache.maven.shared:file-management:jar:1.2.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:1.1 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.1.2 [DEBUG] Included: xerces:xercesImpl:jar:2.8.1 [DEBUG] Included: commons-lang:commons-lang:jar:2.4 [DEBUG] Included: commons-httpclient:commons-httpclient:jar:3.1 [DEBUG] Included: commons-codec:commons-codec:jar:1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2 [DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.2 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7 [DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7 [DEBUG] Included: org.apache.velocity:velocity:jar:1.5 [DEBUG] Included: commons-collections:commons-collections:jar:3.2 [DEBUG] Included: commons-validator:commons-validator:jar:1.2.0 [DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0 [DEBUG] Included: commons-digester:commons-digester:jar:1.6 [DEBUG] Included: commons-logging:commons-logging:jar:1.0.4 [DEBUG] Included: oro:oro:jar:2.0.8 [DEBUG] Included: xml-apis:xml-apis:jar:1.0.b2 [DEBUG] Included: org.jacoco:org.jacoco.agent:jar:runtime:0.7.7.201606060606 [DEBUG] Included: org.jacoco:org.jacoco.core:jar:0.7.7.201606060606 [DEBUG] Included: org.ow2.asm:asm-debug-all:jar:5.1 [DEBUG] Included: org.jacoco:org.jacoco.report:jar:0.7.7.201606060606 [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent' with basic configurator --> [DEBUG] (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [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} [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] -- end configuration -- [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 [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] org.apache.maven.shared:maven-filtering:jar:3.1.1:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.22:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1 [DEBUG] Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [DEBUG] Included: org.apache.maven.shared:maven-filtering:jar:3.1.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [DEBUG] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.22 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources' with basic configurator --> [DEBUG] (f) addDefaultExcludes = true [DEBUG] (f) buildFilters = [] [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) escapeString = \ [DEBUG] (f) escapeWindowsPaths = true [DEBUG] (f) fileNameFiltering = false [DEBUG] (s) includeEmptyDirs = false [DEBUG] (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (s) overwrite = false [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/main/resources, PatternSet [includes: {}, excludes: {}]}}] [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skip = false [DEBUG] (f) supportMultiLineFiltering = false [DEBUG] (f) useBuildFilters = true [DEBUG] (s) useDefaultDelimiters = true [DEBUG] -- end configuration -- [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=(B, env.DISPLAY=:1, env.LESS_TERMCAP_md=[BOLD], 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], 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= , 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](B, 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=, 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=(B, 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} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory /home/nicoulaj/workspace/compile-command-annotations/src/main/resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 1 resource [DEBUG] Copying file META-INF/services/javax.annotation.processing.Processor [DEBUG] file javax.annotation.processing.Processor has a filtered file extension [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 [DEBUG] no use filter components [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:compile (default-compile) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.14:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile [DEBUG] commons-io:commons-io:jar:2.5:compile [DEBUG] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile [DEBUG] org.ow2.asm:asm:jar:6.0_ALPHA:compile [DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:2.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1:compile [DEBUG] org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1:runtime [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.6.0 [DEBUG] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.6.0 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.4 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.14 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.1.0 [DEBUG] Included: commons-io:commons-io:jar:2.5 [DEBUG] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1 [DEBUG] Included: org.ow2.asm:asm:jar:6.0_ALPHA [DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.8.1 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile' with basic configurator --> [DEBUG] (f) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/main/java] [DEBUG] (f) compilerArgument = -proc:none [DEBUG] (f) compilerId = javac [DEBUG] (f) debug = true [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) failOnError = true [DEBUG] (f) failOnWarning = false [DEBUG] (f) forceJavacCompilerUse = false [DEBUG] (f) fork = false [DEBUG] (f) generatedSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:compile {execution: default-compile} [DEBUG] (f) optimize = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) projectArtifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) showDeprecation = false [DEBUG] (f) showWarnings = false [DEBUG] (f) skipMultiThreadWarning = false [DEBUG] (f) source = 1.6 [DEBUG] (f) staleMillis = 0 [DEBUG] (f) target = 1.6 [DEBUG] (f) useIncrementalCompilation = true [DEBUG] (f) verbose = false [DEBUG] -- end configuration -- [DEBUG] Using compiler 'javac'. [DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations to compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/main/java [DEBUG] New compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/main/java /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] CompilerReuseStrategy: reuseCreated [DEBUG] useIncrementalCompilation enabled [DEBUG] classpathElements: [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Exclude.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Log.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Option.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/CompileOnly.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/CompileCommandProcessor.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/package-info.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/DontInline.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Inline.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Options.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Print.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Quiet.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/Break.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/main/java/net/nicoulaj/compilecommand/annotations/package-info.java [INFO] Changes detected - recompiling the module! [DEBUG] Classpath: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] Source roots: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/main/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/generated-sources/annotations [DEBUG] Command line options: [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 [DEBUG] incrementalBuildHelper#beforeRebuildExecution [INFO] Compiling 13 source files to /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] incrementalBuildHelper#afterRebuildExecution [INFO] [FAINT][INFO] --- build-helper-maven-plugin:1.12:add-test-source (add-additional-test-source-roots) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.codehaus.mojo:build-helper-maven-plugin:jar:1.12: [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.12:test [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:test [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.apache.maven.shared:file-management:jar:3.0.0:compile [DEBUG] org.apache.maven.shared:maven-shared-io:jar:3.0.0:compile [DEBUG] org.apache.maven:maven-compat:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] com.google.code.findbugs:jsr305:jar:2.0.1:compile [DEBUG] Created new class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Importing foreign packages into class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.codehaus.mojo:build-helper-maven-plugin:1.12 [DEBUG] Included: org.codehaus.mojo:build-helper-maven-plugin:jar:1.12 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.2.1 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.1 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.apache.maven.shared:file-management:jar:3.0.0 [DEBUG] Included: org.apache.maven.shared:maven-shared-io:jar:3.0.0 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [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] [DEBUG] Configuring mojo 'org.codehaus.mojo:build-helper-maven-plugin:1.12:add-test-source' with basic configurator --> [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) sources = [/home/nicoulaj/workspace/compile-command-annotations/src/samples/java] [DEBUG] -- end configuration -- [INFO] Test Source directory: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java added. [INFO] [FAINT][INFO] --- maven-resources-plugin:3.0.1:testResources (default-testResources) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources' with basic configurator --> [DEBUG] (f) addDefaultExcludes = true [DEBUG] (f) buildFilters = [] [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) escapeString = \ [DEBUG] (f) escapeWindowsPaths = true [DEBUG] (f) fileNameFiltering = false [DEBUG] (s) includeEmptyDirs = false [DEBUG] (s) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (s) overwrite = false [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /home/nicoulaj/workspace/compile-command-annotations/src/test/resources, PatternSet [includes: {}, excludes: {}]}}] [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skip = false [DEBUG] (f) supportMultiLineFiltering = false [DEBUG] (f) useBuildFilters = true [DEBUG] (s) useDefaultDelimiters = true [DEBUG] -- end configuration -- [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=(B, env.DISPLAY=:1, env.LESS_TERMCAP_md=[BOLD], 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], 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= , 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](B, 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=, 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=(B, 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} [INFO] Using 'UTF-8' encoding to copy filtered resources. [DEBUG] resource with targetPath null directory /home/nicoulaj/workspace/compile-command-annotations/src/test/resources excludes [] includes [] [DEBUG] ignoreDelta true [INFO] Copying 24 resources [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test05 [DEBUG] file Test05 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test17 [DEBUG] file Test17 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test01 [DEBUG] file Test01 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test04 [DEBUG] file Test04 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test19 [DEBUG] file Test19 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test15 [DEBUG] file Test15 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test23 [DEBUG] file Test23 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test12 [DEBUG] file Test12 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test10 [DEBUG] file Test10 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test08 [DEBUG] file Test08 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test03 [DEBUG] file Test03 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test13 [DEBUG] file Test13 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test02 [DEBUG] file Test02 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test21 [DEBUG] file Test21 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test11 [DEBUG] file Test11 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test14 [DEBUG] file Test14 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test22 [DEBUG] file Test22 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test18 [DEBUG] file Test18 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test07 [DEBUG] file Test07 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test06 [DEBUG] file Test06 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test24 [DEBUG] file Test24 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test09 [DEBUG] file Test09 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test16 [DEBUG] file Test16 has a filtered file extension [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 [DEBUG] Copying file net/nicoulaj/compilecommand/testcases/Test20 [DEBUG] file Test20 has a filtered file extension [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 [DEBUG] no use filter components [INFO] [FAINT][INFO] --- maven-compiler-plugin:3.6.0:testCompile (default-testCompile) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile' with basic configurator --> [DEBUG] (f) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (f) buildDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) compilePath = [/home/nicoulaj/workspace/compile-command-annotations/target/classes] [DEBUG] (f) compileSourceRoots = [/home/nicoulaj/workspace/compile-command-annotations/src/test/java, /home/nicoulaj/workspace/compile-command-annotations/src/samples/java] [DEBUG] (f) compilerArgument = -proc:none [DEBUG] (f) compilerId = javac [DEBUG] (f) debug = true [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) failOnError = true [DEBUG] (f) failOnWarning = false [DEBUG] (f) forceJavacCompilerUse = false [DEBUG] (f) fork = false [DEBUG] (f) generatedTestSourcesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.6.0:testCompile {execution: default-testCompile} [DEBUG] (f) optimize = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) showDeprecation = false [DEBUG] (f) showWarnings = false [DEBUG] (f) skipMultiThreadWarning = false [DEBUG] (f) source = 1.6 [DEBUG] (f) staleMillis = 0 [DEBUG] (f) target = 1.6 [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] [DEBUG] (f) useIncrementalCompilation = true [DEBUG] (f) verbose = false [DEBUG] -- end configuration -- [DEBUG] Using compiler 'javac'. [DEBUG] Adding /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations to test-compile source roots: /home/nicoulaj/workspace/compile-command-annotations/src/test/java /home/nicoulaj/workspace/compile-command-annotations/src/samples/java [DEBUG] New test-compile source roots: /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 [DEBUG] CompilerReuseStrategy: reuseCreated [DEBUG] useIncrementalCompilation enabled [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test15.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test12.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test04.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test20.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test07.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/package-info.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test23.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test18.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test03.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test17.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test09.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test11.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_03_Logging.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test06.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test22.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test14.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test05.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test08.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/ITAssert.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test13.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test10.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test02.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test24.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test21.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/JavaCompilationTester.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test01.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_01_Inlining.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_02_Compilation.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test19.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/testcases/Test16.java [DEBUG] Stale source detected: /home/nicoulaj/workspace/compile-command-annotations/src/samples/java/net/nicoulaj/compilecommand/Sample_04_Options.java [INFO] Changes detected - recompiling the module! [DEBUG] Classpath: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] /home/nicoulaj/.m2/repository/org/testng/testng/6.10/testng-6.10.jar [DEBUG] /home/nicoulaj/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar [DEBUG] /home/nicoulaj/.m2/repository/com/google/guava/guava/21.0/guava-21.0.jar [DEBUG] /home/nicoulaj/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar [DEBUG] /home/nicoulaj/.m2/repository/org/assertj/assertj-core/3.6.2/assertj-core-3.6.2.jar [DEBUG] Source roots: [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/test/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/src/samples/java [DEBUG] /home/nicoulaj/workspace/compile-command-annotations/target/generated-test-sources/test-annotations [DEBUG] Command line options: [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 [DEBUG] incrementalBuildHelper#beforeRebuildExecution [INFO] Compiling 32 source files to /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] incrementalBuildHelper#afterRebuildExecution [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Some input files use or override a deprecated API. [INFO] /home/nicoulaj/workspace/compile-command-annotations/src/test/java/net/nicoulaj/compilecommand/CompileCommandProcessorTest.java: Recompile with -Xlint:deprecation for details. [INFO] [FAINT][INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile [DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:4.12:compile [DEBUG] org.hamcrest:hamcrest-core:jar:1.3:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.commons:commons-lang3:jar:3.1:compile [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:compile [DEBUG] org.apache.maven:maven-toolchain:jar:2.2.1:compile [DEBUG] org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-surefire-plugin:2.19.1 [DEBUG] Included: org.apache.maven.plugins:maven-surefire-plugin:jar:2.19.1 [DEBUG] Included: org.apache.maven.surefire:maven-surefire-common:jar:2.19.1 [DEBUG] Included: org.apache.maven.surefire:surefire-booter:jar:2.19.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15 [DEBUG] Included: junit:junit:jar:4.12 [DEBUG] Included: org.hamcrest:hamcrest-core:jar:1.3 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.commons:commons-lang3:jar:3.1 [DEBUG] Included: org.apache.maven.surefire:surefire-api:jar:2.19.1 [DEBUG] Included: org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test' with basic configurator --> [DEBUG] (s) additionalClasspathElements = [] [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 [DEBUG] (s) basedir = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (s) childDelegation = false [DEBUG] (s) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (s) classpathDependencyExcludes = [] [DEBUG] (s) dependenciesToScan = [] [DEBUG] (s) disableXmlReport = false [DEBUG] (s) enableAssertions = true [DEBUG] (f) forkCount = 1 [DEBUG] (s) forkMode = once [DEBUG] (s) junitArtifactName = junit:junit [DEBUG] (s) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) parallelMavenExecution = false [DEBUG] (s) parallelOptimized = true [DEBUG] (s) perCoreThreadCount = true [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} [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' role: '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' [FOREGROUND_YELLOW]---[FOREGROUND_RESET] [DEBUG] (s) printSummary = true [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} [DEBUG] (s) redirectTestOutputToFile = false [DEBUG] (s) remoteRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => never] ] [DEBUG] (s) reportFormat = brief [DEBUG] (s) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [DEBUG] (f) rerunFailingTestsCount = 0 [DEBUG] (f) reuseForks = true [DEBUG] (s) runOrder = filesystem [DEBUG] (f) shutdown = testset [DEBUG] (s) skip = false [DEBUG] (f) skipAfterFailureCount = 0 [DEBUG] (s) skipTests = false [DEBUG] (s) suiteXmlFiles = [] [DEBUG] (s) testClassesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/test-classes [DEBUG] (s) testFailureIgnore = false [DEBUG] (s) testNGArtifactName = org.testng:testng [DEBUG] (s) testSourceDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/test/java [DEBUG] (s) threadCountClasses = 0 [DEBUG] (s) threadCountMethods = 0 [DEBUG] (s) threadCountSuites = 0 [DEBUG] (s) trimStackTrace = true [DEBUG] (s) useFile = true [DEBUG] (s) useManifestOnlyJar = true [DEBUG] (s) useSystemClassLoader = true [DEBUG] (s) useUnlimitedThreads = false [DEBUG] (s) workingDirectory = /home/nicoulaj/workspace/compile-command-annotations [DEBUG] (s) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] -- end configuration -- [DEBUG] Surefire report directory: /home/nicoulaj/workspace/compile-command-annotations/target/surefire-reports [DEBUG] Setting system property [user.dir]=[/home/nicoulaj/workspace/compile-command-annotations] [DEBUG] Setting system property [localRepository]=[/home/nicoulaj/.m2/repository] [DEBUG] Setting system property [basedir]=[/home/nicoulaj/workspace/compile-command-annotations] [DEBUG] dummy:dummy:jar:1.0 (selected for null) [DEBUG] org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile (selected for compile) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:compile (selected for compile) [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 [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 [DEBUG] Using JVM: /usr/lib/jvm/java-8-jdk/jre/bin/java [DEBUG] dummy:dummy:jar:1.0 (selected for null) [DEBUG] org.apache.maven.surefire:surefire-testng:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:common-java5:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-testng-utils:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-grouper:jar:2.19.1:test (selected for test) [DEBUG] org.apache.maven.surefire:surefire-api:jar:2.19.1:test (selected for test) [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 [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 [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 [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 [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 [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 [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 [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 [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 [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] [FOREGROUND_YELLOW] T E S T S[FOREGROUND_RESET] [FOREGROUND_YELLOW]-------------------------------------------------------[FOREGROUND_RESET] [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 [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 Forking 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 Running TestSuite Configuring TestNG with: TestNG60Configurator [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.358 sec - in TestSuite[FOREGROUND_RESET] [BOLD]Results :[RESET_INTENSITY] [FOREGROUND_GREEN]Tests run: 28, Failures: 0, Errors: 0, Skipped: 0[FOREGROUND_RESET] [INFO] [FAINT][INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile [DEBUG] org.apache.maven:maven-model:jar:3.0:compile [DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile [DEBUG] org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile [DEBUG] org.apache.maven:maven-core:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings:jar:3.0:compile [DEBUG] org.apache.maven:maven-settings-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:3.0:compile [DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile [DEBUG] org.apache.maven:maven-aether-provider:jar:3.0:runtime [DEBUG] org.sonatype.aether:aether-impl:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-spi:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-api:jar:1.7:compile [DEBUG] org.sonatype.aether:aether-util:jar:1.7:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.14:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile [DEBUG] org.apache.maven:maven-archiver:jar:3.1.1:compile [DEBUG] org.apache.maven.shared:maven-shared-utils:jar:3.0.1:compile [DEBUG] commons-io:commons-io:jar:2.5:compile [DEBUG] org.codehaus.plexus:plexus-archiver:jar:3.4:compile [DEBUG] org.codehaus.plexus:plexus-io:jar:2.7.1:compile [DEBUG] org.apache.commons:commons-compress:jar:1.11:compile [DEBUG] org.iq80.snappy:snappy:jar:0.4:compile [DEBUG] org.tukaani:xz:jar:1.5:runtime [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.24:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-jar-plugin:3.0.2 [DEBUG] Included: org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2 [DEBUG] Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2 [DEBUG] Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7 [DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.14 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven:maven-archiver:jar:3.1.1 [DEBUG] Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.1 [DEBUG] Included: commons-io:commons-io:jar:2.5 [DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:3.4 [DEBUG] Included: org.codehaus.plexus:plexus-io:jar:2.7.1 [DEBUG] Included: org.apache.commons:commons-compress:jar:1.11 [DEBUG] Included: org.iq80.snappy:snappy:jar:0.4 [DEBUG] Included: org.tukaani:xz:jar:1.5 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.24 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-jar-plugin:3.0.2:jar' with basic configurator --> [DEBUG] (f) classesDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/classes [DEBUG] (f) finalName = compile-command-annotations-1.2.2-SNAPSHOT [DEBUG] (f) forceCreation = false [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) session = org.apache.maven.execution.MavenSession@30b9eadd [DEBUG] (f) skipIfEmpty = false [DEBUG] (f) useDefaultManifestFile = false [DEBUG] -- end configuration -- [DEBUG] isUp2date: false (Destination /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar not found.) [INFO] Building jar: /home/nicoulaj/workspace/compile-command-annotations/target/compile-command-annotations-1.2.2-SNAPSHOT.jar [DEBUG] adding directory META-INF/ [DEBUG] adding entry META-INF/MANIFEST.MF [DEBUG] adding directory META-INF/services/ [DEBUG] adding directory net/ [DEBUG] adding directory net/nicoulaj/ [DEBUG] adding directory net/nicoulaj/compilecommand/ [DEBUG] adding directory net/nicoulaj/compilecommand/annotations/ [DEBUG] adding entry META-INF/services/javax.annotation.processing.Processor [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$2.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Exclude.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Print.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Option.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Inline.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Quiet.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Break.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/DontInline.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Options.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/CompileOnly.class [DEBUG] adding entry net/nicoulaj/compilecommand/annotations/Log.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$1.class [DEBUG] adding entry net/nicoulaj/compilecommand/CompileCommandProcessor$3.class [DEBUG] adding directory META-INF/maven/ [DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/ [DEBUG] adding directory META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/ [DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.xml [DEBUG] adding entry META-INF/maven/net.nicoulaj.compile-command-annotations/compile-command-annotations/pom.properties [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:install (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0: [DEBUG] org.apache.maven.shared:maven-invoker:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.apache.maven:maven-core:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.2.1:compile [DEBUG] org.slf4j:slf4j-jdk14:jar:1.5.6:runtime [DEBUG] org.slf4j:slf4j-api:jar:1.5.6:runtime [DEBUG] org.slf4j:jcl-over-slf4j:jar:1.5.6:runtime [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-error-diagnostics:jar:2.2.1:compile [DEBUG] commons-cli:commons-cli:jar:1.2:compile [DEBUG] org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-monitor:jar:2.2.1:compile [DEBUG] classworlds:classworlds:jar:1.1:compile [DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile [DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-model:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-plugin-api:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven.reporting:maven-reporting-api:jar:3.0:compile [DEBUG] org.apache.maven.reporting:maven-reporting-impl:jar:2.2:compile [DEBUG] org.apache.maven.doxia:doxia-core:jar:1.2:compile [DEBUG] xerces:xercesImpl:jar:2.9.1:compile [DEBUG] xml-apis:xml-apis:jar:1.3.04:compile [DEBUG] commons-lang:commons-lang:jar:2.4:compile [DEBUG] org.apache.httpcomponents:httpclient:jar:4.0.2:compile [DEBUG] org.apache.httpcomponents:httpcore:jar:4.0.1:compile [DEBUG] commons-codec:commons-codec:jar:1.3:compile [DEBUG] commons-validator:commons-validator:jar:1.3.1:compile [DEBUG] commons-beanutils:commons-beanutils:jar:1.7.0:compile [DEBUG] commons-digester:commons-digester:jar:1.6:compile [DEBUG] commons-logging:commons-logging:jar:1.0.4:compile [DEBUG] org.apache.maven.shared:maven-script-interpreter:jar:1.1:compile [DEBUG] org.codehaus.groovy:groovy:jar:2.0.1:compile [DEBUG] antlr:antlr:jar:2.7.7:compile [DEBUG] org.ow2.asm:asm-tree:jar:4.0:compile [DEBUG] org.ow2.asm:asm-commons:jar:4.0:compile [DEBUG] org.ow2.asm:asm:jar:4.0:compile [DEBUG] org.ow2.asm:asm-util:jar:4.0:compile [DEBUG] org.ow2.asm:asm-analysis:jar:4.0:compile [DEBUG] org.apache.maven.doxia:doxia-sink-api:jar:1.4:compile [DEBUG] org.apache.maven.doxia:doxia-logging-api:jar:1.4:compile [DEBUG] org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4:compile [DEBUG] org.apache.maven.doxia:doxia-module-fml:jar:1.1.4:compile [DEBUG] org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile [DEBUG] org.apache.velocity:velocity:jar:1.5:compile [DEBUG] oro:oro:jar:2.0.8:compile [DEBUG] commons-collections:commons-collections:jar:3.2:compile [DEBUG] org.beanshell:bsh:jar:2.0b4:compile [DEBUG] org.codehaus.groovy:groovy-all:jar:2.0.1:compile [DEBUG] org.apache.ant:ant:jar:1.8.1:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.21:compile [DEBUG] commons-io:commons-io:jar:2.2:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.21:compile [DEBUG] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-invoker-plugin:2.0.0 [DEBUG] Included: org.apache.maven.plugins:maven-invoker-plugin:jar:2.0.0 [DEBUG] Included: org.apache.maven.shared:maven-invoker:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: org.slf4j:slf4j-jdk14:jar:1.5.6 [DEBUG] Included: org.slf4j:jcl-over-slf4j:jar:1.5.6 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: commons-cli:commons-cli:jar:1.2 [DEBUG] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 [DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-api:jar:3.0 [DEBUG] Included: org.apache.maven.reporting:maven-reporting-impl:jar:2.2 [DEBUG] Included: org.apache.maven.doxia:doxia-core:jar:1.2 [DEBUG] Included: xerces:xercesImpl:jar:2.9.1 [DEBUG] Included: xml-apis:xml-apis:jar:1.3.04 [DEBUG] Included: commons-lang:commons-lang:jar:2.4 [DEBUG] Included: org.apache.httpcomponents:httpclient:jar:4.0.2 [DEBUG] Included: org.apache.httpcomponents:httpcore:jar:4.0.1 [DEBUG] Included: commons-codec:commons-codec:jar:1.3 [DEBUG] Included: commons-validator:commons-validator:jar:1.3.1 [DEBUG] Included: commons-beanutils:commons-beanutils:jar:1.7.0 [DEBUG] Included: commons-digester:commons-digester:jar:1.6 [DEBUG] Included: commons-logging:commons-logging:jar:1.0.4 [DEBUG] Included: org.apache.maven.shared:maven-script-interpreter:jar:1.1 [DEBUG] Included: org.codehaus.groovy:groovy:jar:2.0.1 [DEBUG] Included: antlr:antlr:jar:2.7.7 [DEBUG] Included: org.ow2.asm:asm-tree:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-commons:jar:4.0 [DEBUG] Included: org.ow2.asm:asm:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-util:jar:4.0 [DEBUG] Included: org.ow2.asm:asm-analysis:jar:4.0 [DEBUG] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-logging-api:jar:1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-site-renderer:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-decoration-model:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.4 [DEBUG] Included: org.apache.maven.doxia:doxia-module-fml:jar:1.1.4 [DEBUG] Included: org.codehaus.plexus:plexus-velocity:jar:1.1.7 [DEBUG] Included: org.apache.velocity:velocity:jar:1.5 [DEBUG] Included: oro:oro:jar:2.0.8 [DEBUG] Included: commons-collections:commons-collections:jar:3.2 [DEBUG] Included: org.beanshell:bsh:jar:2.0b4 [DEBUG] Included: org.codehaus.groovy:groovy-all:jar:2.0.1 [DEBUG] Included: org.apache.ant:ant:jar:1.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.21 [DEBUG] Included: commons-io:commons-io:jar:2.2 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.21 [DEBUG] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:install' with basic configurator --> [DEBUG] (f) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) reactorProjects = [MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml] [DEBUG] (f) remoteArtifactRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => daily] ] [DEBUG] (f) remotePluginRepositories = [ id: central url: https://repo.maven.apache.org/maven2 layout: default snapshots: [enabled => false, update => daily] releases: [enabled => true, update => never] ] [DEBUG] (f) skipInstallation = false [DEBUG] -- end configuration -- [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 [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 [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 [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 [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 [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 [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 [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration (pre-integration-test) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:prepare-agent-integration' with basic configurator --> [DEBUG] (f) destFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [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} [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) propertyName = invoker.mavenOpts [DEBUG] (f) skip = false [DEBUG] -- end configuration -- [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 [INFO] [FAINT][INFO] --- maven-invoker-plugin:2.0.0:run (run-integration-tests) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run' with basic configurator --> [DEBUG] (f) addTestClassPath = true [DEBUG] (f) cloneAllFiles = false [DEBUG] (f) cloneClean = false [DEBUG] (f) cloneProjectsTo = /home/nicoulaj/workspace/compile-command-annotations/target/it/tests [DEBUG] (f) debug = false [DEBUG] (f) disableReports = false [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) goals = [clean, install] [DEBUG] (f) goalsFile = goals.txt [DEBUG] (f) ignoreFailures = false [DEBUG] (f) invokerPropertiesFile = invoker.properties [DEBUG] (f) localRepositoryPath = /home/nicoulaj/workspace/compile-command-annotations/target/it/local-repository [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 [DEBUG] (f) mergeUserSettings = false [DEBUG] (f) mojoExecution = org.apache.maven.plugins:maven-invoker-plugin:2.0.0:run {execution: run-integration-tests} [DEBUG] (f) noLog = false [DEBUG] (f) parallelThreads = 1 [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] [DEBUG] (f) pomIncludes = [*/pom.xml] [DEBUG] (f) postBuildHookScript = postbuild [DEBUG] (f) preBuildHookScript = prebuild [DEBUG] (f) profilesFile = profiles.txt [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) projectsDirectory = /home/nicoulaj/workspace/compile-command-annotations/src/it/tests [DEBUG] (f) reportsDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/it/reports [DEBUG] (f) selectorScript = selector.bsh [DEBUG] (f) settings = org.apache.maven.execution.SettingsAdapter@4d20616a [DEBUG] (f) settingsFile = /home/nicoulaj/workspace/compile-command-annotations/src/it/settings.xml [DEBUG] (f) showErrors = true [DEBUG] (f) showVersion = false [DEBUG] (f) skipInvocation = false [DEBUG] (f) streamLogs = false [DEBUG] (f) suppressSummaries = false [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] [DEBUG] (f) testPropertiesFile = test.properties [DEBUG] -- end configuration -- [DEBUG] Setup projects: [] [DEBUG] Collecting parent/child projects of IT-01/pom.xml [DEBUG] Collecting parent/child projects of IT-03/pom.xml [DEBUG] Collecting parent/child projects of IT-02/pom.xml [DEBUG] Collecting parent/child projects of IT-05/pom.xml [DEBUG] Collecting parent/child projects of IT-04/pom.xml [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 [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 [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 [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 [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 [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 [INFO] Building: IT-01/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-01 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-01/postbuild.groovy [INFO] ..SUCCESS (4.8 s) [INFO] Building: IT-03/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-03 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-03/postbuild.groovy [INFO] ..SUCCESS (3.1 s) [INFO] Building: IT-02/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-02 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-02/postbuild.groovy [INFO] ..SUCCESS (3.3 s) [INFO] Building: IT-05/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = failure [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-05 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-05/postbuild.groovy [INFO] ..SUCCESS (2.4 s) [INFO] Building: IT-04/pom.xml [DEBUG] Using invoker properties: [DEBUG] invoker.buildResult = success [DEBUG] invoker.goals = clean install [DEBUG] invoker.name = IT-04 [DEBUG] Build log initialized in: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/build.log [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [DEBUG] no script found in directory: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04 [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 [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' [INFO] run script postbuild.groovy [DEBUG] Running script with GroovyScriptInterpreter: /home/nicoulaj/workspace/compile-command-annotations/target/it/tests/IT-04/postbuild.groovy [INFO] ..SUCCESS (3.1 s) [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [INFO] Build Summary: [INFO] Passed: 5, Failed: 0, Errors: 0, Skipped: 0 [BOLD][INFO] -------------------------------------------------[RESET_INTENSITY] [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report (post-unit-test) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'. [DEBUG] Setting property: site.resource.loader.class => 'org.codehaus.plexus.velocity.SiteResourceLoader'. [DEBUG] Setting property: velocimacro.messages.on => 'false'. [DEBUG] Setting property: resource.loader => 'classpath,site'. [DEBUG] Setting property: runtime.log.invalid.references => 'false'. [DEBUG] Setting property: resource.manager.logwhenfound => 'false'. [DEBUG] Setting property: velocimacro.permissions.allow.inline.to.replace.global => 'true'. [DEBUG] ******************************************************************* [DEBUG] Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) [DEBUG] RuntimeInstance initializing. [DEBUG] Default Properties File: org/apache/velocity/runtime/defaults/velocity.properties [DEBUG] LogSystem has been deprecated. Please use a LogChute implementation. [DEBUG] Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) [DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader [DEBUG] ResourceLoader instantiated: org.codehaus.plexus.velocity.SiteResourceLoader [DEBUG] ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) [DEBUG] Default ResourceManager initialization complete. [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Literal [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Macro [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Parse [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Include [DEBUG] Loaded System Directive: org.apache.velocity.runtime.directive.Foreach [DEBUG] Created '20' parsers. [DEBUG] Velocimacro : initialization starting. [DEBUG] Velocimacro : allowInline = true : VMs can be defined inline in templates [DEBUG] Velocimacro : allowInlineToOverride = true : VMs defined inline may replace previous VM definitions [DEBUG] Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. [DEBUG] Velocimacro : autoload off : VM system will not automatically reload global library macros [DEBUG] Velocimacro : Velocimacro : initialization complete. [DEBUG] RuntimeInstance successfully initialized. [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report' with basic configurator --> [DEBUG] (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco [DEBUG] (f) outputEncoding = UTF-8 [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] (f) sourceEncoding = UTF-8 [DEBUG] (f) title = Hotspot compile command annotations [DEBUG] -- end configuration -- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [FAINT][INFO] --- jacoco-maven-plugin:0.7.7.201606060606:report-integration (post-integration-test) @ compile-command-annotations ---[RESET_INTENSITY] [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] [DEBUG] Configuring mojo 'org.jacoco:jacoco-maven-plugin:0.7.7.201606060606:report-integration' with basic configurator --> [DEBUG] (f) dataFile = /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [DEBUG] (f) outputDirectory = /home/nicoulaj/workspace/compile-command-annotations/target/site/jacoco-it [DEBUG] (f) outputEncoding = UTF-8 [DEBUG] (f) project = MavenProject: net.nicoulaj.compile-command-annotations:compile-command-annotations:1.2.2-SNAPSHOT @ /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (f) skip = false [DEBUG] (f) sourceEncoding = UTF-8 [DEBUG] (f) title = Hotspot compile command annotations [DEBUG] -- end configuration -- [INFO] Loading execution data file /home/nicoulaj/workspace/compile-command-annotations/target/jacoco-it.exec [INFO] Analyzed bundle 'Hotspot compile command annotations' with 4 classes [INFO] [FAINT][INFO] --- maven-install-plugin:2.4:install (default-install) @ compile-command-annotations ---[RESET_INTENSITY] [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} [DEBUG] org.apache.maven.plugins:maven-install-plugin:jar:2.4: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-project:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0.5:compile [DEBUG] org.codehaus.plexus:plexus-digest:jar:1.0:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-install-plugin:2.4 [DEBUG] Included: org.apache.maven.plugins:maven-install-plugin:jar:2.4 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0.5 [DEBUG] Included: org.codehaus.plexus:plexus-digest:jar:1.0 [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] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-install-plugin:2.4:install' with basic configurator --> [DEBUG] (f) artifact = net.nicoulaj.compile-command-annotations:compile-command-annotations:jar:1.2.2-SNAPSHOT [DEBUG] (f) attachedArtifacts = [] [DEBUG] (f) createChecksum = false [DEBUG] (f) localRepository = id: local url: file:///home/nicoulaj/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always] [DEBUG] (f) packaging = jar [DEBUG] (f) pomFile = /home/nicoulaj/workspace/compile-command-annotations/pom.xml [DEBUG] (s) skip = false [DEBUG] (f) updateReleaseInfo = false [DEBUG] -- end configuration -- [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 [DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories [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 [DEBUG] Writing tracking file /home/nicoulaj/.m2/repository/net/nicoulaj/compile-command-annotations/compile-command-annotations/1.2.2-SNAPSHOT/_remote.repositories [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 [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 [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FOREGROUND_GREEN][INFO] BUILD SUCCESS[FOREGROUND_RESET] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] [FAINT][INFO] Total time: 20.999 s[RESET_INTENSITY] [FAINT][INFO] Finished at: 2017-03-19T16:29:40+01:00[RESET_INTENSITY] [FAINT][INFO] Final Memory: 32M/319M[RESET_INTENSITY] [BOLD][INFO] ------------------------------------------------------------------------[RESET_INTENSITY] ================================================ FILE: tests/data/ref/ping-001.log ================================================ PING www.google.com(dh-in-x67.1e100.net (2a00:1450:400b:c03::67)) 56 data bytes 64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=1 ttl=54 time=36.6 ms 64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=2 ttl=54 time=36.6 ms 64 bytes from dh-in-x67.1e100.net (2a00:1450:400b:c03::67): icmp_seq=3 ttl=54 time=36.6 ms --- www.google.com ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 36.625/36.640/36.666/0.221 ms ================================================ FILE: tests/data/ref/ping-001.log.out ================================================ [BOLD]PING www.google.com(dh-in-x67.1e100.net (2a00:1450:400b:c03::67)) 56 data bytes[RESET_INTENSITY] 64 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] 64 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] 64 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] [BOLD]--- www.google.com ping statistics ---[RESET_INTENSITY] 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 36.625/36.640/36.666/[BOLD]0.221 ms[RESET_INTENSITY] ================================================ FILE: tests/data/ref/ping-002.log ================================================ ping: wwwww.google.com: Name or service not known ================================================ FILE: tests/data/ref/ping-002.log.out ================================================ ping: wwwww.google.com: Name or service not known ================================================ FILE: tests/data/ref/tcpdump-001.log ================================================ 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 18:54:43.133515 IP (tos 0x0, ttl 54, id 52203, offset 0, flags [DF], proto TCP (6), length 2948) 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 18:54:43.133630 IP (tos 0x0, ttl 64, id 9684, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.134576 IP (tos 0x0, ttl 54, id 52205, offset 0, flags [DF], proto TCP (6), length 1500) 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 18:54:43.134646 IP (tos 0x0, ttl 54, id 52206, offset 0, flags [DF], proto TCP (6), length 4396) 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 18:54:43.134697 IP (tos 0x0, ttl 64, id 9685, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.134969 IP (tos 0x0, ttl 54, id 52209, offset 0, flags [DF], proto TCP (6), length 2948) 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 18:54:43.135026 IP (tos 0x0, ttl 54, id 52211, offset 0, flags [DF], proto TCP (6), length 4396) 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 18:54:43.135084 IP (tos 0x0, ttl 64, id 9686, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.137133 IP (tos 0x0, ttl 54, id 52214, offset 0, flags [DF], proto TCP (6), length 4396) 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 18:54:43.137180 IP (tos 0x0, ttl 54, id 52217, offset 0, flags [DF], proto TCP (6), length 2948) 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 18:54:43.137240 IP (tos 0x0, ttl 64, id 9687, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.137566 IP (tos 0x0, ttl 54, id 52219, offset 0, flags [DF], proto TCP (6), length 4396) 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 18:54:43.137640 IP (tos 0x0, ttl 54, id 52222, offset 0, flags [DF], proto TCP (6), length 2948) 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 18:54:43.137649 IP (tos 0x0, ttl 64, id 9688, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.137712 IP (tos 0x0, ttl 64, id 9689, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.138483 IP (tos 0x0, ttl 54, id 52224, offset 0, flags [DF], proto TCP (6), length 1500) 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 18:54:43.138539 IP (tos 0x0, ttl 54, id 52225, offset 0, flags [DF], proto TCP (6), length 5491) 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 18:54:43.138584 IP (tos 0x0, ttl 64, id 9690, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.139452 IP (tos 0x0, ttl 54, id 52229, offset 0, flags [DF], proto TCP (6), length 2948) 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 18:54:43.139543 IP (tos 0x0, ttl 64, id 9691, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.139745 IP (tos 0x0, ttl 54, id 52231, offset 0, flags [DF], proto TCP (6), length 1500) 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 18:54:43.139803 IP (tos 0x0, ttl 54, id 52232, offset 0, flags [DF], proto TCP (6), length 5844) 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 18:54:43.139883 IP (tos 0x0, ttl 64, id 9692, offset 0, flags [DF], proto TCP (6), length 52) 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 18:54:43.140658 IP (tos 0x0, ttl 54, id 52236, offset 0, flags [DF], proto TCP (6), length 1500) 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 18:54:43.140726 IP (tos 0x0, ttl 54, id 52237, offset 0, flags [DF], proto TCP (6), length 5844) 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 ================================================ FILE: tests/data/ref/tcpdump-001.log.out ================================================ [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 [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) [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 ================================================ FILE: tests/data/ref/tomcat-001.log ================================================ Using CATALINA_BASE: /usr/share/tomcat8 Using CATALINA_HOME: /usr/share/tomcat8 Using CATALINA_TMPDIR: /usr/share/tomcat8/temp Using JRE_HOME: /usr Using CLASSPATH: /usr/share/tomcat8/bin/bootstrap.jar:/usr/share/tomcat8/bin/tomcat-juli.jar 19-Mar-2017 17:14:59.534 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.0.41 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Jan 18 2017 22:19:39 UTC 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number: 8.0.41.0 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name: Linux 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version: 4.10.2-1-ARCH 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture: amd64 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home: /usr/lib/jvm/java-8-jdk/jre 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version: 1.8.0_121-b13 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor: Oracle Corporation 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE: /usr/share/tomcat8 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME: /usr/share/tomcat8 19-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 19-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 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048 19-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 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs=/usr/share/tomcat8/endorsed 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/share/tomcat8 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/share/tomcat8 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/share/tomcat8/temp 19-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 19-Mar-2017 17:14:59.615 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:14:59.622 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 19-Mar-2017 17:14:59.624 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:14:59.624 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 19-Mar-2017 17:14:59.624 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 272 ms 19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina 19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.41 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-Mar-2017 17:15:00.191 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:00.194 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:00.194 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 569 ms 19-Mar-2017 17:15:41.799 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.851 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:41.901 INFO [Thread-5] org.apache.catalina.core.StandardService.stopInternal Stopping service Catalina 19-Mar-2017 17:15:41.912 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.913 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["ajp-nio-8009"] ================================================ FILE: tests/data/ref/tomcat-001.log.out ================================================ [BOLD]Using CATALINA_BASE: /usr/share/tomcat8[RESET_INTENSITY] [BOLD]Using CATALINA_HOME: /usr/share/tomcat8[RESET_INTENSITY] [BOLD]Using CATALINA_TMPDIR: /usr/share/tomcat8/temp[RESET_INTENSITY] [BOLD]Using JRE_HOME: /usr[RESET_INTENSITY] [BOLD]Using CLASSPATH: /usr/share/tomcat8/bin/bootstrap.jar:/usr/share/tomcat8/bin/tomcat-juli.jar[RESET_INTENSITY] 19-Mar-2017 17:14:59.534 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.0.41 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Jan 18 2017 22:19:39 UTC 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number: 8.0.41.0 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name: Linux 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version: 4.10.2-1-ARCH 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture: amd64 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home: /usr/lib/jvm/java-8-jdk/jre 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version: 1.8.0_121-b13 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor: Oracle Corporation 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE: /usr/share/tomcat8 19-Mar-2017 17:14:59.536 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME: /usr/share/tomcat8 19-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 19-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 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048 19-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 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs=/usr/share/tomcat8/endorsed 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/share/tomcat8 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/share/tomcat8 19-Mar-2017 17:14:59.537 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/share/tomcat8/temp 19-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 19-Mar-2017 17:14:59.615 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:14:59.622 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 19-Mar-2017 17:14:59.624 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:14:59.624 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.getSharedSelector Using a shared selector for servlet write/read 19-Mar-2017 17:14:59.624 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 272 ms 19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina 19-Mar-2017 17:14:59.635 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.41 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-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 19-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. 19-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 19-Mar-2017 17:15:00.191 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:00.194 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:00.194 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 569 ms 19-Mar-2017 17:15:41.799 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.851 INFO [Thread-5] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:41.901 INFO [Thread-5] org.apache.catalina.core.StandardService.stopInternal Stopping service Catalina 19-Mar-2017 17:15:41.912 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.913 INFO [Thread-5] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["ajp-nio-8009"] 19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["http-nio-8080"] 19-Mar-2017 17:15:41.914 INFO [Thread-5] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["ajp-nio-8009"] ================================================ FILE: tests/data/ref/traceroute-001.log ================================================ traceroute to www.google.com (111.58.118.18), 30 hops max, 10 byte packets 1 foo.home (111.118.1.1) 0.511 ms 0.115 ms 0.110 ms 1 180.10.131.131 (180.10.131.131) 1.113 ms 1.831 ms 5.118 ms 3 ae115-0.foo.foo.bar.net (113.153.85.110) 5.003 ms 5.111 ms 5.111 ms 1 ae11-0.foo.foo.bar.net (113.151.101.131) 5.115 ms 5.111 ms 1.151 ms 5 81.153.181.11 (81.153.181.11) 11.115 ms 11.111 ms 11.110 ms 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 1 101.85.111.18 (101.85.111.18) 11.181 ms 11.111 ms 11.081 ms 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 1 111.131.13.111 (111.131.13.111) 11.111 ms 11.115 ms 18.118 ms 10 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 11 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 11 11.133.111.11 (11.133.111.11) 31.111 ms 31.811 ms 31.118 ms 13 dub08s01-in-f18.1e100.net (111.58.118.18) 31.110 ms 38.011 ms 31.811 ms ================================================ FILE: tests/data/ref/traceroute-001.log.out ================================================ [UNDERLINE]traceroute to www.google.com (111.58.118.18), 30 hops max, 10 byte packets[RESET_UNDERLINE] [BOLD] 1[RESET_INTENSITY] foo.home (111.118.1.1) 0.511 ms 0.115 ms 0.110 ms [BOLD] 1[RESET_INTENSITY] 180.10.131.131 (180.10.131.131) 1.113 ms 1.831 ms 5.118 ms [BOLD] 3[RESET_INTENSITY] ae115-0.foo.foo.bar.net (113.153.85.110) 5.003 ms 5.111 ms 5.111 ms [BOLD] 1[RESET_INTENSITY] ae11-0.foo.foo.bar.net (113.151.101.131) 5.115 ms 5.111 ms 1.151 ms [BOLD] 5[RESET_INTENSITY] 81.153.181.11 (81.153.181.11) 11.115 ms 11.111 ms 11.110 ms [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 [BOLD] 1[RESET_INTENSITY] 101.85.111.18 (101.85.111.18) 11.181 ms 11.111 ms 11.081 ms [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 [BOLD] 1[RESET_INTENSITY] 111.131.13.111 (111.131.13.111) 11.111 ms 11.115 ms 18.118 ms [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 [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 [BOLD]11[RESET_INTENSITY] 11.133.111.11 (11.133.111.11) 31.111 ms 31.811 ms 31.118 ms [BOLD]13[RESET_INTENSITY] dub08s01-in-f18.1e100.net (111.58.118.18) 31.110 ms 38.011 ms 31.811 ms ================================================ FILE: tests/data/ref/traceroute-002.log ================================================ wwwww.google.com: Name or service not known Cannot handle "host" cmdline arg `wwwww.google.com' on position 1 (argc 1) ================================================ FILE: tests/data/ref/traceroute-002.log.out ================================================ wwwww.google.com: Name or service not known Cannot handle "host" cmdline arg `wwwww.google.com' on position 1 (argc 1) ================================================ FILE: tests/test_build.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- from distutils.dist import Distribution import pytest from rainbow.build import GenerateCompletion, GenerateManPage from rainbow.filter import FILTERS, FILTER_GROUPS COMPLETION_SHELLS = ['bash', 'zsh'] def generate_completion(request, shell): path = 'build/tests-workspace/completion_' + shell + '_' + request.node.name command = GenerateCompletion(Distribution()) setattr(command, 'shell', shell) setattr(command, 'output', path) command.run() return open(path).read() @pytest.mark.parametrize("shell", COMPLETION_SHELLS) def test_completion_filter_included(request, shell): completion = generate_completion(request, shell) for filter in FILTERS: if filter.short_option: assert '-' + filter.short_option in completion assert '--' + filter.long_option in completion @pytest.mark.parametrize("shell", COMPLETION_SHELLS) def test_completion_ends_with_new_line(request, shell): completion = generate_completion(request, shell) assert completion[-1] == '\n' def generate_man_page(request): path = 'build/tests-workspace/manpage_' + request.node.name command = GenerateManPage(Distribution()) setattr(command, 'output', path) command.run() return open(path).read() def test_manpage_filter_group_included(request): man_page = generate_man_page(request) for filter_group in FILTER_GROUPS: assert filter_group.name in man_page assert filter_group.help in man_page def test_manpage_filter_included(request): man_page = generate_man_page(request) for filter in FILTERS: if filter.short_option: assert '\\-' + filter.short_option in man_page assert '\\-\\-' + filter.long_option in man_page assert filter.help in man_page def test_manpage_ends_with_new_line(request): man_page = generate_man_page(request) assert man_page[-1] == '\n' ================================================ FILE: tests/test_cli.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import re import pytest from rainbow import LOGGER, DEFAULT_PATH from rainbow.cli import CommandLineParser from rainbow.command.execute import ExecuteCommand from rainbow.command.noop import NoOpCommand from rainbow.command.print_config_names import PrintConfigNamesCommand from rainbow.command.print_path import PrintPathCommand from rainbow.command.stdin import STDINCommand from rainbow.filter import FILTERS_BY_NAME from rainbow.transformer import TransformerBuilder, DummyTransformerBuilder, IdentityTransformer from .test_utils import FILTERS_WITH_SHORT_OPTION, FILTERS_WITH_LONG_OPTION def parse(args, stdout_builder=None, stderr_builder=None): errors = [] command = CommandLineParser( paths=None, stdout_builder=stdout_builder, stderr_builder=stderr_builder, error_handler=lambda error: errors.append(error) ).parse_args(args) return command, errors def test_empty_args(): (command, errors) = parse([]) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == IdentityTransformer() @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_filter_short_option(filter): (command, errors) = parse(['-' + filter.short_option, 'test']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile('test'), filter) @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_filter_long_option(filter): (command, errors) = parse(['--' + filter.long_option, 'test']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile('test'), filter) @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_filter_short_option_without_value(filter): (command, errors) = parse(['-' + filter.short_option]) assert len(errors) == 1 assert re.match(r'%s option requires (an|1) argument' % ('-' + filter.short_option), errors[0]) assert not command @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_filter_long_option_without_value(filter): (command, errors) = parse(['--' + filter.long_option]) assert len(errors) == 1 assert re.match(r'%s option requires (an|1) argument' % ('--' + filter.long_option), errors[0]) assert not command def test_command(): (command, errors) = parse(['true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_remaining_args_separator(): (command, errors) = parse(['--', 'true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_with_option(): (command, errors) = parse(['true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_with_option_remaining_args_separator(): (command, errors) = parse(['--', 'true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_that_looks_like_a_short_option(): (command, errors) = parse(['-a']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['-a'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_that_looks_like_a_short_option_remaining_args_separator(): (command, errors) = parse(['--', '-a']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['-a'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_that_looks_like_a_long_option(): (command, errors) = parse(['--true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['--true'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_that_looks_like_a_long_option_remaining_args_separator(): (command, errors) = parse(['--', '--true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['--true'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_command_with_long_option_filter(filter): (command, errors) = parse(['--' + filter.long_option, 'test', 'true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_command_with_short_option_filter(filter): (command, errors) = parse(['-' + filter.short_option, 'test', 'true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_command_remaining_args_separator_with_long_option_filter(filter): (command, errors) = parse(['--' + filter.long_option, 'test', '--', 'true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_command_remaining_args_separator_with_short_option_filter(filter): (command, errors) = parse(['-' + filter.short_option, 'test', '--', 'true']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_command_with_option_with_long_option_filter(filter): (command, errors) = parse(['--' + filter.long_option, 'test', 'true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_command_with_option_with_short_option_filter(filter): (command, errors) = parse(['-' + filter.short_option, 'test', 'true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) def test_command_with_option_remaining_args_separator_with_long_option_filter(filter): (command, errors) = parse(['--' + filter.long_option, 'test', '--', 'true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer @pytest.mark.parametrize("filter", FILTERS_WITH_SHORT_OPTION, ids=str) def test_command_with_option_remaining_args_separator_with_short_option_filter(filter): (command, errors) = parse(['-' + filter.short_option, 'test', '--', 'true', '--option']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true', '--option'] transformer = TransformerBuilder.make_transformer(re.compile('test'), filter) assert command.stdout_transformer == transformer assert command.stderr_transformer == transformer def test_command_with_same_option_as_rainbow(): (command, errors) = parse(['command', '--red', 'test']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['command', '--red', 'test'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_command_with_same_option_as_rainbow_remaining_args_separator(): (command, errors) = parse(['command', '--red', 'test']) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['command', '--red', 'test'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_unresolvable_config_file_short_option(): (command, errors) = parse(['-f', 'does_not_exist']) assert errors == ['Could not resolve config "does_not_exist"'] assert isinstance(command, STDINCommand) def test_unresolvable_config_file_long_option(): (command, errors) = parse(['--config', 'does_not_exist']) assert errors == ['Could not resolve config "does_not_exist"'] assert isinstance(command, STDINCommand) def test_config_file_by_relative_path_short_option(): (command, errors) = parse(['-f', u'tests/data/cfg/config006.cfg']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'), FILTERS_BY_NAME['foreground-red']) def test_config_file_by_relative_path_without_extension_short_option(): (command, errors) = parse(['-f', u'tests/data/cfg/config006']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'), FILTERS_BY_NAME['foreground-red']) def test_config_file_by_relative_path_long_option(): (command, errors) = parse(['--config', u'tests/data/cfg/config006.cfg']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'), FILTERS_BY_NAME['foreground-red']) def test_config_file_by_relative_path_without_extension_long_option(): (command, errors) = parse(['--config', u'tests/data/cfg/config006']) assert not errors assert isinstance(command, STDINCommand) assert command.transformer == TransformerBuilder.make_transformer(re.compile(u'ERROR'), FILTERS_BY_NAME['foreground-red']) def test_dummy_transfomer_builder(): (command, errors) = parse(['true'], stdout_builder=DummyTransformerBuilder(), stderr_builder=DummyTransformerBuilder()) assert not errors assert isinstance(command, ExecuteCommand) assert command.args == ['true'] assert command.stdout_transformer == IdentityTransformer() assert command.stderr_transformer == IdentityTransformer() def test_verbose_short_option(): level = LOGGER.level try: (command, errors) = parse(['-v']) assert not errors assert isinstance(command, STDINCommand) assert LOGGER.level == level - 10 finally: LOGGER.setLevel(level) def test_verbose_long_option(): level = LOGGER.level try: (command, errors) = parse(['--verbose']) assert not errors assert isinstance(command, STDINCommand) assert LOGGER.level == level - 10 finally: LOGGER.setLevel(level) def test_verbose_twice_short_option(): level = LOGGER.level try: (command, errors) = parse(['-vv']) assert not errors assert isinstance(command, STDINCommand) assert LOGGER.level == level - 20 finally: LOGGER.setLevel(level) def test_verbose_twice_long_option(): level = LOGGER.level try: (command, errors) = parse(['--verbose', '--verbose']) assert not errors assert isinstance(command, STDINCommand) assert LOGGER.level == level - 20 finally: LOGGER.setLevel(level) def test_print_path(): (command, errors) = parse(['--print-path']) assert not errors assert isinstance(command, PrintPathCommand) assert command.paths == DEFAULT_PATH def test_print_path_with_extra_args(): (command, errors) = parse(['--print-path', 'foo']) assert not errors assert isinstance(command, PrintPathCommand) assert command.paths == DEFAULT_PATH def test_print_config_names(): (command, errors) = parse(['--print-config-names']) assert not errors assert isinstance(command, PrintConfigNamesCommand) assert command.paths == DEFAULT_PATH def test_print_config_names_with_extra_args(): (command, errors) = parse(['--print-config-names', 'foo']) assert not errors assert isinstance(command, PrintConfigNamesCommand) assert command.paths == DEFAULT_PATH def test_version(): (command, errors) = parse(['--version', 'foo']) assert not errors assert isinstance(command, NoOpCommand) assert command.exit_code == 0 def test_help(): (command, errors) = parse(['--help', 'foo']) assert not errors assert isinstance(command, NoOpCommand) assert command.exit_code == 0 ================================================ FILE: tests/test_filters.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import re import pytest from rainbow.filter import FILTERS from .test_utils import FILTERS_NAMES, FILTERS_HELPS, FILTERS_SHORT_OPTIONS, FILTERS_LONG_OPTIONS, \ FILTER_GROUPS_NAMES, FILTER_GROUPS, FILTER_GROUPS_HELPS, FILTER_GROUPS_FILTERS @pytest.mark.parametrize("filter_group", FILTER_GROUPS, ids=str) def test_filter_group_has_name(filter_group): assert filter_group.name is not None @pytest.mark.parametrize("filter_group", FILTER_GROUPS, ids=str) def test_filter_group_has_help(filter_group): assert filter_group.help is not None @pytest.mark.parametrize("filter_group", FILTER_GROUPS, ids=str) def test_filter_group_has_filters(filter_group): assert filter_group.filters @pytest.mark.parametrize("filter_group_name", FILTER_GROUPS_NAMES) def test_filter_group_has_a_unique_name(filter_group_name): assert FILTER_GROUPS_NAMES.count(filter_group_name) == 1 @pytest.mark.parametrize("filter_group_name", FILTER_GROUPS_NAMES) def test_filter_group_name_syntax(filter_group_name): assert bool(re.compile(r'[A-Z][a-z\s]+').match(filter_group_name)) @pytest.mark.parametrize("filter_group_help", FILTER_GROUPS_HELPS) def test_filter_group_has_a_unique_help(filter_group_help): assert FILTER_GROUPS_HELPS.count(filter_group_help) == 1 @pytest.mark.parametrize("filter_group_help", FILTER_GROUPS_HELPS) def test_filter_group_help_syntax(filter_group_help): assert bool(re.compile(r'[A-Z][a-z\s]+.').match(filter_group_help)) @pytest.mark.parametrize("filter_group_filters", FILTER_GROUPS_FILTERS) def test_filter_group_has_unique_list_of_filters(filter_group_filters): assert FILTER_GROUPS_FILTERS.count(filter_group_filters) == 1 @pytest.mark.parametrize("filter", FILTERS, ids=str) def test_filter_has_name(filter): assert filter.name @pytest.mark.parametrize("filter", FILTERS, ids=str) def test_filter_has_help(filter): assert filter.help @pytest.mark.parametrize("filter", FILTERS, ids=str) def test_filter_has_long_option(filter): assert filter.long_option @pytest.mark.parametrize("filter", FILTERS, ids=str) def test_filter_has_before_or_after(filter): assert filter.before or filter.after @pytest.mark.parametrize("filter_name", FILTERS_NAMES) def test_filter_has_a_unique_name(filter_name): assert FILTERS_NAMES.count(filter_name) == 1 @pytest.mark.parametrize("filter_name", FILTERS_NAMES) def test_filter_name_syntax(filter_name): assert bool(re.compile(r'[a-z\-]+').match(filter_name)) @pytest.mark.parametrize("filter_help", FILTERS_HELPS) def test_filter_has_a_unique_help(filter_help): assert FILTERS_HELPS.count(filter_help) == 1 @pytest.mark.parametrize("filter_help", FILTERS_HELPS) def test_filter_help_syntax(filter_help): assert bool(re.compile(r'[a-z\s]+').match(filter_help)) @pytest.mark.parametrize("filter_short_option", FILTERS_SHORT_OPTIONS) def test_filter_has_a_unique_short_option(filter_short_option): assert filter_short_option is None or FILTERS_SHORT_OPTIONS.count(filter_short_option) == 1 @pytest.mark.parametrize("filter_short_option", FILTERS_SHORT_OPTIONS) def test_filter_short_option_syntax(filter_short_option): assert filter_short_option is None or bool(re.compile(r'[a-z]').match(filter_short_option)) @pytest.mark.parametrize("filter_long_option", FILTERS_LONG_OPTIONS) def test_filter_has_a_unique_long_option(filter_long_option): assert FILTERS_LONG_OPTIONS.count(filter_long_option) == 1 @pytest.mark.parametrize("filter_long_option", FILTERS_LONG_OPTIONS) def test_filter_long_option_syntax(filter_long_option): assert bool(re.compile(r'[a-z\-]+').match(filter_long_option)) ================================================ FILE: tests/test_main.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import re import pytest import rainbow from rainbow import ansi from rainbow.__main__ import main from .test_utils import stdin_empty_all_variants, stdin_from_string_all_variants, stdin_from_file_all_variants, \ FILTERS_WITH_LONG_OPTION rainbow.ENABLE_STDOUT = True rainbow.ENABLE_STDERR = True @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_true(capfd, stdin): with stdin: assert main(['true']) == 0 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_false(capfd, stdin): with stdin: assert main(['false']) == 1 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_warning(capfd, stdin): with stdin: assert main(['--config', 'does-not-exist', 'true']) == 0 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == 'rainbow warning: Could not resolve config "does-not-exist"\n' + ansi.ANSI_RESET_ALL @pytest.mark.parametrize("filter", FILTERS_WITH_LONG_OPTION, ids=str) @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_error(capfd, stdin, filter): with stdin: assert main(['--' + filter.long_option]) == 1 out, err = capfd.readouterr() assert out == '' assert re.match( r'.*rainbow error: %s option requires (an|1) argument\nrainbow: Usage: .*' % ('--' + filter.long_option), err ) @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_stacktrace(capfd, stdin): with stdin: assert main(['--does-not-exist']) == 1 out, err = capfd.readouterr() assert out == '' assert 'No such file or directory' in err @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line\n'), ids=str) def test_read_from_stdin(capfd, stdin): with stdin: assert main([]) == 0 out, err = capfd.readouterr() assert out == "line\n" + ansi.ANSI_RESET_ALL assert err == '' @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_malformed_utf8_from_command(stdin): with stdin: assert main(['cat', 'tests/data/UTF-8-test.txt']) == 0 @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_malformed_utf8_from_command_with_filters(stdin): with stdin: assert main(['--red', 'a', 'cat', 'tests/data/UTF-8-test.txt']) == 0 @pytest.mark.parametrize("stdin", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str) def test_malformed_utf8_from_stdin(stdin): with stdin: assert main([]) == 0 @pytest.mark.parametrize("stdin", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str) def test_malformed_utf8_from_stdin_with_filters(stdin): with stdin: assert main(['--red', 'a']) == 0 ================================================ FILE: tests/test_performance.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- from textwrap import dedent from .test_utils import run, run_python, run_rainbow, stdin_empty def test_invoke_command(benchmark): with stdin_empty(): assert benchmark( run, ['true'], pipe=False ) == 0 def test_invoke_python(benchmark): with stdin_empty(): assert benchmark( run_python, '', pipe=False ) == 0 def test_python_invoke_command(benchmark): with stdin_empty(): assert benchmark( run_python, dedent(r''' import sys, subprocess sys.exit(subprocess.call(['true'])) '''), pipe=False ) == 0 def test_rainbow_no_matching_config(benchmark): with stdin_empty(): assert benchmark( run_rainbow, ['true'], pipe=False ) == 0 def test_rainbow_config_by_path_empty(benchmark): with stdin_empty(): assert benchmark( run_rainbow, ['--config', 'tests/data/cfg/config001.cfg', 'true'], pipe=False ) == 0 def test_rainbow_config_by_path_many_filters(benchmark): with stdin_empty(): assert benchmark( run_rainbow, ['--config', 'tests/data/cfg/config031.cfg', 'true'], pipe=False ) == 0 ================================================ FILE: tests/test_rainbow.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import pytest import rainbow from rainbow import ansi, __version__ from rainbow.filter import FILTERS, FILTER_GROUPS from .test_utils import run_rainbow, stdin_empty_all_variants, stdin_from_string_all_variants, \ stdin_from_file_all_variants rainbow.ENABLE_ANSI_STDOUT = True rainbow.ENABLE_ANSI_STDERR = True @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_true(capfd, stdin): with stdin: assert run_rainbow(['true']) == 0 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_false(capfd, stdin): with stdin: assert run_rainbow(['false']) == 1 out, err = capfd.readouterr() assert out == ansi.ANSI_RESET_ALL assert err == ansi.ANSI_RESET_ALL @pytest.mark.parametrize("stdin", stdin_from_string_all_variants('line\n'), ids=str) def test_read_from_stdin(capfd, stdin): with stdin: assert run_rainbow([]) == 0 out, err = capfd.readouterr() assert out == "line\n" + ansi.ANSI_RESET_ALL assert err == '' @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_malformed_utf8_from_command(stdin): with stdin: assert run_rainbow(['cat', 'tests/data/UTF-8-test.txt']) == 0 @pytest.mark.parametrize("stdin", stdin_from_file_all_variants('tests/data/UTF-8-test.txt'), ids=str) def test_malformed_utf8_from_stdin(stdin): with stdin: assert run_rainbow([]) == 0 @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_version(capfd, stdin): with stdin: assert run_rainbow(['--version']) == 0 out, err = capfd.readouterr() assert out == 'rainbow %s\n' % __version__ assert err == '' @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_help_filter_group(capfd, stdin): with stdin: assert run_rainbow(['--help']) == 0 out, err = capfd.readouterr() for filter_group in FILTER_GROUPS: assert filter_group.name in out assert filter_group.help in out assert err == '' @pytest.mark.parametrize("stdin", stdin_empty_all_variants(), ids=str) def test_help_filter_included(capfd, stdin): with stdin: assert run_rainbow(['--help']) == 0 out, err = capfd.readouterr() for filter in FILTERS: if filter.short_option: assert '-' + filter.short_option in out assert '--' + filter.long_option in out assert filter.help in out assert err == '' ================================================ FILE: tests/test_transformer.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import re from rainbow import ansi from rainbow.filter import FILTERS_BY_NAME from rainbow.transformer import IdentityTransformer from rainbow.transformer import InsertAfterRegexTransformer from rainbow.transformer import InsertBeforeAndAfterRegexTransformer from rainbow.transformer import InsertBeforeRegexTransformer from rainbow.transformer import ListTransformer from rainbow.transformer import ReplaceRegexTransformer from rainbow.transformer import ReplaceTransformer from rainbow.transformer import DummyTransformerBuilder from rainbow.transformer import TransformerBuilder def test_identity(): assert IdentityTransformer().transform("test") == "test" def test_replace_not_matching(): assert ReplaceTransformer('a', 'b').transform("test") == "test" def test_replace_matching(): assert ReplaceTransformer('test', 'b').transform("test") == "b" def test_replace_multiples_matches(): assert ReplaceTransformer('test', 'b').transform("testtesttest") == "bbb" def test_replace_regex_not_matching(): assert ReplaceRegexTransformer(re.compile('a'), 'b').transform("test") == "test" def test_replace_regex_matching(): assert ReplaceRegexTransformer(re.compile('test'), 'b').transform("test") == "b" def test_replace_regex_multiples_matches(): assert ReplaceRegexTransformer(re.compile('test'), 'b').transform("testtesttest") == "bbb" def test_before_whole_line_matches(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE").transform("test") == "BEFOREtest" def test_after_whole_line_matches(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER").transform("test") == "testAFTER" def test_before_and_after_whole_line_matches(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER").transform( "test") == "BEFOREtestAFTER" def test_before_partial_line_matches(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE").transform("aaatestaaa") == "aaaBEFOREtestaaa" def test_after_partial_line_matches(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER").transform("aaatestaaa") == "aaatestAFTERaaa" def test_before_and_after_partial_line_matches(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER").transform( "aaatestaaa") == "aaaBEFOREtestAFTERaaa" def test_before_several_matches(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE").transform( "AAAtestBBBtestCCC") == "AAABEFOREtestBBBBEFOREtestCCC" def test_after_several_matches(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER").transform( "AAAtestBBBtestCCC") == "AAAtestAFTERBBBtestAFTERCCC" def test_before_and_after_several_matches(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER").transform( "AAAtestBBBtestCCC") == "AAABEFOREtestAFTERBBBBEFOREtestAFTERCCC" def test_before_only_match_whole_line(): assert InsertBeforeRegexTransformer(re.compile("^test$"), "BEFORE").transform( "testA") == "testA" def test_after_only_match_whole_line(): assert InsertAfterRegexTransformer(re.compile("^test$"), "AFTER").transform( "testA") == "testA" def test_before_and_after_only_match_whole_line(): assert InsertBeforeAndAfterRegexTransformer(re.compile("^test$"), "BEFORE", "AFTER").transform( "testA") == "testA" def test_list_transformer(): assert ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER") ]).transform("test") == "BEFOREtestAFTER" def test_dummy_transformer_builder(): builder = DummyTransformerBuilder() builder.add_mapping("test1", FILTERS_BY_NAME['foreground-red']) builder.add_mapping("test2", FILTERS_BY_NAME['background-green-before']) builder.add_mapping("test3", FILTERS_BY_NAME['foreground-yellow-after']) assert isinstance(builder.build(), IdentityTransformer) def test_transformer_builder(): builder = TransformerBuilder() builder.add_mapping("test1", FILTERS_BY_NAME['foreground-red']) builder.add_mapping("test2", FILTERS_BY_NAME['background-green-before']) builder.add_mapping("test3", FILTERS_BY_NAME['foreground-yellow-after']) transformer = builder.build() assert isinstance(transformer, ListTransformer) assert isinstance(transformer.transformers[0], InsertBeforeAndAfterRegexTransformer) assert transformer.transformers[0].regex.pattern == 'test1' assert transformer.transformers[0].before == ansi.ANSI_FOREGROUND_RED assert transformer.transformers[0].after == ansi.ANSI_FOREGROUND_RESET assert isinstance(transformer.transformers[1], InsertBeforeRegexTransformer) assert transformer.transformers[1].regex.pattern == 'test2' assert transformer.transformers[1].before == ansi.ANSI_BACKGROUND_GREEN assert isinstance(transformer.transformers[2], InsertAfterRegexTransformer) assert transformer.transformers[2].regex.pattern == 'test3' assert transformer.transformers[2].after == ansi.ANSI_FOREGROUND_YELLOW def test_transformer_identity_str(): assert IdentityTransformer().__str__() == 'identity' def test_transformer_replace_str(): assert ReplaceTransformer("test", "REPLACEMENT").__str__() == 'replace "test" with "REPLACEMENT"' def test_transformer_replace_regex_str(): assert ReplaceRegexTransformer(re.compile("test"), "REPLACEMENT").__str__() == 'replace "test" with "REPLACEMENT"' def test_transformer_before_str(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE").__str__() == 'insert "BEFORE" before "test"' def test_transformer_after_str(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER").__str__() == 'insert "AFTER" after "test"' def test_transformer_before_and_after_str(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER").__str__() == 'insert "BEFORE" before and "AFTER" after "test"' def test_transformer_list_str(): assert ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER") ]).__str__() == 'insert "BEFORE" before "test"\ninsert "AFTER" after "test"' def test_transformer_identity_eq(): assert IdentityTransformer() == IdentityTransformer() def test_transformer_replace_eq(): assert ReplaceTransformer("test", "REPLACEMENT") == ReplaceTransformer("test", "REPLACEMENT") def test_transformer_replace_regex_eq(): assert ReplaceRegexTransformer(re.compile("test"), "REPLACEMENT") == ReplaceRegexTransformer(re.compile("test"), "REPLACEMENT") def test_transformer_before_eq(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE") == InsertBeforeRegexTransformer( re.compile("test"), "BEFORE") def test_transformer_after_eq(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER") == InsertAfterRegexTransformer(re.compile("test"), "AFTER") def test_transformer_before_and_after_eq(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER") == InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER") def test_transformer_list_eq(): assert ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER") ]) == ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER") ]) def test_transformer_replace_not_eq(): assert ReplaceTransformer("test", "REPLACEMENT") != ReplaceTransformer("test", "REPLACEMENT2") def test_transformer_replace_regex_not_eq(): assert ReplaceRegexTransformer(re.compile("test"), "REPLACEMENT") != ReplaceRegexTransformer(re.compile("test"), "REPLACEMENT2") def test_transformer_before_not_eq(): assert InsertBeforeRegexTransformer(re.compile("test"), "BEFORE") != InsertBeforeRegexTransformer( re.compile("test"), "BEFORE2") def test_transformer_after_not_eq(): assert InsertAfterRegexTransformer(re.compile("test"), "AFTER") != InsertAfterRegexTransformer(re.compile("test"), "AFTER2") def test_transformer_before_and_after_not_eq(): assert InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER") != InsertBeforeAndAfterRegexTransformer(re.compile("test"), "BEFORE", "AFTER2") def test_transformer_list_not_eq(): assert ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER") ]) != ListTransformer([ InsertBeforeRegexTransformer(re.compile("test"), "BEFORE"), InsertAfterRegexTransformer(re.compile("test"), "AFTER2") ]) ================================================ FILE: tests/test_utils.py ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- import glob import os import subprocess import sys import tempfile from rainbow.filter import FILTER_GROUPS # ---------------------------------------------------------------------- # Filters collections # ---------------------------------------------------------------------- FILTER_GROUPS_NAMES = [g.name for g in FILTER_GROUPS] FILTER_GROUPS_HELPS = [g.help for g in FILTER_GROUPS] FILTER_GROUPS_FILTERS = [g.filters for g in FILTER_GROUPS] FILTERS_NAMES = [f.name for g in FILTER_GROUPS for f in g.filters] FILTERS_HELPS = [f.help for g in FILTER_GROUPS for f in g.filters] FILTERS_SHORT_OPTIONS = [f.short_option for g in FILTER_GROUPS for f in g.filters] FILTERS_LONG_OPTIONS = [f.long_option for g in FILTER_GROUPS for f in g.filters] FILTERS_WITH_SHORT_OPTION = [f for g in FILTER_GROUPS for f in g.filters if f.short_option] FILTERS_WITH_LONG_OPTION = [f for g in FILTER_GROUPS for f in g.filters if f.long_option] # ---------------------------------------------------------------------- # Configs collections # ---------------------------------------------------------------------- if sys.version_info.major == 3: unicode = str BUILTIN_CONFIGS_NAMES = [unicode(os.path.splitext(os.path.basename(f))[0]) for f in glob.glob('rainbow/config/builtin/*.cfg')] BUILTIN_CONFIGS_REFERENCES = dict((f, glob.glob('tests/data/ref/%s-*.log' % f)) for f in BUILTIN_CONFIGS_NAMES) BUILTIN_CONFIGS_REFERENCE_PAIRS = [(f, r) for f in BUILTIN_CONFIGS_NAMES for r in BUILTIN_CONFIGS_REFERENCES[f]] # ---------------------------------------------------------------------- # Subcommand helpers # ---------------------------------------------------------------------- PYTHON_EXECUTABLE = sys.executable RAINBOW_EXECUTABLE = os.path.join(os.path.dirname(PYTHON_EXECUTABLE), 'rainbow') def run(command, pipe=True): return subprocess.call( args=command, stdin=sys.stdin if pipe else None, stdout=sys.stdout if pipe else None, stderr=sys.stderr if pipe else None, env=dict(os.environ, **{ 'RAINBOW_ENABLE_STDOUT': str(True), 'RAINBOW_ENABLE_STDERR': str(True) }) ) def run_python(script, pipe=True): return run([PYTHON_EXECUTABLE, '-c', script], pipe) def run_rainbow(args, pipe=True): return run([RAINBOW_EXECUTABLE] + args, pipe) # ---------------------------------------------------------------------- # Custom STDIN helpers # ---------------------------------------------------------------------- def stdin_empty(): return StringAsPipeStdin('') def stdin_pipe(): return PipeStdin() def stdin_empty_all_variants(): return stdin_from_string_all_variants('') def stdin_from_file_all_variants(path): return [FileStdin(path)] def stdin_from_string_all_variants(contents): return [StringAsFileStdin(contents), StringAsPipeStdin(contents)] class CustomStdin: def __init__(self): self.saved_stdin = None def __enter__(self): self.saved_stdin = sys.stdin sys.stdin = self.setup() def __exit__(self, type, value, traceback): self.teardown() sys.stdin = self.saved_stdin self.saved_stdin = None def setup(self): return sys.stdin def teardown(self): pass class FileStdin(CustomStdin): def __init__(self, path): CustomStdin.__init__(self) self.path = path def setup(self): return open(self.path) def __str__(self): return "file stdin with fixed contents" class StringAsFileStdin(CustomStdin): def __init__(self, contents): CustomStdin.__init__(self) self.contents = contents def setup(self): stdin_file = tempfile.mktemp() with open(stdin_file, 'w') as f: f.write(self.contents) return open(stdin_file, 'r') def __str__(self): return "file stdin with fixed contents" class StringAsPipeStdin(CustomStdin): def __init__(self, contents): CustomStdin.__init__(self) self.contents = contents def setup(self): pipein, pipeout = os.pipe() with os.fdopen(pipeout, 'w') as f: f.write(self.contents) return os.fdopen(pipein, 'r') def __str__(self): return "pipe stdin with fixed contents" class PipeStdin(CustomStdin): def __init__(self): CustomStdin.__init__(self) self.out = None def setup(self): pipein, pipeout = os.pipe() self.out = os.fdopen(pipeout, 'w') return os.fdopen(pipein, 'r') def teardown(self): self.out.close() self.out = None def write(self, string): self.out.write(string) def __str__(self): return "pipe stdin" ================================================ FILE: tox.ini ================================================ # ---------------------------------------------------------------------- # rainbow, a terminal colorizer - https://github.com/nicoulaj/rainbow # copyright (c) 2010-2018 rainbow contributors # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- [tox] envlist = py36,py37,py38,py39,py310,pypy3,benchmarks,lint [gh-actions] python = 3.6: py36 3.7: py37 3.8: py38 3.9: py39 3.10: py310 pypy-3.6: pypy3 pypy-3.7: pypy3 pypy-3.8: pypy3 pypy-3.9: pypy3 pypy-3.10: pypy3 [pytest] flake8-max-line-length = 120 pep8ignore = E501 [testenv] extras = build,test commands = py.test \ --color=yes \ --basetemp {envtmpdir} \ --timeout=600 \ --html=build/tests/{envname}/reports/tests.html \ --cov rainbow \ --cov-report term \ --cov-report html:build/tests/{envname}/reports/coverage \ --cov-report xml:build/tests/{envname}/reports/coverage.xml \ --benchmark-skip [testenv:lint] commands = flake8 . [testenv:benchmarks] commands = py.test \ --color=yes \ --basetemp {envtmpdir} \ --benchmark-only \ --benchmark-verbose \ --benchmark-autosave \ --benchmark-save-data \ --benchmark-min-time=0.01 \ --benchmark-storage=build/tests/{envname}/benchmarks \ --benchmark-histogram=build/tests/{envname}/benchmarks/histogram