Skip to content

Commit 7f736e6

Browse files
authored
Merge pull request #17 from adamint/dev
Let's make this wrapper production-quality
2 parents a0605b0 + 3edec80 commit 7f736e6

File tree

108 files changed

+3310
-2290
lines changed

Some content is hidden

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

108 files changed

+3310
-2290
lines changed

.circleci/config.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
docker:
99
# specify the version you desire here
1010
- image: circleci/openjdk:8-jdk
11-
11+
1212
# Specify service dependencies here if necessary
1313
# CircleCI maintains a library of pre-built images
1414
# documented at https://circleci.com/docs/2.0/circleci-images/
@@ -20,23 +20,24 @@ jobs:
2020
# Customize the JVM maximum heap limit
2121
JVM_OPTS: -Xmx3200m
2222
TERM: dumb
23-
23+
2424
steps:
2525
- checkout
2626

2727
# Download and cache dependencies
2828
- restore_cache:
2929
keys:
30-
- v1-dependencies-{{ checksum "build.gradle" }}
31-
# fallback to using the latest cache if no exact match is found
32-
- v1-dependencies-
30+
- v1-dependencies-{{ checksum "build.gradle" }}
31+
# fallback to using the latest cache if no exact match is found
32+
- v1-dependencies-
3333

3434
- run: gradle dependencies
3535

3636
- save_cache:
3737
paths:
3838
- ~/.gradle
3939
key: v1-dependencies-{{ checksum "build.gradle" }}
40-
40+
4141
# run tests!
42-
- run: gradle test
42+
- run: gradle test -PclientId=$SPOTIFY_CLIENT_ID -PclientSecret=$SPOTIFY_CLIENT_SECRET
43+

.gitignore

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
2+
# Created by https://www.gitignore.io/api/gradle,kotlin,intellij
3+
# Edit at https://www.gitignore.io/?templates=gradle,kotlin,intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
.idea/modules.xml
37+
.idea/*.iml
38+
.idea/modules
39+
40+
# CMake
41+
cmake-build-*/
42+
43+
# Mongo Explorer plugin
44+
.idea/**/mongoSettings.xml
45+
46+
# File-based project format
47+
*.iws
48+
49+
# IntelliJ
50+
out/
51+
52+
# mpeltonen/sbt-idea plugin
53+
.idea_modules/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Cursive Clojure plugin
59+
.idea/replstate.xml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
fabric.properties
66+
67+
# Editor-based Rest Client
68+
.idea/httpRequests
69+
70+
# Android studio 3.1+ serialized cache file
71+
.idea/caches/build_file_checksums.ser
72+
73+
### Intellij Patch ###
74+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
75+
76+
# *.iml
77+
# modules.xml
78+
# .idea/misc.xml
79+
# *.ipr
80+
81+
# Sonarlint plugin
82+
.idea/sonarlint
83+
84+
### Kotlin ###
85+
# Compiled class file
86+
*.class
87+
88+
# Log file
89+
*.log
90+
91+
# BlueJ files
92+
*.ctxt
93+
94+
# Mobile Tools for Java (J2ME)
95+
.mtj.tmp/
96+
97+
# Package Files #
98+
*.jar
99+
*.war
100+
*.nar
101+
*.ear
102+
*.zip
103+
*.tar.gz
104+
*.rar
105+
106+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
107+
hs_err_pid*
108+
109+
### Gradle ###
110+
.gradle
111+
/build/
112+
113+
# Ignore Gradle GUI config
114+
gradle-app.setting
115+
116+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
117+
!gradle-wrapper.jar
118+
119+
# Cache of project
120+
.gradletasknamecache
121+
122+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
123+
# gradle/wrapper/gradle-wrapper.properties
124+
125+
### Gradle Patch ###
126+
**/build/
127+
128+
# End of https://www.gitignore.io/api/gradle,kotlin,intellij

.idea/compiler.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 4 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: 0 additions & 19 deletions
This file was deleted.

.idea/kotlinc.xml

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

.idea/libraries/Arquillian_JUnit_Release.xml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/libraries/Gradle__junit_junit_4_12.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)