cranberry
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ololx</groupId>
<artifactId>cranberry</artifactId>
<version>0.5.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.ololx</groupId>
<artifactId>cranberry</artifactId>
<version>0.5.3</version>
<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>The cranberry is a java library that allows to write less code - it's automatically
plugs into your project build and sweets up your java.</description>
<url>https://ololx.github.io/CRANBERRY</url>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments></comments>
</license>
</licenses>
<developers>
<developer>
<id>ololx</id>
<name>Alexander A. Kropotin</name>
<email>ololx@icloud.com</email>
<roles>
<role>author</role>
<role>developer</role>
</roles>
</developer>
</developers>
<prerequisites>
<maven>3.3.1</maven>
</prerequisites>
<modules>
<module>/cranberry-commons</module>
<module>/cranberry-statement</module>
<module>/cranberry-logging</module>
<module>/cranberry-muffin</module>
</modules>
<scm>
<connection>scm:git:git://github.com/cranberry.git</connection>
<developerConnection>scm:git:ssh://github.com:ololx/cranberry.git</developerConnection>
<url>http://github.com/ololx/cranberry</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ololx/cranberry/issues</url>
</issueManagement>
<ciManagement>
<system>Github Actions</system>
<url>https://github.com/ololx/cranberry/actions</url>
<notifiers>
<notifier>
<address>ololx@icloud.com</address>
</notifier>
</notifiers>
</ciManagement>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Sonatype Nexus Staging Repository</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<name>Sonatype Nexus Snapshots Repository</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<plugin.maven-jar-plugin.version>3.1.1</plugin.maven-jar-plugin.version>
<plugin.maven.javadoc.ver>3.3.1</plugin.maven.javadoc.ver>
<plugin.maven-dependency-plugin.version>3.1.1</plugin.maven-dependency-plugin.version>
<plugin.maven-verifier-plugin.version>1.1</plugin.maven-verifier-plugin.version>
<java.version>1.8</java.version>
<plugin.flatten-maven-plugin.version>1.2.7</plugin.flatten-maven-plugin.version>
<plugin.maven-checkstyle-plugin.version>2.17</plugin.maven-checkstyle-plugin.version>
<plugin.nexus.staging.ver>1.6.8</plugin.nexus.staging.ver>
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
<plugin.maven-compiler-plugin.version>3.8.1</plugin.maven-compiler-plugin.version>
<plugin.versions-maven-plugin.version>2.5</plugin.versions-maven-plugin.version>
<plugin.maven-clean-plugin.version>3.1.0</plugin.maven-clean-plugin.version>
<revision>0.5.3</revision>
<sha1></sha1>
<plugin.maven-enforcer-plugin.version>3.0.0-M2</plugin.maven-enforcer-plugin.version>
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
<changelist></changelist>
<plugin.jacoco-maven-plugin.version>0.8.6</plugin.jacoco-maven-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.ololx.cranberry</groupId>
<artifactId>cranberry-muffin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.ololx.cranberry</groupId>
<artifactId>cranberry-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.ololx.cranberry</groupId>
<artifactId>cranberry-statement</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.ololx.cranberry</groupId>
<artifactId>cranberry-logging</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.ololx.cranberry</groupId>
<artifactId>cranberry-tests</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${plugin.nexus.staging.ver}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.maven.source.ver}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.maven.javadoc.ver}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>${java.version}</source>
<detectJavaApiLink>false</detectJavaApiLink>
<show>protected</show>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${plugin.maven.gpg.ver}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>0x803FF391</keyname>
<passphraseServerId>0x803FF391</passphraseServerId>
</configuration>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${plugin.maven-checkstyle-plugin.version}</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>6.19</version>
</dependency>
</dependencies>
<configuration>
<excludes>**/generated/**/*</excludes>
<configLocation>check_style_google_rules.xml</configLocation>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<encoding>${project.build.sourceEncoding}</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<linkXRef>false</linkXRef>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${plugin.versions-maven-plugin.version}</version>
<configuration>
<rulesUri>file://${user.dir}/check_dependency_versions_rules.xml</rulesUri>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${plugin.maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<banDuplicatePomDependencyVersions />
<requireMavenVersion>
<version>3.3.1</version>
<message>Invalid Maven version. It should, at least, be 3.1.1</message>
</requireMavenVersion>
<requireJavaVersion>
<version>1.8</version>
<message>Invalid Maven version. It should be 1.8</message>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-verifier-plugin</artifactId>
<version>${plugin.maven-verifier-plugin.version}</version>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${plugin.flatten-maven-plugin.version}</version>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${plugin.jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>default-instrument</id>
<goals>
<goal>instrument</goal>
</goals>
</execution>
<execution>
<id>default-restore-instrumented-classes</id>
<goals>
<goal>restore-instrumented-classes</goal>
</goals>
</execution>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<excludes>
<exclude>*</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
<configuration>
<dataFileIncludes>
<dataFileInclude>**/jacoco.exec</dataFileInclude>
</dataFileIncludes>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>${plugin.maven-clean-plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.maven-compiler-plugin.version}</version>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</execution>
<execution>
<id>compile-project</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${plugin.maven-jar-plugin.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>develop</id>
<modules>
<module>/cranberry-commons</module>
<module>/cranberry-statement</module>
<module>/cranberry-logging</module>
<module>/cranberry-muffin</module>
<module>/cranberry-tests</module>
</modules>
</profile>
</profiles>
</project>