zeus-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.brihaspathee.zeus</groupId> <artifactId>zeus-library</artifactId> <version>3.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> <groupId>com.brihaspathee.zeus</groupId> <artifactId>zeus-library</artifactId> <version>3.0.0</version> <packaging>jar</packaging> <name>zeus-library</name> <description>Common Classes for all Zeus Microservices</description> <url>http://www.brihaspathee.com</url> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> </properties> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/Zeus-2-0/zeus-library.git</connection> <!-- <developerConnection>scm:git:ssh://github.com:Zeus-2-0/zeus-library.git</developerConnection>--> <developerConnection>scm:git:git@github.com:Zeus-2-0/zeus-library.git</developerConnection> <url>scm:git:http://github.com/Zeus-2-0/zeus-library</url> <tag>zeus-library-2.0.21</tag> </scm> <developers> <developer> <name>Balaji Varadharajan</name> <email>vbalaji215@outlook.com</email> <organization>Zeus</organization> <organizationUrl>http://www.brihaspathee.com</organizationUrl> </developer> </developers> <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> <dependencies> <!-- <dependency>--> <!-- <groupId>org.springframework</groupId>--> <!-- <artifactId>spring-web</artifactId>--> <!-- <version>5.3.14</version>--> <!-- <scope>compile</scope>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>org.springdoc</groupId>--> <!-- <artifactId>springdoc-openapi-ui</artifactId>--> <!-- <version>1.5.12</version>--> <!-- </dependency>--> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.32</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>json-schema-validator</artifactId> <version>1.0.66</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.13.3</version> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.9.3</version> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-generator</artifactId> <version>4.35.0</version> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jakarta-validation</artifactId> <version>4.36.0</version> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jackson</artifactId> <version>4.35.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>21</source> <target>21</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <!-- <plugin>--> <!-- <groupId>org.sonatype.plugins</groupId>--> <!-- <artifactId>nexus-staging-maven-plugin</artifactId>--> <!-- <version>1.6.7</version>--> <!-- <extensions>true</extensions>--> <!-- <configuration>--> <!-- <serverId>ossrh</serverId>--> <!-- <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>--> <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>--> <!-- </configuration>--> <!-- <dependencies>--> <!-- <!–--> <!-- TODO:--> <!-- Remove after OSSRH-66257, NEXUS-26993 are fixed,--> <!-- possibly via https://github.com/sonatype/nexus-maven-plugins/pull/91--> <!-- –>--> <!-- <dependency>--> <!-- <groupId>com.thoughtworks.xstream</groupId>--> <!-- <artifactId>xstream</artifactId>--> <!-- <version>1.4.15</version>--> <!-- </dependency>--> <!-- </dependencies>--> <!-- </plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</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>3.3.0</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>1.5</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>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>com.github.victools</groupId> <artifactId>jsonschema-maven-plugin</artifactId> <version>4.35.0</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <packageNames> <packageName>com.brihaspathee.zeus.broker.message.request</packageName> <packageName>com.brihaspathee.zeus.broker.message.response</packageName> </packageNames> <classNames> <className>com.brihaspathee.zeus.broker.message.request.BillingUpdateRequest</className> <className>com.brihaspathee.zeus.broker.message.response.BillingUpdateResponse</className> </classNames> <schemaVersion>DRAFT_2020_12</schemaVersion> <schemaFilePath>src/main/resources/schemas/</schemaFilePath> <schemaFileName>{1}/{0}.json</schemaFileName> <failIfNoClassesMatch>true</failIfNoClassesMatch> <options> <preset>PLAIN_JSON</preset> <enabled> <option>DEFINITIONS_FOR_ALL_OBJECTS</option> <option>FORBIDDEN_ADDITIONAL_PROPERTIES_BY_DEFAULT</option> </enabled> <disabled>SCHEMA_VERSION_INDICATOR</disabled> </options> <modules> <module> <name>Jackson</name> <options> <option>RESPECT_JSONPROPERTY_REQUIRED</option> </options> </module> <module> <name>JakartaValidation</name> <options> <option>NOT_NULLABLE_FIELD_IS_REQUIRED</option> <option>INCLUDE_PATTERN_EXPRESSIONS</option> </options> </module> </modules> </configuration> </plugin> </plugins> </build> </project>