Skip to content

sv-sand/weather-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weather client

Here is the library for loading weather data from API of http://openweathermap.org

You can build this sources as artifact. As a result, a file weather-client.jar will be created.

Or you can download last version of library.

How to use

Manually include in to the project

Open project structure and add new java library file weather-client-1.0.2.jar

Copy library to m2 local repository

Run bottom command in bash or command line:

mvn install:install-file \
  -Dfile=weather-client-1.0.2.jar \
  -DgroupId=ru.sanddev \
  -DartifactId=weather-client \
  -Dversion=1.0.2 \
  -Dpackaging=jar

Now you can use library in your any maven project:

<dependency>
    <groupId>ru.sanddev</groupId>
    <artifactId>weather-client</artifactId>
    <version>1.0.2</version>
</dependency>