Skip to content

Commit

Permalink
fix 'Local Maven Repository' resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
josteinaj committed Mar 3, 2016
1 parent 5aa298e commit 29889b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/controllers/Jobs.java
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ public void run() {
}

} else {
Logger.debug("adding zip file: "+f.getName());
Logger.debug("adding normal file: "+f.getName());

List<Map<String,Object>> jsonFileset = new ArrayList<Map<String,Object>>();
Map<String,Object> fileResult = new HashMap<String,Object>();
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ com.typesafe.sbt.packager.SettingsHelper.makeDeploymentSettings(Universal, packa
resolvers += "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases/"
//resolvers += "Sonatype OSS Staging" at "https://oss.sonatype.org/content/repositories/staging/"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
resolvers += "Local Maven Repository" at Path.userHome.asFile.toURI.toURL+".m2/repository/"

publishTo := {
val nexus = "https://oss.sonatype.org/"
Expand Down

0 comments on commit 29889b9

Please sign in to comment.