Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
.gradle
build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Cache of project
.gradletasknamecache
/.settings/
/.classpath
/.project
/bin/
/.gradle/
/build/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "CherokeeDictionaryShared"]
path = CherokeeDictionaryShared
url = ../CherokeeDictionaryShared.git
1 change: 1 addition & 0 deletions CherokeeDictionaryShared
4 changes: 0 additions & 4 deletions CherokeeLanguageUtils/.gitignore

This file was deleted.

103 changes: 0 additions & 103 deletions CherokeeLanguageUtils/build.gradle

This file was deleted.

Binary file not shown.
164 changes: 0 additions & 164 deletions CherokeeLanguageUtils/gradlew

This file was deleted.

3 changes: 0 additions & 3 deletions CherokeeLanguageUtils/settings.gradle

This file was deleted.

26 changes: 26 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
plugins {
id "java-library"
id "idea"
}

compileJava.options.encoding = 'UTF-8'
compileJava.options.release = 17
compileTestJava.options.encoding = 'UTF-8'
compileTestJava.options.release = 17
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
jar {
from sourceSets.main.allSource
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}

repositories {
mavenCentral()
google()
maven { url "https://jitpack.io" }
}

dependencies {
implementation 'org.apache.commons:commons-lang3:+'
}

File renamed without changes.
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sun Jul 31 09:42:15 EDT 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-bin.zip
Loading