yosql-tooling-dagger
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>wtf.metio.yosql.tooling</groupId> <artifactId>yosql-tooling-dagger</artifactId> <version>2023.5.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level ~ directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql, ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained ~ in the LICENSE file. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PARENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Inheritance --> <parent> <groupId>wtf.metio.yosql.tooling</groupId> <artifactId>yosql-tooling</artifactId> <version>2023.5.3</version> </parent> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- COORDINATES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> <artifactId>yosql-tooling-dagger</artifactId> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- INFORMATIONS --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#More_Project_Information --> <name>YoSQL :: Tooling :: Dagger</name> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- DEPENDENCIES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Dependencies --> <dependencies> <dependency> <groupId>wtf.metio.yosql.internals</groupId> <artifactId>yosql-internals-jdk-utils</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>wtf.metio.yosql.codegen</groupId> <artifactId>yosql-codegen</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ch.qos.cal10n</groupId> <artifactId>cal10n-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-ext</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger</artifactId> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger-compiler</artifactId> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-metadata-jvm</artifactId> </exclusion> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </exclusion> <exclusion> <groupId>com.google.dagger</groupId> <artifactId>dagger-spi</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger-producers</artifactId> </dependency> <dependency> <groupId>com.google.dagger</groupId> <artifactId>dagger-spi</artifactId> <exclusions> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </exclusion> <exclusion> <groupId>com.google.devtools.ksp</groupId> <artifactId>symbol-processing-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> <dependency> <groupId>wtf.metio.yosql.internals</groupId> <artifactId>yosql-internals-junit5-utils</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>