Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revised Project Structure #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
42 changes: 0 additions & 42 deletions .classpath

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*.class
.settings/
.classpath
.project

# Package Files #
*.war
Expand Down
23 changes: 0 additions & 23 deletions .project

This file was deleted.

1 change: 1 addition & 0 deletions figo-client-sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
14 changes: 14 additions & 0 deletions figo-client-sdk/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>me.figo</groupId>
<artifactId>figo-sdk-parent</artifactId>
<version>1.3.3</version>
</parent>

<artifactId>sdk</artifactId>

<packaging>jar</packaging>
</project>
1 change: 1 addition & 0 deletions figo-demo-console/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
22 changes: 22 additions & 0 deletions figo-demo-console/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>me.figo</groupId>
<artifactId>figo-sdk-parent</artifactId>
<version>1.3.3</version>
</parent>

<artifactId>figo-demo-console</artifactId>

<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>me.figo</groupId>
<artifactId>sdk</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions figo-demo-web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
41 changes: 41 additions & 0 deletions figo-demo-web/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>me.figo</groupId>
<artifactId>figo-sdk-parent</artifactId>
<version>1.3.3</version>
</parent>

<artifactId>figo-demo-web</artifactId>

<packaging>jar</packaging>

<properties>
<spark.version>2.0.0</spark.version>

<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>me.figo</groupId>
<artifactId>sdk</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>${spark.version}</version>
</dependency>

<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-template-velocity</artifactId>
<version>${spark.version}</version>
</dependency>
</dependencies>
</project>
38 changes: 20 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<modelVersion>4.0.0</modelVersion>

<groupId>me.figo</groupId>
<artifactId>sdk</artifactId>
<artifactId>figo-sdk-parent</artifactId>
<version>1.3.3</version>
<packaging>jar</packaging>
<packaging>pom</packaging>

<name>Figo Java SDK</name>
<description>This SDK eases the development of Java applications and web services consuming the figo connect API. Figo connect allows developers simple access to users bank data on a trustworthy basis. Users can grant your application access to certain parts of their bank accounts and you can access them without worrying about the inner workings of online banking.</description>
<url>http://figo.io</url>

<organization>
<name>figo GmbH</name>
<url>http://figo.io</url>
Expand All @@ -24,8 +24,17 @@
</developers>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<modules>
<module>figo-client-sdk</module>
<module>figo-demo-console</module>
<module>figo-demo-web</module>
</modules>

<scm>
<url>git://github.com/figo-connect/java-figo.git</url>
Expand All @@ -52,29 +61,22 @@
<artifactId>gson</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -121,6 +123,6 @@
</execution>
</executions>
</plugin>
</plugins>
</plugins>
</build>
</project>
Binary file removed src/web_demo/lib/commons-collections-3.2.1.jar
Binary file not shown.
Binary file removed src/web_demo/lib/commons-lang-2.4.jar
Binary file not shown.
Binary file not shown.
Binary file removed src/web_demo/lib/jetty-http-9.0.2.v20130417.jar
Binary file not shown.
Binary file removed src/web_demo/lib/jetty-io-9.0.2.v20130417.jar
Binary file not shown.
Binary file removed src/web_demo/lib/jetty-server-9.0.2.v20130417.jar
Binary file not shown.
Binary file removed src/web_demo/lib/jetty-util-9.0.2.v20130417.jar
Binary file not shown.
Binary file removed src/web_demo/lib/jetty-webapp-9.0.2.v20130417.jar
Binary file not shown.
Binary file removed src/web_demo/lib/slf4j-api-1.7.2.jar
Binary file not shown.
Binary file removed src/web_demo/lib/slf4j-simple-1.7.2.jar
Binary file not shown.
Binary file removed src/web_demo/lib/spark-core-2.0.0.jar
Binary file not shown.
Binary file removed src/web_demo/lib/spark-template-velocity-2.0.0.jar
Binary file not shown.
Binary file removed src/web_demo/lib/velocity-1.7.jar
Binary file not shown.