Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Client to GluonFX #329

Merged
merged 5 commits into from
Jun 4, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Gluon Client plugin for Maven
# GluonFX plugin for Maven

The Gluon Client plugin for maven projects leverages GraalVM, OpenJDK and JavaFX 11+,
GluonFX plugin for maven leverages GraalVM, OpenJDK and JavaFX 11+,
by compiling into native code the Java Client application and all its required dependencies,
so it can directly be executed as a native application on the target platform.

[![Maven Central](https://img.shields.io/maven-central/v/com.gluonhq/client-maven-plugin)](https://search.maven.org/search?q=g:com.gluonhq%20AND%20a:client-maven-plugin)
[![Travis CI](https://api.travis-ci.org/gluonhq/client-maven-plugin.svg?branch=master)](https://travis-ci.org/gluonhq/client-maven-plugin)
[![Github Actions](https://github.com/gluonhq/client-maven-plugin/actions/workflows/build.yml/badge.svg)](https://github.com/gluonhq/client-maven-plugin/actions/workflows/build.yml)
[![BSD-3 license](https://img.shields.io/badge/license-BSD--3-%230778B9.svg)](https://opensource.org/licenses/BSD-3-Clause)

## Requirements
Expand All @@ -22,7 +22,7 @@ Check the [documentation](https://docs.gluonhq.com/) for more details about the

## Issues and Contributions ##

Issues can be reported to the [Issue tracker](https://github.com/gluonhq/client-maven-plugin/issues)
Issues can be reported to the [Issue tracker](https://github.com/gluonhq/gluonfx-maven-plugin/issues)

Contributions can be submitted via [Pull requests](https://github.com/gluonhq/client-maven-plugin/pulls),
providing you have signed the [Gluon Individual Contributor License Agreement (CLA)](https://docs.google.com/forms/d/16aoFTmzs8lZTfiyrEm8YgMqMYaGQl0J8wA0VJE2LCCY).
Contributions can be submitted via [Pull requests](https://github.com/gluonhq/gluonfx-maven-plugin/pulls),
providing you have signed the [Gluon Individual Contributor License Agreement (CLA)](https://cla.gluonhq.com).
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gluonhq</groupId>
<artifactId>client-maven-plugin</artifactId>
<artifactId>gluonfx-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>0.1.42-SNAPSHOT</version>
<name>client-maven-plugin Maven Mojo</name>
<description>The Gluon Client Plugin is used to run JavaFX 11+ projects with Graal</description>
<version>0.9.0-SNAPSHOT</version>
<name>gluonfx-maven-plugin Maven Mojo</name>
<description>GluonFX plugin allows to run JavaFX application on the JVM or to create their native images.</description>
<inceptionYear>2019</inceptionYear>
<url>https://github.com/gluonhq/client-maven-plugin</url>
<url>https://github.com/gluonhq/gluonfx-maven-plugin</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -241,7 +241,7 @@

<issueManagement>
<system>GitHub</system>
<url>https://github.com/gluonhq/client-maven-plugin/issues</url>
<url>https://github.com/gluonhq/gluonfx-maven-plugin/issues</url>
</issueManagement>

<licenses>
Expand All @@ -268,9 +268,9 @@
</developers>

<scm>
<url>https://github.com/gluonhq/client-maven-plugin</url>
<connection>scm:git:git://github.com/gluonhq/client-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com:gluonhq/client-maven-plugin.git</developerConnection>
<url>https://github.com/gluonhq/gluonfx-maven-plugin</url>
<connection>scm:git:git://github.com/gluonhq/gluonfx-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com:gluonhq/gluonfx-maven-plugin.git</developerConnection>
</scm>

<distributionManagement>
Expand Down