Skip to content

Commit

Permalink
Now using Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
nyg committed Feb 18, 2016
1 parent f2573c0 commit d456292
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 1 deletion.
41 changes: 41 additions & 0 deletions pom.xml
@@ -0,0 +1,41 @@
<?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>edu.self</groupId>
<artifactId>kraken-api-java</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Expand Up @@ -10,7 +10,7 @@
import edu.self.kraken.api.KrakenApi.Method;

public class Examples {

public static void main(String[] args) throws IOException, InvalidKeyException, NoSuchAlgorithmException {

KrakenApi api = new KrakenApi();
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d456292

Please sign in to comment.