-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved utils into lib, removed input from version control
- Loading branch information
Showing
48 changed files
with
118 additions
and
3,213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: 2 | ||
registries: | ||
maven-github: | ||
type: maven-repository | ||
url: https://maven.pkg.github.com/versicherungskammer/shared-libs | ||
username: dummy | ||
password: ${{secrets.VKB_GITHUB_DEPS_TOKEN}} | ||
updates: | ||
- package-ecosystem: "gradle" | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
registries: | ||
- maven-github | ||
- package-ecosystem: "github-actions" | ||
directory: / | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Release Build | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Java JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
- name: build & test | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,6 @@ bin/ | |
|
||
### Mac OS ### | ||
.DS_Store | ||
|
||
### personal input data ### | ||
src/main/resources/input*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Advent of Code 2023 | ||
|
||
This repo contains solutions for [Advent of code](https://adventofcode.com) puzzles in Kotlin. | ||
|
||
It is based on micronaut for dependency injection. | ||
|
||
As it depends on [aoc-utils](https://github.com/norganos/aoc-utils) authentication is necessary to access GitHub's | ||
Maven Package Repository: as of now, the gradle config in use assumes that you provide a PAT either via Env-Variables | ||
(`GITHUB_ACTOR` and `GITHUB_TOKEN`) or in gradle.properties (under `github.registry.user` and `github.registry.key`). | ||
|
||
input files `src/main/resources/input*.txt` are ignored in `.gitignore`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
src/main/kotlin/de/linkel/aoc/utils/computer/CommandContext.kt
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
src/main/kotlin/de/linkel/aoc/utils/computer/CommandFactory.kt
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
src/main/kotlin/de/linkel/aoc/utils/computer/CommandLineParser.kt
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/kotlin/de/linkel/aoc/utils/computer/DefaultCommandContext.kt
This file was deleted.
Oops, something went wrong.
122 changes: 0 additions & 122 deletions
122
src/main/kotlin/de/linkel/aoc/utils/computer/PosixCommandLineParser.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.