astrum
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apiwiz.astrum</groupId> <artifactId>astrum</artifactId> <version>0.1</version> </dependency>
<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> <groupId>io.apiwiz.astrum</groupId> <artifactId>astrum</artifactId> <version>0.1</version> <modules> <module>astrum-core</module> <module>astrum-api</module> <module>astrum-cli</module> </modules> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <description> A flexible JSON/YAML linter for creating automated style guides, with baked in support for OpenAPI v2 and v3. </description> <url>https://github.com/apiwizlabs/astrum</url> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/apiwizlabs/astrum/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <name>Balaji Vijayan</name> <email>balaji.vijayan@itorix.com</email> <organization>Apiwiz</organization> <organizationUrl>https://apiwiz.io</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>RELEASE</version> </dependency> </dependencies> <scm> <connection>scm:git:git://github.com/apiwizlabs/astrum.git</connection> <developerConnection>scm:git:ssh://github.com/apiwizlabs/astrum.git</developerConnection> <url>https://github.com/apiwizlabs/astrum/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>