Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
99cacbe
Initial
pavi2410 Apr 19, 2020
4cbfaaa
More
pavi2410 Apr 19, 2020
6407604
Change generated sources directory
pavi2410 Apr 20, 2020
a05c31b
fix sourceset
pavi2410 Apr 24, 2020
4faf65c
gradle wrapper
pavi2410 Aug 3, 2022
fa27de6
groovy -> kotlin
pavi2410 Aug 3, 2022
780a141
Add deps in buildserver
pavi2410 Aug 3, 2022
b8a0253
fix common
pavi2410 Aug 3, 2022
40b7fbc
create new module - utils
pavi2410 Aug 3, 2022
06f58a6
split "common" module
pavi2410 Aug 3, 2022
318b3b5
create new module - component-constants
pavi2410 Aug 3, 2022
a3618b5
fix: set file encoding to utf8
pavi2410 Aug 3, 2022
cccfa1a
fix: buildserver main class
pavi2410 Aug 3, 2022
f65aa21
fix: GitBuildId class generation
pavi2410 Aug 3, 2022
966ef49
common-version: add gwt plugin
pavi2410 Aug 3, 2022
ac15225
add barcode library module
pavi2410 Aug 3, 2022
72ce31b
move repo resolution in settings.gradle.kts
pavi2410 Aug 4, 2022
8689665
fix barcode module
pavi2410 Aug 4, 2022
52529ca
convert components -> kts
pavi2410 Aug 4, 2022
49fb2fa
remove unused test files from :barcode
pavi2410 Aug 4, 2022
9cf1217
split components module
pavi2410 Aug 4, 2022
051ac86
add missing deps
pavi2410 Aug 4, 2022
55aa3b0
Remove unused files
pavi2410 Aug 4, 2022
13f9dea
add deps
pavi2410 Aug 19, 2022
789ae3a
Gradle 7.5
pavi2410 Sep 12, 2022
c9b68a5
Buildserver is now running
pavi2410 Sep 12, 2022
5f2ae3f
Follow Gradle source set convention
pavi2410 Oct 14, 2022
2642fe7
Split appengine module
pavi2410 Oct 14, 2022
06f5e2f
java toolchain
pavi2410 Oct 14, 2022
d46f259
Setup appengine-backend
pavi2410 Oct 15, 2022
a6b21cd
Fix frontend and components
pavi2410 Oct 15, 2022
c927408
Move buildserver resources
pavi2410 Oct 15, 2022
1db23ac
Move images to frontend
pavi2410 Oct 21, 2022
f1deb1c
Update to latest GWT plugin
pavi2410 Oct 21, 2022
3eafc0a
misc
pavi2410 Dec 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 31 additions & 0 deletions appinventor/appengine-backend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
plugins {
java
war
id("com.google.cloud.tools.appengine-standard") version "2.4.4"
}

group = "com.google.appinventor"
version = "unspecified"

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}

appengine {
tools {
setCloudSdkHome("C:\\Program Files (x86)\\Google\\Cloud SDK\\google-cloud-sdk")
cloudSdkVersion = "405.0.1"
}
deploy {
version = "1"
projectId = "your GCP project ID"
}
}

dependencies {
implementation(projects.appengineShared)
implementation("com.google.appengine:appengine-api-1.0-sdk:2.0.9")
providedCompile("javax.servlet:javax.servlet-api:3.1.0")
}
75 changes: 75 additions & 0 deletions appinventor/appengine-frontend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
plugins {
// java
war
id("org.docstr.gwt")
}

group = "com.google.appinventor"
version = "unspecified"

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
sourceSets {
main {
java {
// FIXME: This requires us to run :components:assembleRelease first.
// Adds the annotation processor output to the classpath
// - AutogeneratedOdeMessages.java
// - ComponentTranslation.java
srcDirs("../components/build/generated/ap_generated_sources/release/out/")
exclude("*.md", "*.json", "*.txt")
}
}
}
}

tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}

//project(":components").afterEvaluate {
// java.sourceSets["main"].java.srcDir(
// project(":components").sourceSets["main"].output.generatedSourcesDirs.files.filter {
// it.name in listOf(
// "AutogeneratedOdeMessages.java",
// "ComponentsTranslation.java"
// )
// }
// )
//}

gwt {
gwtVersion = "2.10.0"
modules("com.google.appinventor.YaClient")
devModules("com.google.appinventor.YaClient-dev")

maxHeapSize = "1G"
compiler.strict = true
println("##### SRC: ${src.files}")
// println("##### CLASSPATH: ${}")
println("##### MODULES: ${modules}")
// logLevel = org.docstr.gradle.plugins.gwt.LogLevel.ALL

// src += files(tasks.compileJava.get().options.generatedSourceOutputDirectory)
// src += files(project(":common-utils").sourceSets["main"].allJava) + files(project(":common-utils").sourceSets["main"].resources)
}

dependencies {
gwt(projects.commonUtils)
gwt(projects.commonVersion)
gwt(projects.componentConstants)
gwt(projects.appengineShared)
implementation(projects.commonUtils)
implementation(projects.commonVersion)
implementation(projects.componentConstants)
implementation(projects.appengineShared)
implementation("com.google.gwt:gwt-user:2.10.0")
implementation("com.google.gwt:gwt-dev:2.10.0")
implementation("com.allen-sauer.gwt.dnd:gwt-dnd:3.2.3")
implementation("com.googlecode.gwtquery:gwtquery:1.5-beta1")
implementation("com.google.gwt:gwt-incubator:2.0.1")
implementation("org.pepstock:charba:2.5")
implementation("org.json:json:20220320")
}
File renamed without changes.
3,360 changes: 1,680 additions & 1,680 deletions ...inventor/client/OdeMessages_hu.properties → ...inventor/client/OdeMessages_hu.properties
100755 → 100644

Large diffs are not rendered by default.

Loading