Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.alextim.povadka</groupId>
- <artifactId>povadka</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Povadka</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <main.class>com.alextim.Main</main.class>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <javafx.version>11</javafx.version>
- <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
- <javafx.maven.plugin.version>0.0.8</javafx.maven.plugin.version>
- <gluonfx.maven.plugin.version>1.0.19</gluonfx.maven.plugin.version>
- <gluonfx.target>host</gluonfx.target>
- <lombok.version>1.18.20</lombok.version>
- <logback.version>1.3.0-alpha14</logback.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.alextim</groupId>
- <artifactId>alfaBetaDetectorServer</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.xerial</groupId>
- <artifactId>sqlite-jdbc</artifactId>
- <version>3.42.0.0</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.postgresql</groupId>-->
- <!-- <artifactId>postgresql</artifactId>-->
- <!-- <version>42.6.0</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback.version}</version>
- </dependency>
- <dependency>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-controls</artifactId>
- <version>${javafx.version}</version>
- </dependency>
- <dependency>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-fxml</artifactId>
- <version>${javafx.version}</version>
- </dependency>
- <dependency>
- <groupId>de.gsi.chart</groupId>
- <artifactId>chartfx-chart</artifactId>
- <version>11.2.7</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-controls</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- <configuration>
- <annotationProcessorPaths>
- <annotationProcessorPath>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </annotationProcessorPath>
- </annotationProcessorPaths>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.openjfx</groupId>
- <artifactId>javafx-maven-plugin</artifactId>
- <version>${javafx.maven.plugin.version}</version>
- <configuration>
- <mainClass>${main.class}</mainClass>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.gluonhq</groupId>
- <artifactId>gluonfx-maven-plugin</artifactId>
- <version>${gluonfx.maven.plugin.version}</version>
- <configuration>
- <target>${gluonfx.target}</target>
- <mainClass>${main.class}</mainClass>
- <enableSWRendering>true</enableSWRendering>
- <nativeImageArgs>
- <arg>-Dorg.sqlite.lib.exportPath=/home/alex/IdeaProjects/</arg>
- </nativeImageArgs>
- <linkerArgs>
- <arg>
- /usr/lib/jvm/graalvm-svm-java17-linux-gluon-22.1.0.1-Final/lib/static/linux-amd64/glibc/libjaas.a
- </arg>
- </linkerArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement