Skip to content

Commit

Permalink
Merge pull request #33 from G8XSU/multi-lang
Browse files Browse the repository at this point in the history
Refactor/Prepare for Multi-language support.
  • Loading branch information
G8XSU authored Oct 17, 2024
2 parents 5f917b0 + 425342b commit 15c68d6
Show file tree
Hide file tree
Showing 31 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Create database table
run: |
psql -h localhost -U postgres -d postgres -f ./app/src/main/java/org/vss/impl/postgres/sql/v0_create_vss_db.sql
psql -h localhost -U postgres -d postgres -f ./java/app/src/main/java/org/vss/impl/postgres/sql/v0_create_vss_db.sql
env:
PGPASSWORD: YOU_MUST_CHANGE_THIS_PASSWORD

Expand All @@ -56,6 +56,7 @@ jobs:
java -version
gradle --version
cd java
gradle wrapper --gradle-version 8.1.1
./gradlew --version
./gradlew build
Expand Down
1 change: 1 addition & 0 deletions java/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
COMPOSE_PROJECT_NAME=vss-server-java
File renamed without changes.
8 changes: 8 additions & 0 deletions app/build.gradle → java/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ repositories {
mavenCentral()
}

sourceSets {
main {
proto {
srcDir '../../proto'
}
}
}

idea {
module {
generatedSourceDirs.add(file("build/generated/proto/main"))
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 15c68d6

Please sign in to comment.