Skip to content
This repository was archived by the owner on Jan 14, 2021. It is now read-only.

Commit 34c1f56

Browse files
authored
Merge pull request #1 from odict/buck
Replaced Gradle with BUCK
2 parents fa2c9dd + aa9bb8f commit 34c1f56

38 files changed

Lines changed: 363 additions & 715 deletions

.buckconfig

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[alias]
2+
it = //src/main:odict-java
3+
4+
[httpserver]
5+
port = 0
6+
7+
[maven_repositories]
8+
central = https://repo1.maven.org/maven2
9+
10+
[intellij]
11+
jdk_name = Java SDK 1.8
12+
jdk_type = JavaSDK
13+
java_module_sdk_type = JavaSDK
14+
java_module_sdk_name = 1.8
15+
module_group_name = hpc
16+
17+
[project]
18+
ide = intellij
19+
glob_handler = watchman
20+
ignore = .git
21+
22+
[java]
23+
src_roots = java, scala
24+
source_level = 8
25+
target_level = 8
26+
27+
[download]
28+
in_build = true

.gitignore

Lines changed: 71 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,3 @@
1-
2-
# Created by https://www.gitignore.io/api/windows,osx,linux,java,intellij
3-
4-
### Intellij ###
5-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
6-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7-
8-
# User-specific stuff:
9-
.idea/
10-
11-
# CMake
12-
cmake-build-debug/
13-
14-
# Mongo Explorer plugin:
15-
.idea/**/mongoSettings.xml
16-
17-
## File-based project format:
18-
*.iws
19-
20-
## Plugin-specific files:
21-
22-
# IntelliJ
23-
/out/
24-
25-
# mpeltonen/sbt-idea plugin
26-
.idea_modules/
27-
28-
# JIRA plugin
29-
atlassian-ide-plugin.xml
30-
31-
# Cursive Clojure plugin
32-
.idea/replstate.xml
33-
34-
# Crashlytics plugin (for Android Studio and IntelliJ)
35-
com_crashlytics_export_strings.xml
36-
crashlytics.properties
37-
crashlytics-build.properties
38-
fabric.properties
39-
40-
### Intellij Patch ###
41-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
42-
43-
# *.iml
44-
# modules.xml
45-
# .idea/misc.xml
46-
# *.ipr
47-
48-
# Sonarlint plugin
49-
.idea/sonarlint
50-
511
### Java ###
522
# Compiled class file
533
*.class
@@ -151,4 +101,74 @@ gradle-app.setting
151101
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
152102
# gradle/wrapper/gradle-wrapper.properties
153103

154-
# End of https://www.gitignore.io/api/gradle
104+
### Buck ###
105+
buck-out/
106+
.buckconfig.local
107+
.buckd/
108+
.buckversion
109+
.fakebuckversion
110+
111+
### Intellij ###
112+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
113+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
114+
115+
# User-specific stuff:
116+
.idea/**/workspace.xml
117+
.idea/**/tasks.xml
118+
.idea/dictionaries
119+
120+
# Sensitive or high-churn files:
121+
.idea/**/dataSources/
122+
.idea/**/dataSources.ids
123+
.idea/**/dataSources.xml
124+
.idea/**/dataSources.local.xml
125+
.idea/**/sqlDataSources.xml
126+
.idea/**/dynamic.xml
127+
.idea/**/uiDesigner.xml
128+
129+
# Gradle:
130+
.idea/**/gradle.xml
131+
.idea/**/libraries
132+
133+
# CMake
134+
cmake-build-debug/
135+
136+
# Mongo Explorer plugin:
137+
.idea/**/mongoSettings.xml
138+
139+
## File-based project format:
140+
*.iws
141+
142+
## Plugin-specific files:
143+
144+
# IntelliJ
145+
/out/
146+
147+
# mpeltonen/sbt-idea plugin
148+
.idea_modules/
149+
150+
# JIRA plugin
151+
atlassian-ide-plugin.xml
152+
153+
# Cursive Clojure plugin
154+
.idea/replstate.xml
155+
156+
# Ruby plugin and RubyMine
157+
/.rakeTasks
158+
159+
# Crashlytics plugin (for Android Studio and IntelliJ)
160+
com_crashlytics_export_strings.xml
161+
crashlytics.properties
162+
crashlytics-build.properties
163+
fabric.properties
164+
165+
### Intellij Patch ###
166+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
167+
168+
# *.iml
169+
# modules.xml
170+
# .idea/misc.xml
171+
# *.ipr
172+
173+
# Sonarlint plugin
174+
.idea/sonarlint

.idea/.name

Lines changed: 1 addition & 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: 9 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: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.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/modules/java.iml

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

.idea/modules/java_main.iml

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

.idea/modules/java_test.iml

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/modules/odict-java.iml

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

0 commit comments

Comments
 (0)