Skip to content

Commit 26d8349

Browse files
committed
config
1 parent d8d66d0 commit 26d8349

File tree

17 files changed

+648
-0
lines changed

17 files changed

+648
-0
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# These are explicitly windows files and should use crlf
5+
*.bat text eol=crlf
6+

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build

.idea/aws.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 161 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*
4+
* This generated file contains a sample Java application project to get you started.
5+
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
6+
* User Manual available at https://docs.gradle.org/7.4/userguide/building_java_projects.html
7+
* This project uses @Incubating APIs which are subject to change.
8+
*/
9+
10+
plugins {
11+
// Apply the application plugin to add support for building a CLI application in Java.
12+
id 'application'
13+
}
14+
15+
repositories {
16+
// Use Maven Central for resolving dependencies.
17+
mavenCentral()
18+
}
19+
20+
dependencies {
21+
// This dependency is used by the application.
22+
implementation 'com.google.guava:guava:30.1.1-jre'
23+
}
24+
25+
testing {
26+
suites {
27+
// Configure the built-in test suite
28+
test {
29+
// Use JUnit Jupiter test framework
30+
useJUnitJupiter('5.8.1')
31+
}
32+
}
33+
}
34+
35+
application {
36+
// Define the main class for the application.
37+
mainClass = 'AceTheJavaCodingInterview.App'
38+
}

0 commit comments

Comments
 (0)