Skip to content

Commit df61774

Browse files
committed
removed unnecessary dependencies
1 parent 232e626 commit df61774

File tree

4 files changed

+17
-22
lines changed

4 files changed

+17
-22
lines changed

SuperiorPlugin/build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@ android {
3030
dependencies {
3131

3232
implementation 'androidx.appcompat:appcompat:1.2.0'
33-
implementation 'com.google.android.material:material:1.2.1'
34-
testImplementation 'junit:junit:4.13.1'
33+
implementation 'com.google.android.material:material:1.3.0'
34+
testImplementation 'junit:junit:4.13.2'
3535
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
3636
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
37-
implementation "org.jmonkeyengine:jme3-core:3.3.2-stable"
38-
implementation "org.jmonkeyengine:jme3-effects:3.3.2-stable"
39-
implementation "org.jmonkeyengine:jme3-android-native:3.3.2-stable"
40-
implementation "org.jmonkeyengine:jme3-lwjgl:3.3.2-stable"
37+
implementation "org.jmonkeyengine:jme3-core:3.4.0-beta1"
38+
implementation "org.jmonkeyengine:jme3-effects:3.4.0-beta1"
39+
implementation "org.jmonkeyengine:jme3-android-native:3.4.0-beta1"
4140
implementation 'com.github.stephengold:Minie:4.0.0'
4241
}

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ buildscript {
33
repositories {
44
google()
55
jcenter()
6+
mavenLocal()
7+
68
}
79
dependencies {
810
classpath 'com.android.tools.build:gradle:4.1.2'
@@ -16,9 +18,8 @@ allprojects {
1618
google()
1719
jcenter()
1820
// hey you looking to add the GamePad don't forget this line
19-
maven { url 'https://jitpack.io'
20-
}
21-
21+
maven { url 'https://jitpack.io'}
22+
mavenLocal()
2223
}
2324
}
2425

demoApp/build.gradle

+7-12
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ android {
1818
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
1919
}
2020
}
21-
configurations.all {
22-
exclude group:"org.jmonkeyengine",module:"jme3-desktop"
23-
}
2421
compileOptions {
2522
sourceCompatibility JavaVersion.VERSION_1_8
2623
targetCompatibility JavaVersion.VERSION_1_8
@@ -33,19 +30,17 @@ tasks.withType(JavaExec){
3330

3431
dependencies {
3532
implementation 'androidx.appcompat:appcompat:1.2.0'
36-
implementation 'com.google.android.material:material:1.2.1'
33+
implementation 'com.google.android.material:material:1.3.0'
3734
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
38-
implementation 'androidx.navigation:navigation-fragment:2.3.3'
39-
implementation 'androidx.navigation:navigation-ui:2.3.3'
35+
implementation 'androidx.navigation:navigation-fragment:2.3.5'
36+
implementation 'androidx.navigation:navigation-ui:2.3.5'
4037
implementation project(path: ':SuperiorPlugin')
41-
testImplementation 'junit:junit:4.13.1'
38+
testImplementation 'junit:junit:4.13.2'
4239
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
4340
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
44-
implementation "org.jmonkeyengine:jme3-core:3.3.2-stable"
45-
implementation "org.jmonkeyengine:jme3-effects:3.3.2-stable"
46-
implementation "org.jmonkeyengine:jme3-android-native:3.3.2-stable"
47-
implementation "org.jmonkeyengine:jme3-lwjgl:3.3.2-stable"
41+
implementation "org.jmonkeyengine:jme3-core:3.4.0-beta1"
42+
implementation "org.jmonkeyengine:jme3-effects:3.4.0-beta1"
43+
implementation "org.jmonkeyengine:jme3-android:3.4.0-beta1"
4844
implementation 'com.github.stephengold:Minie:4.0.0'
4945
implementation 'com.github.stephengold:Garrett:0.1.2'
50-
5146
}

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include ':SuperiorPlugin'
22
include ':demoApp'
3-
rootProject.name = "JmEGamePad"
3+
rootProject.name = "SuperiorExtendedEngine"

0 commit comments

Comments
 (0)