Skip to content

Commit 33c684e

Browse files
author
nicolaiparlog
committed
Made LibFX a Maven project.
1 parent 4e4fc6e commit 33c684e

File tree

102 files changed

+101
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+101
-73
lines changed

.classpath

Lines changed: 0 additions & 10 deletions
This file was deleted.

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,11 @@
99

1010
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1111
hs_err_pid*
12-
/bin
12+
13+
# compilation folders
14+
/bin/
15+
/target/
16+
17+
# Eclipse project information generated by Maven
18+
.classpath
19+
.project

.project

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
encoding//src/demo/java=UTF-8
3+
encoding//src/main/java=UTF-8
4+
encoding//src/test/java=UTF-8
5+
encoding/<project>=UTF-8

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonN
55
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
66
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
77
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
8+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
9+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
10+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
11+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
12+
org.eclipse.jdt.core.compiler.compliance=1.8
13+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
14+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
15+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
816
org.eclipse.jdt.core.compiler.doc.comment.support=enabled
917
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
18+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1019
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
1120
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
1221
org.eclipse.jdt.core.compiler.problem.deadCode=warning
@@ -15,13 +24,14 @@ org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
1524
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
1625
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
1726
org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
27+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
1828
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning
1929
org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning
2030
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
2131
org.eclipse.jdt.core.compiler.problem.fieldHiding=warning
2232
org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
2333
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
24-
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
34+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=ignore
2535
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
2636
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=enabled
2737
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
@@ -101,6 +111,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
101111
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
102112
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
103113
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
114+
org.eclipse.jdt.core.compiler.source=1.8
104115
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
105116
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
106117
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=16

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

Lines changed: 4 additions & 0 deletions
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

README.md

Lines changed: 12 additions & 44 deletions

lib/mockito-all-1.9.5.jar

-1.51 MB
Binary file not shown.

pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>org.codefx.libfx</groupId>
6+
<artifactId>LibFX</artifactId>
7+
<version>0.1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>LibFX</name>
11+
<url>http://libfx.codefx.org</url>
12+
<description>LibFX provides utility classes for JavaFX.</description>
13+
14+
<organization>
15+
<name>CodeFX</name>
16+
<url>http://codefx.org</url>
17+
</organization>
18+
19+
<properties>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
</properties>
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<version>4.11</version>
28+
<scope>test</scope>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.mockito</groupId>
32+
<artifactId>mockito-all</artifactId>
33+
<version>1.9.5</version>
34+
<scope>test</scope>
35+
</dependency>
36+
</dependencies>
37+
38+
<build>
39+
<resources>
40+
<resource>
41+
<directory>src/demo/java</directory>
42+
<excludes>
43+
<exclude>**/*.java</exclude>
44+
</excludes>
45+
</resource>
46+
</resources>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-compiler-plugin</artifactId>
51+
<version>3.1</version>
52+
<configuration>
53+
<source>1.8</source>
54+
<target>1.8</target>
55+
</configuration>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
60+
</project>

0 commit comments

Comments
 (0)