sfxnavigator
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.lemonsalve</groupId> <artifactId>sfxnavigator</artifactId> <version>0.0.8-BETA</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"> <artifactId>sfxnavigator</artifactId> <build> <plugins> <plugin> <artifactId>central-publishing-maven-plugin</artifactId> <configuration> <autoPublish>true</autoPublish> <publishingServerId>central</publishingServerId> </configuration> <extensions>true</extensions> <groupId>org.sonatype.central</groupId> <version>0.5.0</version> </plugin> <!-- javadoc--> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> <id>attach-javadocs</id> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> <version>3.7.0</version> </plugin> <!-- source--> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar-no-fork</goal> </goals> <id>attach-sources</id> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> <version>3.3.1</version> </plugin> <!-- pom, .asc--> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <goals> <goal>sign</goal> </goals> <id>sign-artifacts</id> <phase>verify</phase> </execution> </executions> <groupId>org.apache.maven.plugins</groupId> <version>3.2.3</version> </plugin> </plugins> </build> <dependencies> <dependency> <artifactId>lombok</artifactId> <groupId>org.projectlombok</groupId> <optional>true</optional> </dependency> <dependency> <artifactId>annotations</artifactId> <groupId>org.jetbrains</groupId> <scope>compile</scope> <version>24.0.0</version> </dependency> <dependency> <artifactId>javafx-fxml</artifactId> <groupId>org.openjfx</groupId> <scope>compile</scope> <version>22</version> </dependency> </dependencies> <description> sfx-navigator provides a navigation system to javafx </description> <developers> <developer> <email>devlemonsalve@gmail.com</email> <name>Juan José Monsalve Orozco</name> <url>https://github.com/LeMonsalve</url> </developer> </developers> <groupId>io.github.lemonsalve</groupId> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <modelVersion>4.0.0</modelVersion> <name>sfxnavigator</name> <parent> <artifactId>spring-boot-starter-parent</artifactId> <groupId>org.springframework.boot</groupId> <relativePath/> <version>3.3.5</version> </parent> <properties> <java.version>17</java.version> <maven.compiler.release>17</maven.compiler.release> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.sourceEnconding>UTF-8</maven.compiler.sourceEnconding> <maven.compiler.target>17</maven.compiler.target> </properties> <scm> <connection>scm:git:git://github.com/lemonsalve/sfxnavigator.git</connection> <developerConnection>scm:git:ssh://github.com:lemonsalve/sfxnavigator.git</developerConnection> <url>https://github.com/LeMonsalve/sfxnavigator/tree/master</url> </scm> <url>https://github.com/LeMonsalve/sfxnavigator</url> <version>0.0.8-BETA</version> </project>