Skip to content

Commit b84b76e

Browse files
author
craigsdennis
committed
Initial commit
0 parents  commit b84b76e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+907
-0
lines changed

.gitignore

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Java template
3+
*.class
4+
5+
# BlueJ files
6+
*.ctxt
7+
8+
# Mobile Tools for Java (J2ME)
9+
.mtj.tmp/
10+
11+
# Package Files #
12+
*.jar
13+
*.war
14+
*.ear
15+
16+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
17+
hs_err_pid*
18+
### Gradle template
19+
.gradle
20+
/build/
21+
22+
# Ignore Gradle GUI config
23+
gradle-app.setting
24+
25+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
26+
!gradle-wrapper.jar
27+
28+
# Cache of project
29+
.gradletasknamecache
30+
31+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
32+
# gradle/wrapper/gradle-wrapper.properties
33+
### JetBrains template
34+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
35+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
36+
37+
# User-specific stuff:
38+
.idea/workspace.xml
39+
.idea/tasks.xml
40+
41+
# Sensitive or high-churn files:
42+
.idea/dataSources/
43+
.idea/dataSources.ids
44+
.idea/dataSources.xml
45+
.idea/dataSources.local.xml
46+
.idea/sqlDataSources.xml
47+
.idea/dynamic.xml
48+
.idea/uiDesigner.xml
49+
50+
# Gradle:
51+
.idea/gradle.xml
52+
.idea/libraries
53+
54+
# Mongo Explorer plugin:
55+
.idea/mongoSettings.xml
56+
57+
## File-based project format:
58+
*.iws
59+
60+
## Plugin-specific files:
61+
62+
# IntelliJ
63+
/out/
64+
65+
# mpeltonen/sbt-idea plugin
66+
.idea_modules/
67+
68+
# JIRA plugin
69+
atlassian-ide-plugin.xml
70+
71+
# Crashlytics plugin (for Android Studio and IntelliJ)
72+
com_crashlytics_export_strings.xml
73+
crashlytics.properties
74+
crashlytics-build.properties
75+
fabric.properties
76+

.idea/compiler.xml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/indeed-jobs.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/indeed-jobs_main.iml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/indeed-jobs_test.iml

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
group 'com.teamtreehouse'
2+
version '1.0-SNAPSHOT'
3+
4+
apply plugin: 'java'
5+
6+
sourceCompatibility = 1.8
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
compile 'com.google.http-client:google-http-client:1.22.0'
14+
compile 'com.google.http-client:google-http-client-jackson2:1.22.0'
15+
testCompile 'junit:junit:4.11'
16+
}

gradle/wrapper/gradle-wrapper.jar

51.7 KB
Binary file not shown.
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Mar 13 16:31:52 PDT 2017
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-all.zip

0 commit comments

Comments
 (0)