yamleditor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.tcraft</groupId> <artifactId>yamleditor</artifactId> <version>1.0.0</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> <!-- Project Information --> <name>YAML File Editor</name> <description>Parse YAML content, edit them and dump them back</description> <url>https://github.com/TD99/YamlFileEditor</url> <!-- Project License --> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <!-- Project Developers --> <developers> <developer> <id>TD99</id> <name>TD99</name> <email>admin@tcraft.ch</email> <organization>T-Craft</organization> <organizationUrl>https://tcraft.link</organizationUrl> </developer> </developers> <!-- Project Organization --> <organization> <name>T-Craft</name> <url>https://tcraft.link</url> </organization> <!-- Project Source Control Management --> <scm> <connection>scm:git:https://github.com/TD99/YamlFileEditor.git</connection> <developerConnection>scm:git:https://github.com/TD99/YamlFileEditor.git</developerConnection> <url>https://github.com/TD99/YamlFileEditor</url> <tag>yamleditor-1.0.0</tag> </scm> <!-- Project Issue Management --> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/TD99/YamlFileEditor/issues</url> </issueManagement> <!-- Maven Coordinates --> <groupId>ch.tcraft</groupId> <artifactId>yamleditor</artifactId> <version>1.0.0</version> <!-- Repositories --> <repositories> <repository> <id>sonatype-releases</id> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> </repositories> <!-- Properties --> <properties> <java.version>21</java.version> <snakeyaml.version>2.3</snakeyaml.version> <junit.jupiter.version>5.11.4</junit.jupiter.version> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version> <maven-gpg-plugin.version>3.2.3</maven-gpg-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <!-- Build Configuration --> <packaging>jar</packaging> <!-- Build Plugins --> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>