bloge-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.leanowtech.bloge</groupId>
<artifactId>bloge-core</artifactId>
<version>0.3.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.leanowtech.bloge</groupId>
<artifactId>bloge-parent</artifactId>
<version>0.3.1</version>
</parent>
<artifactId>bloge-core</artifactId>
<name>BLOGE Core</name>
<description>Core engine with zero external dependencies (java.base only)</description>
<url>https://bloge.leanowtech.com/docs</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>LeanowTech Developers</name>
<email>developers@leanowtech.com</email>
<organization>LeanowTech</organization>
<organizationUrl>https://www.leanowtech.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/leanowtech/bloge.git</connection>
<developerConnection>scm:git:ssh://github.com:leanowtech/bloge.git</developerConnection>
<url>https://github.com/leanowtech/bloge</url>
</scm>
<properties>
<jacoco.check.skip>false</jacoco.check.skip>
<jacoco.check.line.minimum>0.75</jacoco.check.line.minimum>
<jacoco.check.branch.minimum>0.60</jacoco.check.branch.minimum>
</properties>
<dependencies>
<!-- Zero compile-scope external dependencies -->
<!-- Test only -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
</path>
<path>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>