docktailor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.enosistudio</groupId> <artifactId>docktailor</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.enosistudio</groupId> <artifactId>docktailor</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <!-- Metadata for project --> <name>docktailor</name> <description> Docktailor is a lightweight JavaFX framework for building modern user interfaces with detachable and dockable windows. Inspired by the docking systems used in professional IDEs. </description> <url>https://github.com/Voidstack/docktailor</url> <inceptionYear>2025</inceptionYear> <!-- License for project --> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <!-- Developer for project --> <developers> <developer> <id>voidstack</id> <name>Baptiste Martin</name> <email>baptiste.martin56@outlook.fr</email> </developer> </developers> <!-- SCM for link repository --> <scm> <connection>scm:git:git://github.com/Voidstack/docktailor.git</connection> <developerConnection>scm:git:ssh://github.com:Voidstack/docktailor.git</developerConnection> <url>https://github.com/Voidstack/docktailor</url> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.14.0</junit.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-bom</artifactId> <version>2.25.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.42</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>26-ea+11</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>26-ea+11</version> </dependency> <dependency> <groupId>com.enosistudio</groupId> <artifactId>r-for-maven</artifactId> <version>1.0.2</version> </dependency> <!-- JUNIT --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>net.yetihafen</groupId> <artifactId>javafx-customcaption</artifactId> <version>1.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.enosistudio</groupId> <artifactId>r-for-maven</artifactId> <version>1.0.2</version> <configuration> <packageName>generated</packageName> <outputSrcDirectory>src.main.java.com.enosistudio.docktailor</outputSrcDirectory> </configuration> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.1</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.12.0</version> <executions> <execution> <id>attach-javadocs</id> <goals><goal>jar</goal></goals> </execution> </executions> <configuration> <failOnError>false</failOnError> </configuration> </plugin> <!-- Central Publishing for deploy on Maven Central --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.9.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <!-- GPG for sign artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>