Skip to content

Commit 4742d93

Browse files
committed
Ready for beta
1 parent f3c7da2 commit 4742d93

File tree

2 files changed

+278
-0
lines changed

2 files changed

+278
-0
lines changed

.idea/workspace.xml

+146
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dependency-reduced-pom.xml

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>idaesbasic</groupId>
5+
<artifactId>idaesbasic</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<build>
8+
<plugins>
9+
<plugin>
10+
<groupId>org.openjfx</groupId>
11+
<artifactId>javafx-maven-plugin</artifactId>
12+
<version>0.0.8</version>
13+
<configuration>
14+
<mainClass>idaesbasic/org.idaesbasic.Main</mainClass>
15+
<jlinkImageName>idaesbasic</jlinkImageName>
16+
<jlinkZipName>idaesbasic</jlinkZipName>
17+
<compress>2</compress>
18+
<noHeaderFiles>true</noHeaderFiles>
19+
<noManPages>true</noManPages>
20+
<launcher>idaesbasic</launcher>
21+
</configuration>
22+
</plugin>
23+
<plugin>
24+
<groupId>org.panteleyev</groupId>
25+
<artifactId>jpackage-maven-plugin</artifactId>
26+
<version>1.4.0</version>
27+
<configuration>
28+
<name>Idaesbasic</name>
29+
<appVersion>0.8.0</appVersion>
30+
<vendor>org.herbst</vendor>
31+
<destination>target/dist</destination>
32+
<module>idaesbasic/org.idaesbasic.Main</module>
33+
<runtimeImage>target/idaesbasic</runtimeImage>
34+
<linuxShortcut>true</linuxShortcut>
35+
<linuxPackageName>idaesbasic</linuxPackageName>
36+
<linuxAppCategory>Utilities</linuxAppCategory>
37+
<linuxMenuGroup>Utilities</linuxMenuGroup>
38+
<icon>${project.basedir}/icon.png</icon>
39+
<javaOptions>
40+
<option>-Dfile.encoding=UTF-8</option>
41+
</javaOptions>
42+
<winMenu>true</winMenu>
43+
<winPerUserInstall>true</winPerUserInstall>
44+
</configuration>
45+
</plugin>
46+
<plugin>
47+
<groupId>org.jetbrains.kotlin</groupId>
48+
<artifactId>kotlin-maven-plugin</artifactId>
49+
<version>${kotlin.version}</version>
50+
<executions>
51+
<execution>
52+
<id>compile</id>
53+
<phase>compile</phase>
54+
<goals>
55+
<goal>compile</goal>
56+
</goals>
57+
</execution>
58+
<execution>
59+
<id>test-compile</id>
60+
<phase>test-compile</phase>
61+
<goals>
62+
<goal>test-compile</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
<configuration>
67+
<jvmTarget>16</jvmTarget>
68+
</configuration>
69+
</plugin>
70+
<plugin>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<executions>
73+
<execution>
74+
<id>compile</id>
75+
<phase>compile</phase>
76+
<goals>
77+
<goal>compile</goal>
78+
</goals>
79+
</execution>
80+
<execution>
81+
<id>testCompile</id>
82+
<phase>test-compile</phase>
83+
<goals>
84+
<goal>testCompile</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
<configuration>
89+
<source>16</source>
90+
<target>16</target>
91+
</configuration>
92+
</plugin>
93+
<plugin>
94+
<artifactId>maven-shade-plugin</artifactId>
95+
<version>3.2.4</version>
96+
<executions>
97+
<execution>
98+
<phase>package</phase>
99+
<goals>
100+
<goal>shade</goal>
101+
</goals>
102+
<configuration>
103+
<transformers>
104+
<transformer>
105+
<mainClass>org.idaesbasic.Main</mainClass>
106+
</transformer>
107+
</transformers>
108+
</configuration>
109+
</execution>
110+
</executions>
111+
</plugin>
112+
</plugins>
113+
</build>
114+
<dependencies>
115+
<dependency>
116+
<groupId>com.calendarfx</groupId>
117+
<artifactId>calendar</artifactId>
118+
<version>11.10.1</version>
119+
<type>pom</type>
120+
<scope>compile</scope>
121+
</dependency>
122+
<dependency>
123+
<groupId>org.jetbrains.kotlin</groupId>
124+
<artifactId>kotlin-test</artifactId>
125+
<version>1.6.0-RC</version>
126+
<scope>test</scope>
127+
</dependency>
128+
</dependencies>
129+
<properties>
130+
<kotlin.version>1.6.0-RC</kotlin.version>
131+
</properties>
132+
</project>

0 commit comments

Comments
 (0)