yaml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.asux</groupId> <artifactId>yaml</artifactId> <version>1.1</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> <name>${project.groupId}:${project.artifactId}</name> <groupId>org.asux</groupId> <artifactId>yaml</artifactId> <version>1.1</version> <packaging>jar</packaging> <!-- v1.1 Switched from org.apache.commons.cli to ALTLR4, to parse command-lines. Major simplification changes to CmdLineArgs and it subclasses --> <!-- v1.0 Original release. Robust code base. Well tested for both SnakeYAML and EsotericSoftware-based ContainerImpl --> <inceptionYear>2019</inceptionYear> <description>Cmdline interface to process YAML files, leveraging the brilliantly robust gitbub project github.com:esotericsoftware/yamlbeans.git (which is a Java object graphs, to and from YAML)</description> <url>https://ASUX.org</url> <parent> <groupId>org.asux</groupId> <artifactId>MavenCentralRepo-TopLevelPOM</artifactId> <version>3.2</version> <relativePath>../org.ASUX.pom/pom-MavenCentralRepo-TopLevelParent.xml</relativePath> <!-- EVEN tho' PARENT-POM is in .M2 REPOSITORY... I'm forced to use RELATIVEPATH. The reason? The following MAVEN output --> <!-- [WARNING] Some problems were encountered while building the effective model for org.asux:common:jar:1.0 [WARNING] 'parent.relativePath' of POM org.asux:common:1.0 (/Users/Sarma/Documents/Development/src/org.ASUX/org.ASUX.common/pom.xml) points at org.asux:mvn-shade-uber-jar instead of org.asux:TopLevelPOM, please verify your project structure @ line 17, column 10 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. --> </parent> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <!-- =========================================================== --> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <licenses> <license> <name>BSD 3-Clause License</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Udaybhaskar Sarma Seetamraju</name> <email>tosarma@gmail.com</email> <organization>ASUX.org</organization> <organizationUrl>https://ASUX.org</organizationUrl> <roles> <role>Developer</role> </roles> <timezone>0</timezone> </developer> </developers> <contributors> </contributors> <scm> <url>http://github.com/org-asux/org.ASUX.yaml.git</url> <connection>scm:git:git@github.com:org-asux/org.ASUX.yaml.git</connection> <developerConnection>scm:git:git@github.com:org-asux/org.ASUX.yaml.git</developerConnection> <tag>HEAD</tag> </scm> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <!-- =========================================================== --> <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ --> <dependencies> <dependency> <groupId>org.asux</groupId> <artifactId>common</artifactId> </dependency> <dependency> <groupId>org.asux</groupId> <artifactId>language.antlr4</artifactId> </dependency> <!-- https://tomassetti.me/domain-specific-languages/#textual_languages --> <!-- /htdocs/Manuals/GNU-OSS-FOSS/ANTLR_Mega_Tutorial.pdf --> <!-- https://mvnrepository.com/artifact/org.antlr/antlr4 --> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> <!-- <version>4.7.2</version> --> <!-- <scope>compile</scope> --> </dependency> <!-- https://mvnrepository.com/artifact/commons-cli/commons-cli --> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/com.opencsv/opencsv --> <dependency> <groupId>com.opencsv</groupId> <artifactId>opencsv</artifactId> </dependency> <!-- https://www.baeldung.com/jackson-object-mapper-tutorial --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <!-- JUNIT5 junit5 --> <!-- <dependency>--> <!-- <groupId>org.junit.vintage</groupId>--> <!-- <artifactId>junit-vintage-engine</artifactId>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>org.junit.jupiter</groupId>--> <!-- <artifactId>junit-jupiter-api</artifactId>--> <!-- <scope>compile</scope>--> <!-- </dependency>--> </dependencies> </project>