speedy-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.silentsamurai</groupId> <artifactId>speedy-core</artifactId> <version>3.1.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>com.github.silentsamurai</groupId> <artifactId>speedy-api-parent</artifactId> <version>3.1.5</version> </parent> <artifactId>speedy-core</artifactId> <name>speedy-core</name> <packaging>jar</packaging> <properties> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <!-- <dependency>--> <!-- <groupId>${project.parent.groupId}</groupId>--> <!-- <artifactId>antlr-parser</artifactId>--> <!-- <version>${project.parent.version}</version>--> <!-- </dependency>--> <dependency> <groupId>${project.parent.groupId}</groupId> <artifactId>speedy-commons</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-models</artifactId> <version>2.2.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.0.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq</artifactId> <!-- <version>3.19.8</version>--> <scope>compile</scope> </dependency> <dependency> <groupId>org.jooq</groupId> <artifactId>jooq-meta</artifactId> <!-- <version>3.16.0</version>--> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jsqlparser</groupId> <artifactId>jsqlparser</artifactId> <version>4.6</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.parent.groupId}</groupId> <artifactId>speedy-java-client</artifactId> <version>${project.parent.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>