Guest User

Untitled

a guest
Oct 31st, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Could not get unknown property 'mavenUser' for Credentials
  2. [username: null] of type
  3. org.gradle.api.internal.artifacts.repositories.DefaultPasswordCredentials_Decorated
  4.  
  5. buildscript {
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:0.7.+'
  11.  
  12. repositories {
  13. mavenCentral()
  14. maven {
  15.  
  16.  
  17. // ~/.gradle/gradle.properties should be configured!
  18. credentials {
  19. username mavenUser
  20. password mavenPassword
  21. }
  22. url 'http://dev.softwerk.se:8080/nexus/content/repositories/softwerk-repo'
  23. }
  24. }
  25.  
  26. android {
  27. compileSdkVersion 19
  28. buildToolsVersion "19.0.1"
  29.  
  30. defaultConfig {
  31. minSdkVersion 8
  32. targetSdkVersion 19
  33. versionCode 2014020601
  34. versionName "2.0.0"
  35. }
  36.  
  37. compileOptions {
  38. sourceCompatibility JavaVersion.VERSION_1_7
  39. targetCompatibility JavaVersion.VERSION_1_7
  40. }
  41. }
  42.  
  43. dependencies {
  44. compile 'com.android.support:support-v4:19.0.+'
  45. compile 'com.android.support:appcompat-v7:19.0.+'
  46. compile 'com.google.android.gms:play-services:4.0.30'
  47.  
  48. // Sync framework
  49. compile 'se.softwerk.commons.android:android-framework:1.1.10@aar'
  50. compile 'com.googlecode.plist:dd-plist:1.0'
  51. compile 'com.google.code.gson:gson:1.7.1'
  52. compile 'commons-io:commons-io:2.1'
  53. }
  54. }
  55. }`
  56.  
  57. mavenUser=yourusername
  58. mavenPassword=yourpassword
Add Comment
Please, Sign In to add comment