Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/Prepare for Multi-language support. #33

Merged
merged 1 commit into from
Oct 17, 2024
Merged
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
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.
Loading