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
15 changes: 5 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
.gradle
/.settings/
/.classpath
/.project
/bin/
/.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
4 changes: 0 additions & 4 deletions CherokeeDictionaryShared/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions CherokeeDictionaryShared/README.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions CherokeeDictionaryShared/settings.gradle

This file was deleted.

18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
# CherokeeDictionaryShared
Cherokee Dictionary Shared Code / Models / Etc
#README

Available via jitpack.io: https://jitpack.io/#CherokeeLanguage/CherokeeDictionaryShared/

Gradle:
```
repositories {
...
maven { url "https://jitpack.io" }
}

dependencies {
compile 'com.github.CherokeeLanguage:CherokeeDictionaryShared:20160731'
}
}
```
Code in the project MUST be compatible with GWT 2.8
24 changes: 24 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 {
}
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 10:33:03 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.1-bin.zip
Loading