Skip to content

Commit

Permalink
Ready for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
BenHerbst committed Nov 6, 2021
1 parent f3c7da2 commit 4742d93
Show file tree
Hide file tree
Showing 2 changed files with 278 additions and 0 deletions.
146 changes: 146 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

132 changes: 132 additions & 0 deletions dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>idaesbasic</groupId>
<artifactId>idaesbasic</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>idaesbasic/org.idaesbasic.Main</mainClass>
<jlinkImageName>idaesbasic</jlinkImageName>
<jlinkZipName>idaesbasic</jlinkZipName>
<compress>2</compress>
<noHeaderFiles>true</noHeaderFiles>
<noManPages>true</noManPages>
<launcher>idaesbasic</launcher>
</configuration>
</plugin>
<plugin>
<groupId>org.panteleyev</groupId>
<artifactId>jpackage-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<name>Idaesbasic</name>
<appVersion>0.8.0</appVersion>
<vendor>org.herbst</vendor>
<destination>target/dist</destination>
<module>idaesbasic/org.idaesbasic.Main</module>
<runtimeImage>target/idaesbasic</runtimeImage>
<linuxShortcut>true</linuxShortcut>
<linuxPackageName>idaesbasic</linuxPackageName>
<linuxAppCategory>Utilities</linuxAppCategory>
<linuxMenuGroup>Utilities</linuxMenuGroup>
<icon>${project.basedir}/icon.png</icon>
<javaOptions>
<option>-Dfile.encoding=UTF-8</option>
</javaOptions>
<winMenu>true</winMenu>
<winPerUserInstall>true</winPerUserInstall>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>16</jvmTarget>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.idaesbasic.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.calendarfx</groupId>
<artifactId>calendar</artifactId>
<version>11.10.1</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test</artifactId>
<version>1.6.0-RC</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<kotlin.version>1.6.0-RC</kotlin.version>
</properties>
</project>

0 comments on commit 4742d93

Please sign in to comment.