Skip to content

Commit 7ad01d5

Browse files
committed
owieerrrr
1 parent 53a6ed2 commit 7ad01d5

File tree

7 files changed

+75
-4
lines changed

7 files changed

+75
-4
lines changed

.classpath

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
3+
<classpathentry including="**/*.java" kind="src" output="target/classes" path="src">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
514
<classpathentry kind="con" path="org.eclipse.fx.ide.jdt.core.JAVAFX_CONTAINER"/>
615
<classpathentry kind="lib" path="resources/lib/byte-buddy-1.8.15.jar"/>
716
<classpathentry kind="lib" path="resources/lib/client-combined-3.14.0-sources.jar"/>
@@ -15,5 +24,10 @@
1524
<classpathentry kind="lib" path="resources/lib/httpcore-4.4.9.jar"/>
1625
<classpathentry kind="lib" path="resources/lib/okhttp-3.10.0.jar"/>
1726
<classpathentry kind="lib" path="resources/lib/okio-1.14.1.jar"/>
18-
<classpathentry kind="output" path="bin"/>
27+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
28+
<attributes>
29+
<attribute name="maven.pomderived" value="true"/>
30+
</attributes>
31+
</classpathentry>
32+
<classpathentry kind="output" path="target/classes"/>
1933
</classpath>

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/bin/
2+
/target/

.project

+6
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@
1515
<arguments>
1616
</arguments>
1717
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.m2e.core.maven2Builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
1823
</buildSpec>
1924
<natures>
25+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2026
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
2127
<nature>org.eclipse.jdt.core.javanature</nature>
2228
</natures>

.settings/org.eclipse.jdt.core.prefs

+2
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ org.eclipse.jdt.core.compiler.debug.localVariable=generate
88
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
99
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1010
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
12+
org.eclipse.jdt.core.compiler.release=disabled
1113
org.eclipse.jdt.core.compiler.source=1.8

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

pom.xml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>Webzapfx</groupId>
6+
<artifactId>Webzapfx</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<repositories>
9+
<repository>
10+
<id>jitpack.io</id>
11+
<url>https://jitpack.io</url>
12+
</repository>
13+
</repositories>
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.github.bane73</groupId>
17+
<artifactId>firebase4j</artifactId>
18+
<version>8d16c12934</version>
19+
</dependency>
20+
</dependencies>
21+
<build>
22+
<sourceDirectory>src</sourceDirectory>
23+
<resources>
24+
<resource>
25+
<directory>src</directory>
26+
<excludes>
27+
<exclude>**/*.java</exclude>
28+
</excludes>
29+
</resource>
30+
</resources>
31+
<plugins>
32+
<plugin>
33+
<artifactId>maven-compiler-plugin</artifactId>
34+
<version>3.7.0</version>
35+
<configuration>
36+
<source>1.8</source>
37+
<target>1.8</target>
38+
</configuration>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
</project>

src/zapzap/main/MainApp.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import javafx.scene.layout.BorderPane;
2828
import javafx.stage.Modality;
2929
import javafx.stage.Stage;
30+
import net.thegreshams.firebase4j.service.Firebase;
3031
import zapzap.main.model.Cliente;
3132
import zapzap.main.view.DetailsDialogController;
3233
import zapzap.main.view.MainViewController;
@@ -41,7 +42,8 @@ public class MainApp extends Application {
4142

4243
private ObservableList<Cliente> clienteData = FXCollections.observableArrayList();
4344
private ObservableList<Cliente> clienteFailData = FXCollections.observableArrayList();
44-
45+
private Firebase database;
46+
4547
@Override
4648
public void start(Stage primaryStage) {
4749
this.primaryStage = primaryStage;

0 commit comments

Comments
 (0)