jql-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.benas</groupId> <artifactId>jql-core</artifactId> <version>0.1</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/maven-v4_0_0.xsd"> <parent> <artifactId>jql</artifactId> <groupId>io.github.benas</groupId> <version>0.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jql-core</artifactId> <scm> <connection>scm:git:git@github.com:benas/jql.git</connection> <developerConnection>scm:git:git@github.com:benas/jql.git</developerConnection> <tag>jql-0.1</tag> <url>git@github.com:benas/jql.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <transformers> <transformer> <mainClass>io.github.benas.jql.core.Indexer</mainClass> </transformer> </transformers> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.5.1</version> <scope>test</scope> </dependency> </dependencies> </project>