Skip to content

Commit 12f8cfc

Browse files
committed
Initial commit with project structure.
1 parent 1dc0a0a commit 12f8cfc

File tree

3 files changed

+95
-0
lines changed

3 files changed

+95
-0
lines changed

.gitignore

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Created by https://www.gitignore.io/api/sbt,scala,intellij+all
2+
3+
### Intellij+all ###
4+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
5+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
6+
7+
# User-specific stuff:
8+
.idea/**/workspace.xml
9+
.idea/**/tasks.xml
10+
.idea/dictionaries
11+
12+
# Sensitive or high-churn files:
13+
.idea/**/dataSources/
14+
.idea/**/dataSources.ids
15+
.idea/**/dataSources.xml
16+
.idea/**/dataSources.local.xml
17+
.idea/**/sqlDataSources.xml
18+
.idea/**/dynamic.xml
19+
.idea/**/uiDesigner.xml
20+
21+
# Gradle:
22+
.idea/**/gradle.xml
23+
.idea/**/libraries
24+
25+
# CMake
26+
cmake-build-debug/
27+
28+
# Mongo Explorer plugin:
29+
.idea/**/mongoSettings.xml
30+
31+
## File-based project format:
32+
*.iws
33+
34+
## Plugin-specific files:
35+
36+
# IntelliJ
37+
/out/
38+
39+
# mpeltonen/sbt-idea plugin
40+
.idea_modules/
41+
42+
# JIRA plugin
43+
atlassian-ide-plugin.xml
44+
45+
# Cursive Clojure plugin
46+
.idea/replstate.xml
47+
48+
# Ruby plugin and RubyMine
49+
/.rakeTasks
50+
51+
# Crashlytics plugin (for Android Studio and IntelliJ)
52+
com_crashlytics_export_strings.xml
53+
crashlytics.properties
54+
crashlytics-build.properties
55+
fabric.properties
56+
57+
### Intellij+all Patch ###
58+
# Ignores the whole .idea folder and all .iml files
59+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
60+
61+
.idea/
62+
63+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
64+
65+
*.iml
66+
modules.xml
67+
.idea/misc.xml
68+
*.ipr
69+
70+
### SBT ###
71+
# Simple Build Tool
72+
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
73+
74+
dist/*
75+
target/
76+
lib_managed/
77+
src_managed/
78+
project/boot/
79+
project/plugins/project/
80+
.history
81+
.cache
82+
.lib/
83+
84+
### Scala ###
85+
*.class
86+
*.log
87+
88+
89+
# End of https://www.gitignore.io/api/sbt,scala,intellij+all

build.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name := "scala-json-to-prolog"
2+
3+
version := "0.1"
4+
5+
scalaVersion := "2.12.5"

project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version = 1.1.4

0 commit comments

Comments
 (0)