Skip to content

Commit

Permalink
v1.0.0-beta0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Sep 15, 2022
2 parents 423c955 + 8e4207d commit 2ce0311
Show file tree
Hide file tree
Showing 155 changed files with 5,805 additions and 12,857 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
root = true

[*.{kt,kts}]
ij_kotlin_allow_trailing_comma = true
ij_kotlin_allow_trailing_comma_on_call_site = true

max_line_length = 120
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ out
*.ipr
*.iws
.DS_STORE
.ipynb_checkpoints
graphs
charts
csv
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Road Runner

A simple Kotlin library for planning 2D mobile robot paths and trajectories designed for FTC. **Note:** this project is in alpha and many of the APIs are incubating.
A simple Kotlin library for planning 2D mobile robot paths and trajectories designed for FTC. **Note:** this project is
in alpha and many of the APIs are incubating.

<p align="center">
<img src="doc/image/8393.gif" />
Expand Down
21 changes: 0 additions & 21 deletions build.gradle

This file was deleted.

185 changes: 0 additions & 185 deletions core/build.gradle

This file was deleted.

48 changes: 48 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
plugins {
id("org.jetbrains.kotlin.jvm") version "1.6.20"

`java-library`

id("org.jetbrains.dokka") version "1.7.0"

id("org.jlleitschuh.gradle.ktlint") version "10.2.1"
id("org.jlleitschuh.gradle.ktlint-idea") version "10.2.1"

`maven-publish`
}

repositories {
mavenCentral()
}

dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))

implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")

testImplementation("org.jetbrains.kotlin:kotlin-test")

testImplementation("org.knowm.xchart:xchart:3.8.1")

dokkaHtmlPlugin("org.jetbrains.dokka:mathjax-plugin:1.7.0")
}

java {
withSourcesJar()
}

tasks.named<Test>("test") {
useJUnitPlatform()
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.acmerobotics.roadrunner"
artifactId = "core"
version = "1.0.0-beta0"

from(components["java"])
}
}
}
Loading

0 comments on commit 2ce0311

Please sign in to comment.