properties
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.yetyman</groupId> <artifactId>properties</artifactId> <version>2025.08.05.2-ALPHA</version> </dependency>
<?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> <parent> <groupId>io.github.yetyman</groupId> <artifactId>parent-pom</artifactId> <version>2025.08.05.2-ALPHA</version> </parent> <groupId>io.github.yetyman</groupId> <artifactId>properties</artifactId> <version>${project.parent.version}</version> <name>${project.artifactId}</name> <description>Sample application</description> <url>https://github.com/yetyman/${project.artifactId}</url> <inceptionYear>2025</inceptionYear> <scm> <connection>scm:git:${project.url}.git</connection> <developerConnection>scm:git:${project.url}.git</developerConnection> <url>${project.url}.git</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>${project.developer.id}</id> <name>${project.developer.name}</name> </developer> </developers> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <configuration> <flattenMode>resolveCiFriendliesOnly</flattenMode> <outputDirectory>${project.basedir}</outputDirectory> <flattenedPomFilename>.flattened-pom.xml</flattenedPomFilename> <updatePomFile>false</updatePomFile> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <classifier>win</classifier> <version>${javafx.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <classifier>linux</classifier> <version>${javafx.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>${javafx.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.yetyman</groupId> <artifactId>basic-structures</artifactId> <version>1.0-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.yetyman</groupId> <artifactId>javafx-helpers</artifactId> <version>2025.08.05.2-ALPHA</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.yetyman</groupId> <artifactId>javafx-helpers</artifactId> <version>2025.08.05.2-ALPHA</version> <scope>test</scope> </dependency> </dependencies> </project>