-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added more module-info.java files. Replaced fontawesomefx with ikonli.
- Loading branch information
1 parent
823f3fa
commit 992f9e3
Showing
30 changed files
with
1,447 additions
and
827 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
CalendarFXExperimental/src/main/java/com/calendarfx/experimental/sampler/package-info.java
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
CalendarFXExperimental/src/main/java/impl/com/calendarfx/experimental/package-info.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module com.calendarfx.experimental { | ||
requires javafx.controls; | ||
requires com.calendarfx.view; | ||
|
||
exports com.calendarfx.experimental; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<!-- | ||
~ Copyright (C) 2017 Dirk Lemmermann Software & Consulting (dlsc.com) | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<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> | ||
<name>CalendarFXGoogle</name> | ||
<artifactId>google</artifactId> | ||
|
||
<parent> | ||
<groupId>com.calendarfx</groupId> | ||
<artifactId>calendar</artifactId> | ||
<version>11.6.4</version> | ||
</parent> | ||
|
||
<properties> | ||
<maven.deploy.skip>true</maven.deploy.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-controls</artifactId> | ||
<version>12.0.1</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.openjfx</groupId> | ||
<artifactId>javafx-web</artifactId> | ||
<version>12.0.1</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.lynden</groupId> | ||
<artifactId>GMapsFX</artifactId> | ||
<version>2.12.0</version> | ||
</dependency> | ||
|
||
<!-- Required for GMapsFX --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>2.0.0-alpha0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.calendarfx</groupId> | ||
<artifactId>view</artifactId> | ||
<version>11.6.4</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.api-client</groupId> | ||
<artifactId>google-api-client</artifactId> | ||
<version>1.22.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.api-client</groupId> | ||
<artifactId>google-api-client-java6</artifactId> | ||
<version>1.30.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.api-client</groupId> | ||
<artifactId>google-api-client-jackson2</artifactId> | ||
<version>1.30.2</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.apis</groupId> | ||
<artifactId>google-api-services-calendar</artifactId> | ||
<version>v3-rev20190609-1.30.1</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.apis</groupId> | ||
<artifactId>google-api-services-oauth2</artifactId> | ||
<version>v2-rev20190313-1.30.1</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.code.geocoder-java</groupId> | ||
<artifactId>geocoder-java</artifactId> | ||
<version>0.16</version> | ||
</dependency> | ||
|
||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<finalName>google-demo</finalName> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
<archive> | ||
<manifest> | ||
<mainClass>com.calendarfx.google.GoogleCalendarApp</mainClass> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-samples</id> <!-- this is used for inheritance merges --> | ||
<phase>package</phase> <!-- bind to the packaging phase --> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
module com.calendarfx.google { | ||
|
||
requires org.kordamp.ikonli.javafx; | ||
requires org.kordamp.ikonli.fontawesome; | ||
requires org.kordamp.iconli.core; | ||
|
||
requires com.calendarfx.view; | ||
requires javafx.base; | ||
requires com.google.api.services.calendar; | ||
requires javafx.graphics; | ||
requires de.jensd.fx.glyphs.fontawesome; | ||
requires guava.jdk5; | ||
requires org.controlsfx.controls; | ||
requires google.http.client; | ||
requires javafx.controls; | ||
requires javafx.web; | ||
requires com.google.api.services.oauth2; | ||
requires google.oauth.client; | ||
requires google.api.client; | ||
requires google.http.client.jackson2; | ||
requires geocoder.java; | ||
requires GMapsFX; | ||
requires com.google.common; | ||
requires com.google.api.client; | ||
requires com.google.api.client.auth; | ||
requires com.google.api.services.oauth2; | ||
requires com.google.api.client.json.jackson2; | ||
requires google.api.client; | ||
|
||
exports com.calendarfx.google; | ||
} |
Oops, something went wrong.