innoq-oss-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.innoq</groupId> <artifactId>innoq-oss-parent</artifactId> <version>3</version> </dependency>
<?xml version="1.0"?> <!-- Copyright (C) 2012,2015.2025 innoQ Deutschland GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.innoq</groupId> <artifactId>innoq-oss-parent</artifactId> <packaging>pom</packaging> <version>3</version> <name>innoq-oss-parent</name> <description>Parent POM for INNOQ's Open Source Java Projects</description> <url>https://github.com/innoq/innoQ-OSS-resources</url> <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> </license> </licenses> <organization> <name>innoQ Deutschland GmbH</name> <url>http://innoq.com/</url> </organization> <!-- information of this POM, child project's must override this --> <scm> <connection>scm:git:git@github.com:innoq/innoQ-OSS-resources.git</connection> <developerConnection>scm:git:git@github.com:innoq/innoQ-OSS-resources.git</developerConnection> <url>git@github.com:innoq/innoQ-OSS-resources.git</url> </scm> <developers> <developer> <id>bodewig</id> <name>Stefan Bodewig</name> <email>stefan.bodewig@innoq dot com</email> </developer> </developers> <properties> <maven.central.publishing.plugin>0.7.0</maven.central.publishing.plugin> <maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version> <maven.gpg.plugin.version>3.2.7</maven.gpg.plugin.version> <maven.javadoc.plugin.version>3.11.2</maven.javadoc.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>sonatype-central-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${maven.central.publishing.plugin}</version> <extensions>true</extensions> <configuration> <publishingServerId>sonatype-central</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-no-snapshots</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireReleaseDeps> <message>No Snapshots Allowed!</message> </requireReleaseDeps> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>