File tree 7 files changed +75
-4
lines changed
7 files changed +75
-4
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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 >
5
14
<classpathentry kind =" con" path =" org.eclipse.fx.ide.jdt.core.JAVAFX_CONTAINER" />
6
15
<classpathentry kind =" lib" path =" resources/lib/byte-buddy-1.8.15.jar" />
7
16
<classpathentry kind =" lib" path =" resources/lib/client-combined-3.14.0-sources.jar" />
15
24
<classpathentry kind =" lib" path =" resources/lib/httpcore-4.4.9.jar" />
16
25
<classpathentry kind =" lib" path =" resources/lib/okhttp-3.10.0.jar" />
17
26
<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" />
19
33
</classpath >
Original file line number Diff line number Diff line change 1
1
/bin /
2
+ /target /
Original file line number Diff line number Diff line change 15
15
<arguments >
16
16
</arguments >
17
17
</buildCommand >
18
+ <buildCommand >
19
+ <name >org.eclipse.m2e.core.maven2Builder</name >
20
+ <arguments >
21
+ </arguments >
22
+ </buildCommand >
18
23
</buildSpec >
19
24
<natures >
25
+ <nature >org.eclipse.m2e.core.maven2Nature</nature >
20
26
<nature >org.eclipse.xtext.ui.shared.xtextNature</nature >
21
27
<nature >org.eclipse.jdt.core.javanature</nature >
22
28
</natures >
Original file line number Diff line number Diff line change @@ -8,4 +8,6 @@ org.eclipse.jdt.core.compiler.debug.localVariable=generate
8
8
org.eclipse.jdt.core.compiler.debug.sourceFile =generate
9
9
org.eclipse.jdt.core.compiler.problem.assertIdentifier =error
10
10
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
11
13
org.eclipse.jdt.core.compiler.source =1.8
Original file line number Diff line number Diff line change
1
+ activeProfiles =
2
+ eclipse.preferences.version =1
3
+ resolveWorkspaceProjects =true
4
+ version =1
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 27
27
import javafx .scene .layout .BorderPane ;
28
28
import javafx .stage .Modality ;
29
29
import javafx .stage .Stage ;
30
+ import net .thegreshams .firebase4j .service .Firebase ;
30
31
import zapzap .main .model .Cliente ;
31
32
import zapzap .main .view .DetailsDialogController ;
32
33
import zapzap .main .view .MainViewController ;
@@ -41,7 +42,8 @@ public class MainApp extends Application {
41
42
42
43
private ObservableList <Cliente > clienteData = FXCollections .observableArrayList ();
43
44
private ObservableList <Cliente > clienteFailData = FXCollections .observableArrayList ();
44
-
45
+ private Firebase database ;
46
+
45
47
@ Override
46
48
public void start (Stage primaryStage ) {
47
49
this .primaryStage = primaryStage ;
You can’t perform that action at this time.
0 commit comments