You can download spotify-web-api-java-1.5.0.jar in this page.
MIT License
spotify-web-api-java-1.5.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/se.michaelthelin.spotify/spotify-web-api-java/pom.properties META-INF/maven/se.michaelthelin.spotify/spotify-web-api-java/pom.xml com.wrapper.spotify.Api.class com.wrapper.spotify.HttpManager.class com.wrapper.spotify.JsonUtil.class com.wrapper.spotify.SpotifyHttpManager.class com.wrapper.spotify.UrlUtil.class com.wrapper.spotify.UtilProtos.class com.wrapper.spotify.exceptions.BadRequestException.class com.wrapper.spotify.exceptions.EmptyResponseException.class com.wrapper.spotify.exceptions.NoCredentialsException.class com.wrapper.spotify.exceptions.ServerErrorException.class com.wrapper.spotify.exceptions.WebApiAuthenticationException.class com.wrapper.spotify.exceptions.WebApiException.class com.wrapper.spotify.methods.AbstractRequest.class com.wrapper.spotify.methods.AddToMySavedTracksRequest.class com.wrapper.spotify.methods.AddTrackToPlaylistRequest.class com.wrapper.spotify.methods.AlbumRequest.class com.wrapper.spotify.methods.AlbumSearchRequest.class com.wrapper.spotify.methods.AlbumsForArtistRequest.class com.wrapper.spotify.methods.AlbumsRequest.class com.wrapper.spotify.methods.ArtistRequest.class com.wrapper.spotify.methods.ArtistSearchRequest.class com.wrapper.spotify.methods.ArtistsRequest.class com.wrapper.spotify.methods.ChangePlaylistDetailsRequest.class com.wrapper.spotify.methods.ContainsMySavedTracksRequest.class com.wrapper.spotify.methods.CurrentUserRequest.class com.wrapper.spotify.methods.FeaturedPlaylistsRequest.class com.wrapper.spotify.methods.GetMySavedTracksRequest.class com.wrapper.spotify.methods.NewReleasesRequest.class com.wrapper.spotify.methods.PlaylistCreationRequest.class com.wrapper.spotify.methods.PlaylistRequest.class com.wrapper.spotify.methods.PlaylistTracksRequest.class com.wrapper.spotify.methods.RelatedArtistsRequest.class com.wrapper.spotify.methods.RemoveFromMySavedTracksRequest.class com.wrapper.spotify.methods.Request.class com.wrapper.spotify.methods.TopTracksRequest.class com.wrapper.spotify.methods.TrackRequest.class com.wrapper.spotify.methods.TrackSearchRequest.class com.wrapper.spotify.methods.TracksRequest.class com.wrapper.spotify.methods.UserPlaylistsRequest.class com.wrapper.spotify.methods.UserRequest.class com.wrapper.spotify.methods.authentication.AuthorizationCodeGrantRequest.class com.wrapper.spotify.methods.authentication.AuthorizationURLRequest.class com.wrapper.spotify.methods.authentication.ClientCredentialsGrantRequest.class com.wrapper.spotify.methods.authentication.RefreshAccessTokenRequest.class com.wrapper.spotify.models.Album.class com.wrapper.spotify.models.AlbumType.class com.wrapper.spotify.models.Artist.class com.wrapper.spotify.models.AuthorizationCodeCredentials.class com.wrapper.spotify.models.ClientCredentials.class com.wrapper.spotify.models.Copyright.class com.wrapper.spotify.models.Error.class com.wrapper.spotify.models.ExternalIds.class com.wrapper.spotify.models.ExternalUrls.class com.wrapper.spotify.models.FeaturedPlaylists.class com.wrapper.spotify.models.Followers.class com.wrapper.spotify.models.Image.class com.wrapper.spotify.models.LibraryTrack.class com.wrapper.spotify.models.NewReleases.class com.wrapper.spotify.models.Page.class com.wrapper.spotify.models.Playlist.class com.wrapper.spotify.models.PlaylistTrack.class com.wrapper.spotify.models.PlaylistTracksInformation.class com.wrapper.spotify.models.Product.class com.wrapper.spotify.models.RefreshAccessTokenCredentials.class com.wrapper.spotify.models.SimpleAlbum.class com.wrapper.spotify.models.SimpleArtist.class com.wrapper.spotify.models.SimplePlaylist.class com.wrapper.spotify.models.SimpleTrack.class com.wrapper.spotify.models.SnapshotResult.class com.wrapper.spotify.models.SpotifyEntityType.class com.wrapper.spotify.models.Track.class com.wrapper.spotify.models.User.class
spotify-web-api-java-1.5.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>se.michaelthelin.spotify</groupId> <artifactId>spotify-web-api-java</artifactId> <version>1.5.0</version> <packaging>jar</packaging> <name>Spotify Web API Java Client</name> <description>A Java client for Spotify's Web API</description> <url>https://github.com/thelinmichael/spotify-web-api-java</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/thelinmichael/spotify-web-api-java</url> <connection>scm:git:git://github.com/thelinmichael/spotify-web-api-java.git</connection> <developerConnection>scm:git:git@github.com:thelinmichael/spotify-web-api-java.git</developerConnection> </scm> <developers> <developer> <name>Michael Thelin</name> <email>thelinmichael@gmail.com</email> <organization>Michael Thelin</organization> <organizationUrl>https://github.com/thelinmichael</organizationUrl> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> </configuration> <version>2.9.1</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>2.5.0</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> </dependency> </dependencies> </project>
<dependency> <groupId>se.michaelthelin.spotify</groupId> <artifactId>spotify-web-api-java</artifactId> <version>1.5.0</version> </dependency>
If you think the following spotify-web-api-java-1.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download spotify-web-api-java-1.5.0.jar file