orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.tangly</groupId> <artifactId>orm</artifactId> <version>0.2.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>net.tangly</groupId> <artifactId>orm</artifactId> <version>0.2.5</version> <name>net.tangly.orm</name> <description>Object Relation Database Mapper - using Java 14 or higher (tangly llc)</description> <url>https://tangly-team.bitbucket.io/</url> <inceptionYear>1996</inceptionYear> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>marcelbaumann</id> <name>Marcel Baumann</name> <email>marcel.baumann@tangly.net</email> <organization>tangly llc</organization> <organizationUrl>https://www.tangly.net</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://bitbucket.org/tangly-team/tangly-os.git</connection> <developerConnection>scm:git:https://bitbucket.org/tangly-team/tangly-os.git</developerConnection> <url>https://bitbucket.org/tangly-team/tangly-os.git</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.0-alpha1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>20.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.tangly</groupId> <artifactId>commons</artifactId> <version>0.2.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.tangly</groupId> <artifactId>bus</artifactId> <version>0.2.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.5.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.11.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-parameter-names</artifactId> <version>2.11.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <version>2.11.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.11.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.0-alpha1</version> <scope>runtime</scope> </dependency> </dependencies> </project>