k2-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.katari</groupId>
<artifactId>k2-core</artifactId>
<version>0.1.13</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/xsd/maven-4.0.0.xsd">
<!-- The core pom. -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.katari</groupId>
<artifactId>k2-parent</artifactId>
<version>0.1.13</version>
<relativePath>../k2-parent/pom.xml</relativePath>
</parent>
<artifactId>k2-core</artifactId>
<packaging>jar</packaging>
<name>K2 core</name>
<dependencies>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Logging dependencies. -->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Spring related dependencies. -->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Web related dependencies (even from spring) -->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Apache commons related dependencies -->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<scope>test</scope>
</dependency>
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Test dependencies -->
<!-- ++++++++++++++++++++++++++++++++++++++++++++++ -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<useTestClasspath>true</useTestClasspath>
<folders><folder>target/test-classes</folder></folders>
<mainClass>com.k2.core.ApplicationTest$WebApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<!-- vim: set ts=2 et sw=2 ai: -->
</project>