This is an automated email from the ASF dual-hosted git repository. mgentry pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne-modeler.git
commit 89a84f47d985f38e46ffbcd077f8a2f8fbd262a0 Author: Michael Gentry <blackn...@gmail.com> AuthorDate: Sun Dec 19 14:19:10 2021 -0500 Version updates to make project run again. --- pom.xml | 173 +++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 100 insertions(+), 73 deletions(-) diff --git a/pom.xml b/pom.xml index 6a547d5..7090be6 100644 --- a/pom.xml +++ b/pom.xml @@ -1,69 +1,78 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor - license agreements. See the NOTICE file distributed with this work for additional - information regarding copyright ownership. The ASF licenses this file to - you 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. --> + license agreements. See the NOTICE file distributed with this work for additional + information regarding copyright ownership. The ASF licenses this file to + you 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> - <groupId>org.apache.cayenne</groupId> - <artifactId>modeler</artifactId> - <version>0.0.1-SNAPSHOT</version> - <name>Cayenne Modeler Prototype</name> + 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> + <groupId>org.apache.cayenne</groupId> + <artifactId>modeler</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>Cayenne Modeler Prototype</name> - <properties> - <cayenne.version>4.0.B1</cayenne.version> - <fontawesomefx.version>8.9</fontawesomefx.version> - <java.version>1.8</java.version> - <jfxtras.version>8.0-r4</jfxtras.version> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> + <properties> + <cayenne.version>4.0.2</cayenne.version> + <fontawesomefx.version>8.9</fontawesomefx.version> + <java.version>11</java.version> + <jfx.version>17.0.1</jfx.version> + <jfxtras.version>9.0-r1</jfxtras.version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.3.2</version> - <configuration> - <source>${java.version}</source> - <target>${java.version}</target> - </configuration> - </plugin> - </plugins> - </build> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + </configuration> + </plugin> + <plugin> + <groupId>org.openjfx</groupId> + <artifactId>javafx-maven-plugin</artifactId> + <version>0.0.8</version> + <configuration> + <mainClass>org.apache.cayenne.modeler.CayenneModeler</mainClass> + </configuration> + </plugin> + </plugins> + </build> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.11</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.17</version> - </dependency> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.11</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.17</version> + </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.25</version> </dependency> - <dependency> - <groupId>org.apache.cayenne</groupId> - <artifactId>cayenne-server</artifactId> - <version>${cayenne.version}</version> - </dependency> + <dependency> + <groupId>org.apache.cayenne</groupId> + <artifactId>cayenne-server</artifactId> + <version>${cayenne.version}</version> + </dependency> <dependency> <groupId>org.apache.cayenne</groupId> <artifactId>cayenne-jgroups</artifactId> @@ -79,25 +88,43 @@ <artifactId>cayenne-xmpp</artifactId> <version>${cayenne.version}</version> </dependency> - <dependency> - <groupId>org.apache.cayenne</groupId> - <artifactId>cayenne-project</artifactId> - <version>${cayenne.version}</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-lang3</artifactId> - <version>3.4</version> - </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2.2</version> - </dependency> - <dependency> - <groupId>de.jensd</groupId> - <artifactId>fontawesomefx</artifactId> - <version>${fontawesomefx.version}</version> - </dependency> - </dependencies> + <dependency> + <groupId>org.apache.cayenne</groupId> + <artifactId>cayenne-project</artifactId> + <version>${cayenne.version}</version> + </dependency> + <dependency> + <groupId>org.jgroups</groupId> + <artifactId>jgroups</artifactId> + <version>2.12.3.Final</version> + <!-- <version>3.6.20.Final</version> --> + <!-- <version>4.2.4.Final</version> --> + <!-- <version>5.1.9.Final</version> --> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.4</version> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2.2</version> + </dependency> + <dependency> + <groupId>org.openjfx</groupId> + <artifactId>javafx-controls</artifactId> + <version>${jfx.version}</version> + </dependency> + <dependency> + <groupId>org.openjfx</groupId> + <artifactId>javafx-fxml</artifactId> + <version>${jfx.version}</version> + </dependency> + <dependency> + <groupId>de.jensd</groupId> + <artifactId>fontawesomefx</artifactId> + <version>${fontawesomefx.version}</version> + </dependency> + </dependencies> </project>