| Group ID: |
io.github.yashchenkon |
| Artifact ID: |
assertsqlcount |
| Version: |
1.1.0 |
| Last modified: |
01.06.2018 08:50 |
| Packaging: |
jar |
| Name: |
Assert SQL Count |
| Description: |
Inspector that helps in Hibernate performance tuning |
| URL: |
https://github.io/yashchenkon/assertsqlcount |
| License: |
MIT License |
| Source: |
https://github.com/yashchenkon/assertsqlcount |
| Developers: |
Mykola Yashchenko |
|
|
| Size: |
16.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/io/github/yashchenkon/assertsqlcount/1.1.0/assertsqlcount-1.1.0.jar |
| POM: |
Show
hide
<?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>io.github.yashchenkon</groupId>
<artifactId>assertsqlcount</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>Assert SQL Count</name>
<description>Inspector that helps in Hibernate performance tuning</description>
<url>https://github.io/yashchenkon/assertsqlcount</url>
<developers>
<developer>
<id>1</id>
<name>Mykola Yashchenko</name>
<email>vkont4@gmail.com</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+2</timezone>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/YashchenkoN/assertsqlcount/blob/master/LICENSE</url>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/yashchenkon/assertsqlcount/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:yashchenkon/assertsqlcount.git</connection>
<developerConnection>scm:git:git@github.com:yashchenkon/assertsqlcount.git</developerConnection>
<url>https://github.com/yashchenkon/assertsqlcount</url>
<tag>assertsqlcount-${version}</tag>
</scm>
<properties>
<lombok-version>1.16.22</lombok-version>
<hibernate-version>5.3.0.Final</hibernate-version>
<junit-version>5.1.1</junit-version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok-version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate-version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.21.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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.0.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.6</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://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Maven: |
<dependency>
<groupId>io.github.yashchenkon</groupId>
<artifactId>assertsqlcount</artifactId>
<version>1.1.0</version>
</dependency>
|
| Gradle: |
io.github.yashchenkon:assertsqlcount:1.1.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|