|
6 | 6 |
|
7 | 7 | <groupId>com.dazednconfused</groupId> |
8 | 8 | <artifactId>macatalauncher</artifactId> |
9 | | - <version>0.3.3</version> |
| 9 | + <version>0.4.0</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <maven.compiler.source>11</maven.compiler.source> |
13 | 13 | <maven.compiler.target>11</maven.compiler.target> |
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 |
|
16 | | - <sonar.organization>dazednconfused</sonar.organization> |
| 16 | + <sonar.organization>dazednconfused</sonar.organization> <!-- should match .github/workflows/sonarcloud.yml --> |
| 17 | + <sonar.projectKey>dazednconfused_macata-launcher</sonar.projectKey> <!-- ^ditto --> |
17 | 18 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
18 | | - <sonar.cpd.exclusions>**/MainWindow.java</sonar.cpd.exclusions> |
| 19 | + <sonar.cpd.exclusions>**/gui/**</sonar.cpd.exclusions> |
19 | 20 | </properties> |
20 | 21 |
|
21 | 22 | <profiles> |
|
102 | 103 | </plugin> |
103 | 104 |
|
104 | 105 | <plugin> |
105 | | - <groupId>org.apache.maven.plugins</groupId> |
106 | | - <artifactId>maven-jar-plugin</artifactId> |
107 | | - <version>3.3.0</version> |
| 106 | + <groupId>org.openjfx</groupId> |
| 107 | + <artifactId>javafx-maven-plugin</artifactId> |
| 108 | + <version>0.0.8</version> |
108 | 109 | <configuration> |
109 | | - <archive> |
110 | | - <manifest> |
111 | | - <addClasspath>true</addClasspath> |
112 | | - <mainClass>com.dazednconfused.catalauncher.Application</mainClass> |
113 | | - </manifest> |
114 | | - </archive> |
| 110 | + <mainClass>com.dazednconfused.catalauncher.Application</mainClass> |
115 | 111 | </configuration> |
116 | 112 | </plugin> |
117 | 113 |
|
|
248 | 244 | <version>3.0</version> |
249 | 245 | </dependency> |
250 | 246 |
|
| 247 | + <dependency> |
| 248 | + <groupId>li.flor</groupId> |
| 249 | + <artifactId>native-j-file-chooser</artifactId> |
| 250 | + <version>1.6.4</version> |
| 251 | + </dependency> |
| 252 | + |
| 253 | + <dependency> |
| 254 | + <groupId>org.openjfx</groupId> |
| 255 | + <artifactId>javafx-controls</artifactId> |
| 256 | + <version>19.0.2.1</version> |
| 257 | + </dependency> |
| 258 | + |
| 259 | + <dependency> |
| 260 | + <groupId>org.openjfx</groupId> |
| 261 | + <artifactId>javafx-swing</artifactId> |
| 262 | + <version>19.0.2.1</version> |
| 263 | + </dependency> |
| 264 | + |
251 | 265 | <dependency> |
252 | 266 | <groupId>org.apache.xmlgraphics</groupId> |
253 | 267 | <artifactId>batik-all</artifactId> |
|
0 commit comments