Skip to content

Commit

Permalink
Add Vriska Maven repository to return non-existent dependencies to JC…
Browse files Browse the repository at this point in the history
…enter
  • Loading branch information
tretdm committed Sep 14, 2024
1 parent d59e567 commit fc4a377
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
2 changes: 2 additions & 0 deletions app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,10 @@
<orderEntry type="library" exported="" name="Gradle: ch.acra:acra:4.6.0@jar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.android.support:support-v4:24.0.0@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: pl.droidsonroids.gif:android-gif-drawable:1.0.12@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.commit451:PhotoView:1.2.5@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.android.support:support-annotations:24.0.0@jar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.android.support:animated-vector-drawable:24.0.0@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.reginald.swiperefresh:library:1.1.2@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: org.apmem.tools:layouts:1.8@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.android.support:multidex:1.0.3@aar" level="project" />
<orderEntry type="library" exported="" name="Gradle: com.nostra13.universalimageloader:universal-image-loader:1.9.5@jar" level="project" />
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ dependencies {
//noinspection GradleDependency,GradleCompatible
compile 'com.android.support:appcompat-v7:24.0.0'
//noinspection GradleDependency
compile 'com.takisoft.fix:preference-v7:24.0.0.1'
compile 'com.takisoft.fix:preference-v7:24.0.0'
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
compile project(':modules:actionbar')
compile project(':modules:popupmenu')
compile 'com.reginald.swiperefresh:library:1.1.2'
compile 'com.seppius.plurals:android-i18n-plurals:1.0'
compile 'com.seppius.plurals:android-i18n-plurals:1.0.1'
// Android 2.x plurals patch
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'ch.acra:acra:4.6.0'
Expand Down
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@ allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://mvnrepository.com/artifact" }
maven { url "https://jitpack.io" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://repo.spring.io/plugins-release/'}
maven { url "https://maven.aliyun.com/repository/jcenter" }
google()
maven {
url "https://maven.vriska.ru/"
credentials {
username "gradle"
password "gradle"
}
}
}
}
6 changes: 6 additions & 0 deletions modules/modules.iml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
<facet type="android-gradle" name="Android-Gradle">
<configuration>
<option name="GRADLE_PROJECT_PATH" value=":modules" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
Expand Down
6 changes: 6 additions & 0 deletions modules/slidingmenu/slidingmenu.iml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
<facet type="android-gradle" name="Android-Gradle">
<configuration>
<option name="GRADLE_PROJECT_PATH" value=":modules:slidingmenu" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
Expand Down

0 comments on commit fc4a377

Please sign in to comment.