Skip to content

Commit

Permalink
revert module name
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jul 16, 2023
1 parent c9efb96 commit a526507
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jParser/core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: "java"
apply plugin: 'java-library'

def module_name = "core"
def module_name = "jParser-core"

dependencies {
api "com.github.javaparser:javaparser-symbol-solver-core:$project.javaparserVersion"
Expand Down
2 changes: 1 addition & 1 deletion jParser/cpp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: "java"
apply plugin: 'java-library'

def module_name = "cpp"
def module_name = "jParser-cpp"

dependencies {
api project(":jParser:idl")
Expand Down
2 changes: 1 addition & 1 deletion jParser/idl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: "java"

def module_name = "idl"
def module_name = "jParser-idl"

dependencies {
implementation project(":jParser:core")
Expand Down
2 changes: 1 addition & 1 deletion jParser/loader/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: "java"
apply plugin: 'java-library'

def module_name = "loader"
def module_name = "jParser-loader"

dependencies {
api "com.badlogicgames.gdx:gdx-jnigen-loader:$project.jniGenVersion"
Expand Down
2 changes: 1 addition & 1 deletion jParser/teavm/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: "java"
apply plugin: 'java-library'

def module_name = "teavm"
def module_name = "jParser-teavm"

dependencies {
api project(":jParser:idl")
Expand Down

0 comments on commit a526507

Please sign in to comment.