Skip to content

Commit 39a0158

Browse files
authored
Merge pull request #689 from dlsc-software-consulting-gmbh/develop
develop
2 parents 3cd4a3a + 06b2fe4 commit 39a0158

File tree

139 files changed

+1292
-1089
lines changed

Some content is hidden

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

139 files changed

+1292
-1089
lines changed

.github/workflows/macos.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: macOS
22

3-
on:
4-
push:
5-
branches: [ master ]
6-
73
jobs:
84
build:
95
runs-on: macos-latest

.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.8/apache-maven-3.8.8-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar

app/pom.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
<maven.javadoc.skip>true</maven.javadoc.skip>
1919
<gluonfx.plugin.version>1.0.25</gluonfx.plugin.version>
2020
<javafx.plugin.version>0.0.8</javafx.plugin.version>
21-
<mainClassName>com.dlsc.jfxcentral2.app.JFXCentral2MobileApp</mainClassName>
21+
<mainClassName>com.dlsc.jfxcentral2.app.JFXCentral2App</mainClassName>
22+
<mainClassName.jpro>com.dlsc.jfxcentral2.app.JFXCentral2App</mainClassName.jpro>
23+
<mainClassName.mobile>com.dlsc.jfxcentral2.app.JFXCentral2MobileApp</mainClassName.mobile>
2224
<app.description>JFXCentral for anything JavaFX</app.description>
2325
<package.type/>
2426
<mac.app.store/>
@@ -110,7 +112,7 @@
110112
</dependency>
111113

112114
<dependency>
113-
<groupId>com.sandec.jpro</groupId>
115+
<groupId>one.jpro</groupId>
114116
<artifactId>jpro-webapi</artifactId>
115117
</dependency>
116118

@@ -440,7 +442,7 @@
440442
<list>browser</list>
441443
<list>video</list>
442444
</attachList>
443-
<mainClass>${mainClassName}</mainClass>
445+
<mainClass>${mainClassName.mobile}</mainClass>
444446
<releaseConfiguration>
445447
<vendor>Gluon</vendor>
446448
<description>${app.description}</description>
@@ -471,10 +473,14 @@
471473
<artifactId>jpro-maven-plugin</artifactId>
472474
<version>${jpro.version}</version>
473475
<configuration>
474-
<mainClassName>${mainClassName}</mainClassName>
476+
<mainClassName>${mainClassName.jpro}</mainClassName>
475477
<releaseName>jfxcentral</releaseName>
476478
<localJVMArgs>-Ddevelop=false</localJVMArgs>
477479
<port>8088</port>
480+
<releasePlatforms>
481+
<platform>linux</platform>
482+
<platform>current</platform>
483+
</releasePlatforms>
478484
</configuration>
479485
</plugin>
480486

0 commit comments

Comments
 (0)