mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 19:04:49 +00:00
# Conflicts: # app/pom.xml # app/src/main/java/org/toop/app/gui/RemoteGameSelector.java # app/src/main/java/org/toop/tictactoe/LocalTicTacToe.java # app/src/main/java/org/toop/tictactoe/gui/UIGameBoard.java
93 lines
2.5 KiB
XML
93 lines
2.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.toop</groupId>
|
|
<artifactId>pism_app</artifactId>
|
|
<version>0.1</version>
|
|
|
|
<properties>
|
|
<main-class>org.toop.Main</main-class>
|
|
<maven.compiler.source>25</maven.compiler.source>
|
|
<maven.compiler.target>25</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
<version>2.46.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.toop</groupId>
|
|
<artifactId>pism_framework</artifactId>
|
|
<version>0.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.toop</groupId>
|
|
<artifactId>pism_game</artifactId>
|
|
<version>0.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>25</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.14.1</version>
|
|
<configuration>
|
|
<source>25</source>
|
|
<target>25</target>
|
|
<release>25</release>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
<version>2.46.1</version>
|
|
<configuration>
|
|
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
|
|
<ratchetFrom>origin/main</ratchetFrom>
|
|
<formats>
|
|
<!-- you can define as many formats as you want, each is independent -->
|
|
<format>
|
|
<!-- define the files to apply to -->
|
|
<includes>
|
|
<include>.gitattributes</include>
|
|
<include>.gitignore</include>
|
|
</includes>
|
|
<!-- define the steps to apply to those files -->
|
|
<trimTrailingWhitespace/>
|
|
<endWithNewline/>
|
|
<indent>
|
|
<tabs>true</tabs>
|
|
<spacesPerTab>4</spacesPerTab>
|
|
</indent>
|
|
</format>
|
|
</formats>
|
|
<!-- define a language-specific format -->
|
|
<java>
|
|
<googleJavaFormat>
|
|
<version>1.28.0</version>
|
|
<style>AOSP</style> <!-- GOOGLE (2 indents), AOSP (4 indents) -->
|
|
<reflowLongStrings>true</reflowLongStrings>
|
|
<formatJavadoc>true</formatJavadoc>
|
|
</googleJavaFormat>
|
|
</java>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |