Skip to content
This repository was archived by the owner on May 26, 2023. It is now read-only.

Commit 5d07c1b

Browse files
committed
initial commit
0 parents  commit 5d07c1b

File tree

17 files changed

+656
-0
lines changed

17 files changed

+656
-0
lines changed

.gitignore

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/gradle,kotlin,intellij
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=gradle,kotlin,intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
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/artifacts
37+
# .idea/compiler.xml
38+
# .idea/jarRepositories.xml
39+
# .idea/modules.xml
40+
# .idea/*.iml
41+
# .idea/modules
42+
# *.iml
43+
# *.ipr
44+
45+
# CMake
46+
cmake-build-*/
47+
48+
# Mongo Explorer plugin
49+
.idea/**/mongoSettings.xml
50+
51+
# File-based project format
52+
*.iws
53+
54+
# IntelliJ
55+
out/
56+
57+
# mpeltonen/sbt-idea plugin
58+
.idea_modules/
59+
60+
# JIRA plugin
61+
atlassian-ide-plugin.xml
62+
63+
# Cursive Clojure plugin
64+
.idea/replstate.xml
65+
66+
# Crashlytics plugin (for Android Studio and IntelliJ)
67+
com_crashlytics_export_strings.xml
68+
crashlytics.properties
69+
crashlytics-build.properties
70+
fabric.properties
71+
72+
# Editor-based Rest Client
73+
.idea/httpRequests
74+
75+
# Android studio 3.1+ serialized cache file
76+
.idea/caches/build_file_checksums.ser
77+
78+
### Intellij Patch ###
79+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
80+
81+
# *.iml
82+
# modules.xml
83+
# .idea/misc.xml
84+
# *.ipr
85+
86+
# Sonarlint plugin
87+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
88+
.idea/**/sonarlint/
89+
90+
# SonarQube Plugin
91+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
92+
.idea/**/sonarIssues.xml
93+
94+
# Markdown Navigator plugin
95+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
96+
.idea/**/markdown-navigator.xml
97+
.idea/**/markdown-navigator-enh.xml
98+
.idea/**/markdown-navigator/
99+
100+
# Cache file creation bug
101+
# See https://youtrack.jetbrains.com/issue/JBR-2257
102+
.idea/$CACHE_FILE$
103+
104+
# CodeStream plugin
105+
# https://plugins.jetbrains.com/plugin/12206-codestream
106+
.idea/codestream.xml
107+
108+
### Kotlin ###
109+
# Compiled class file
110+
*.class
111+
112+
# Log file
113+
*.log
114+
115+
# BlueJ files
116+
*.ctxt
117+
118+
# Mobile Tools for Java (J2ME)
119+
.mtj.tmp/
120+
121+
# Package Files #
122+
*.jar
123+
*.war
124+
*.nar
125+
*.ear
126+
*.zip
127+
*.tar.gz
128+
*.rar
129+
130+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
131+
hs_err_pid*
132+
133+
### Gradle ###
134+
.gradle
135+
build/
136+
137+
# Ignore Gradle GUI config
138+
gradle-app.setting
139+
140+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
141+
!gradle-wrapper.jar
142+
143+
# Cache of project
144+
.gradletasknamecache
145+
146+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
147+
# gradle/wrapper/gradle-wrapper.properties
148+
149+
### Gradle Patch ###
150+
**/build/
151+
152+
# End of https://www.toptal.com/developers/gitignore/api/gradle,kotlin,intellij

.idea/.gitignore

Lines changed: 8 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/jarRepositories.xml

Lines changed: 30 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.

build.gradle.kts

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import org.jetbrains.compose.compose
2+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3+
4+
plugins {
5+
kotlin("jvm") version "1.4.30"
6+
id("org.jetbrains.compose") version "0.3.0-build152"
7+
`java-library`
8+
`maven-publish`
9+
jacoco
10+
}
11+
12+
repositories {
13+
jcenter()
14+
mavenCentral()
15+
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
16+
}
17+
18+
dependencies {
19+
testImplementation(kotlin("test-junit5"))
20+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
21+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
22+
implementation(compose.desktop.currentOs)
23+
}
24+
25+
tasks.test {
26+
useJUnitPlatform()
27+
}
28+
29+
tasks.withType<KotlinCompile>() {
30+
kotlinOptions.jvmTarget = "11"
31+
}
32+
33+
java {
34+
withJavadocJar()
35+
withSourcesJar()
36+
}
37+
38+
publishing {
39+
publications {
40+
create<MavenPublication>("maven") {
41+
groupId = "io.appoutlet"
42+
artifactId = "karavel"
43+
version = "1.0"
44+
45+
from(components["java"])
46+
}
47+
}
48+
}
49+

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlin.code.style=official

gradle/wrapper/gradle-wrapper.jar

57.8 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)