ike-base-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>network.ike</groupId>
<artifactId>ike-base-parent</artifactId>
<version>3</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>network.ike</groupId>
<artifactId>ike-base-parent</artifactId>
<version>3</version>
<packaging>pom</packaging>
<name>IKE Base Parent</name>
<description>Tier 0 foundation parent for the IKE Network — the apex of the
parent inheritance forest, inherited by ike-tooling, ike-docs,
and ike-platform. Carries shared publishing metadata, GPG
signing, and Maven Central publishing configuration.</description>
<url>https://ike.network/ike-base-parent/</url>
<inceptionYear>2026</inceptionYear>
<organization>
<name>IKE Network</name>
<url>https://ike.network</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>IKE Network Team</name>
<email>dev@ike.network</email>
<organization>IKE Network</organization>
<organizationUrl>https://ike.network</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/IKE-Network/ike-base-parent.git</connection>
<developerConnection>scm:git:git@github.com:IKE-Network/ike-base-parent.git</developerConnection>
<url>https://github.com/IKE-Network/ike-base-parent</url>
</scm>
<distributionManagement>
<repository>
<id>ike-staging</id>
<url>https://nexus.tinkar.org/repository/ike-staging/</url>
</repository>
<snapshotRepository>
<id>ike-snapshots</id>
<url>https://nexus.tinkar.org/repository/ike-snapshots/</url>
</snapshotRepository>
<site>
<id>ike-site</id>
<url>https://ike.network/ike-base-parent/</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
<jreleaser-maven-plugin.version>1.24.0</jreleaser-maven-plugin.version>
<ike.javadoc.doclint>all,-missing</ike.javadoc.doclint>
<ike.javadoc.failOnWarnings>false</ike.javadoc.failOnWarnings>
<ike.publishToCentral>true</ike.publishToCentral>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
<dependencies>
<dependency>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>maven-skin-tools</artifactId>
<version>1.7.00</version>
<exclusions>
<exclusion>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<version>25.0.2</version>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>js</artifactId>
<version>25.0.2</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-parser-doxia-module</artifactId>
<version>3.2.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>${jreleaser-maven-plugin.version}</version>
<configuration>
<jreleaser>
<signing>
<active>NEVER</active>
</signing>
<deploy>
<maven>
<mavenCentral>
<sonatype>
<active>RELEASE</active>
<url>https://central.sonatype.com/api/v1/publisher</url>
<stagingRepositories>
<stagingRepository>target/staging-deploy</stagingRepository>
</stagingRepositories>
<applyMavenCentralRules>true</applyMavenCentralRules>
<sign>false</sign>
</sonatype>
</mavenCentral>
</maven>
</deploy>
</jreleaser>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>signArtifacts</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<signer>bc</signer>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclint>${ike.javadoc.doclint}</doclint>
<failOnWarnings>${ike.javadoc.failOnWarnings}</failOnWarnings>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>