Skip to content

Commit 51ae3f8

Browse files
Initial commit.
1 parent 943c1f3 commit 51ae3f8

File tree

4 files changed

+118
-0
lines changed

4 files changed

+118
-0
lines changed

.dockerignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.git
2+
3+
**/.sonarlint
4+
5+
# ---- Build related
6+
.gradle/
7+
build/
8+
out/
9+
target/
10+
**/*.class
11+
12+
# ---- IntellijIDEA
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# ---- Eclipse
19+
.classpath
20+
.project
21+
.settings
22+
23+
# ---- Mac OS X
24+
.DS_Store
25+
Icon?
26+
# Thumbnails
27+
._*
28+
29+
# Files that might appear on external disk
30+
.Spotlight-V100
31+
.Trashes
32+
33+
# ---- Windows
34+
# Windows image file caches
35+
Thumbs.db
36+
# Folder config file
37+
Desktop.ini

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
**/.sonarlint
2+
3+
# ---- Build related
4+
.gradle/
5+
build/
6+
out/
7+
target/
8+
**/*.class
9+
10+
# ---- IntellijIDEA
11+
*.iml
12+
*.ipr
13+
*.iws
14+
.idea/
15+
16+
# ---- Eclipse
17+
.classpath
18+
.project
19+
.settings
20+
21+
# ---- Mac OS X
22+
.DS_Store
23+
Icon?
24+
# Thumbnails
25+
._*
26+
27+
# Files that might appear on external disk
28+
.Spotlight-V100
29+
.Trashes
30+
31+
# ---- Windows
32+
# Windows image file caches
33+
Thumbs.db
34+
# Folder config file
35+
Desktop.ini

build.gradle

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* This build file was generated by the Gradle 'init' task.
3+
*
4+
* This generated file contains a sample Java Library project to get you started.
5+
* For more details take a look at the Java Libraries chapter in the Gradle
6+
* user guide available at https://docs.gradle.org/4.2.1/userguide/java_library_plugin.html
7+
*/
8+
9+
// Apply the java-library plugin to add support for Java Library
10+
apply plugin: 'java-library'
11+
12+
// In this section you declare where to find the dependencies of your project
13+
repositories {
14+
// Use jcenter for resolving your dependencies.
15+
// You can declare any Maven/Ivy/file repository here.
16+
jcenter()
17+
}
18+
19+
dependencies {
20+
// This dependency is exported to consumers, that is to say found on their compile classpath.
21+
api 'org.apache.commons:commons-math3:3.6.1'
22+
23+
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
24+
implementation 'com.google.guava:guava:22.0'
25+
26+
// Use JUnit test framework
27+
testImplementation 'junit:junit:4.12'
28+
}

settings.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* This settings file was generated by the Gradle 'init' task.
3+
*
4+
* The settings file is used to specify which projects to include in your build.
5+
* In a single project build this file can be empty or even removed.
6+
*
7+
* Detailed information about configuring a multi-project build in Gradle can be found
8+
* in the user guide at https://docs.gradle.org/4.2.1/userguide/multi_project_builds.html
9+
*/
10+
11+
/*
12+
// To declare projects as part of a multi-project build use the 'include' method
13+
include 'shared'
14+
include 'api'
15+
include 'services:webservice'
16+
*/
17+
18+
rootProject.name = 'codeclimate-sonar-php'

0 commit comments

Comments
 (0)