Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

BugFix #171

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
apply plugin: 'maven'

buildscript {
repositories {
maven { url 'http://repo.spring.io/plugins-release' }
Expand Down Expand Up @@ -293,4 +295,4 @@ task updateRootDocs << {
}
}

build.dependsOn('updateRootDocs')
build.dependsOn('updateRootDocs')
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ springVersion=4.1.6.RELEASE
springSocialVersion=1.1.0.RELEASE
springSnapshotVersion=latest.integration
hamcrestVersion=1.3
version=2.0.1.RELEASE
version=12.0.2-SNAPSHOT
jacksonVersion=2.4.5
jspApiVersion=2.2.1
servletApiVersion=3.0.1
Expand Down
9 changes: 9 additions & 0 deletions publish-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ ext.optional = { optionalDeps << it }
ext.provided = { providedDeps << it }

install {
repositories {
maven {
url "http://modelzuzana.com:8080/nexus/content/repositories/snapshots"
credentials {
username "deployment"
password "neviempresne"
}
}
}
repositories.mavenInstaller {
customizePom(pom, project)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public interface UserOperations {
PagedList<Reference> search(String query);

static final String[] PROFILE_FIELDS = {
"id", "about", "age_range", "address", "bio", "birthday", "context", "cover", "currency", "devices", "education", "email",
"id", "about", "age_range", "bio", "birthday", "context", "cover", "currency", "devices", "education", "email",
"favorite_athletes", "favorite_teams", "first_name", "gender", "hometown", "inspirational_people", "installed", "install_type",
"is_verified", "languages", "last_name", "link", "locale", "location", "meeting_for", "middle_name", "name", "name_format",
"political", "quotes", "payment_pricepoints", "relationship_status", "religion", "security_settings", "significant_other",
Expand Down