Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sonar-gradle
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vikram singh
sonar-gradle
Commits
3ddf6ac9
Commit
3ddf6ac9
authored
May 19, 2020
by
vikram singh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial
parents
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
94 additions
and
0 deletions
+94
-0
.gitignore
java-sonarqube-gradle/.idea/.gitignore
+2
-0
checkstyle-idea.xml
java-sonarqube-gradle/.idea/checkstyle-idea.xml
+17
-0
gradle.xml
java-sonarqube-gradle/.idea/gradle.xml
+19
-0
jarRepositories.xml
java-sonarqube-gradle/.idea/jarRepositories.xml
+21
-0
gradle_wrapper.xml
java-sonarqube-gradle/.idea/libraries/gradle_wrapper.xml
+10
-0
misc.xml
java-sonarqube-gradle/.idea/misc.xml
+8
-0
modules.xml
java-sonarqube-gradle/.idea/modules.xml
+10
-0
vcs.xml
java-sonarqube-gradle/.idea/vcs.xml
+7
-0
No files found.
java-sonarqube-gradle/.idea/.gitignore
0 → 100644
View file @
3ddf6ac9
# Default ignored files
/workspace.xml
java-sonarqube-gradle/.idea/checkstyle-idea.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"CheckStyle-IDEA"
>
<option
name=
"configuration"
>
<map>
<entry
key=
"checkstyle-version"
value=
"8.29"
/>
<entry
key=
"copy-libs"
value=
"false"
/>
<entry
key=
"location-0"
value=
"BUNDLED:(bundled):Sun Checks"
/>
<entry
key=
"location-1"
value=
"BUNDLED:(bundled):Google Checks"
/>
<entry
key=
"scan-before-checkin"
value=
"false"
/>
<entry
key=
"scanscope"
value=
"JavaOnly"
/>
<entry
key=
"suppress-errors"
value=
"false"
/>
</map>
</option>
</component>
</project>
\ No newline at end of file
java-sonarqube-gradle/.idea/gradle.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"GradleSettings"
>
<option
name=
"linkedExternalProjectsSettings"
>
<GradleProjectSettings>
<option
name=
"distributionType"
value=
"DEFAULT_WRAPPED"
/>
<option
name=
"externalProjectPath"
value=
"$PROJECT_DIR$"
/>
<option
name=
"gradleHome"
value=
"/usr/local/Cellar/gradle/6.2.2/libexec"
/>
<option
name=
"modules"
>
<set>
<option
value=
"$PROJECT_DIR$"
/>
</set>
</option>
<option
name=
"useQualifiedModuleNames"
value=
"true"
/>
</GradleProjectSettings>
</option>
</component>
</project>
\ No newline at end of file
java-sonarqube-gradle/.idea/jarRepositories.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"RemoteRepositoriesConfiguration"
>
<remote-repository>
<option
name=
"id"
value=
"central"
/>
<option
name=
"name"
value=
"Maven Central repository"
/>
<option
name=
"url"
value=
"https://repo1.maven.org/maven2"
/>
</remote-repository>
<remote-repository>
<option
name=
"id"
value=
"jboss.community"
/>
<option
name=
"name"
value=
"JBoss Community repository"
/>
<option
name=
"url"
value=
"https://repository.jboss.org/nexus/content/repositories/public/"
/>
</remote-repository>
<remote-repository>
<option
name=
"id"
value=
"BintrayJCenter"
/>
<option
name=
"name"
value=
"BintrayJCenter"
/>
<option
name=
"url"
value=
"https://jcenter.bintray.com/"
/>
</remote-repository>
</component>
</project>
\ No newline at end of file
java-sonarqube-gradle/.idea/libraries/gradle_wrapper.xml
0 → 100644
View file @
3ddf6ac9
<component
name=
"libraryTable"
>
<library
name=
"gradle-wrapper"
>
<CLASSES>
<root
url=
"jar://$PROJECT_DIR$/gradle/wrapper/gradle-wrapper.jar!/"
/>
</CLASSES>
<JAVADOC
/>
<SOURCES
/>
</library>
</component>
\ No newline at end of file
java-sonarqube-gradle/.idea/misc.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ExternalStorageConfigurationManager"
enabled=
"true"
/>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
</component>
</project>
\ No newline at end of file
java-sonarqube-gradle/.idea/modules.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ProjectModuleManager"
>
<modules>
<module
fileurl=
"file://$PROJECT_DIR$/src/main/main.iml"
filepath=
"$PROJECT_DIR$/src/main/main.iml"
/>
<module
fileurl=
"file://$PROJECT_DIR$/src/test/test.iml"
filepath=
"$PROJECT_DIR$/src/test/test.iml"
/>
</modules>
</component>
</project>
\ No newline at end of file
java-sonarqube-gradle/.idea/vcs.xml
0 → 100644
View file @
3ddf6ac9
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"$PROJECT_DIR$/.."
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment