├── .gitignore ├── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # Maven 2 | target/ 3 | 4 | # IntelliJ IDEA 5 | *.iws 6 | *.iml 7 | *.ipr 8 | .idea/ 9 | 10 | # Eclipse 11 | .classpath 12 | .project 13 | .settings 14 | bin 15 | 16 | # ---- Mac OS X 17 | .DS_Store? 18 | Icon? 19 | # Thumbnails 20 | ._* 21 | # Files that might appear on external disk 22 | .Spotlight-V100 23 | .Trashes 24 | 25 | # ---- Windows 26 | # Windows image file caches 27 | Thumbs.db 28 | # Folder config file 29 | Desktop.ini 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SonarQube Maven Plugin 2 | 3 | The project has moved to https://github.com/SonarSource/sonar-maven. This is only the relocation pom. 4 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | org.codehaus.mojo 5 | mojo-parent 6 | 40 7 | 8 | 9 | org.codehaus.mojo 10 | sonar-maven-plugin 11 | pom 12 | 3.10-SNAPSHOT 13 | 14 | 15 | 16 | org.sonarsource.scanner.maven 17 | SonarQube plugin was moved to SonarSource organisation 18 | 19 | 20 | 21 | 22 | scm:git:https://github.com/mojohaus/sonar-maven-plugin.git 23 | scm:git:ssh://git@github.com/mojohaus/sonar-maven-plugin.git 24 | https://github.com/mojohaus/sonar-maven-plugin 25 | HEAD 26 | 27 | 28 | 29 | --------------------------------------------------------------------------------