1 <?xml version="1.0" encoding="UTF-8"?>
4 This file is part of maven-build-process. It is subject to the license terms in the LICENSE file found in the top-level
5 directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of maven-build-process,
6 including this file, may be copied, modified, propagated, or distributed except according to the terms contained
10 <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">
11 <modelVersion>4.0.0</modelVersion>
13 <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18 <!-- https://maven.apache.org/pom.html#Inheritance -->
20 <groupId>de.xn--ho-hia.maven</groupId>
21 <artifactId>maven-mixins</artifactId>
22 <version>0.0.0-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>maven-mixins-maven-central</artifactId>
30 <packaging>pom</packaging>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>Maven Mixins :: Maven Central</name>
37 <description>Prepares the build to deploy into Maven Central through Sonatype OSSRH</description>
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42 <!-- https://maven.apache.org/pom.html#Properties -->
44 <version.m-source-p>3.0.0</version.m-source-p>
45 <version.m-javadoc-p>2.10.3</version.m-javadoc-p>
46 <version.m-jar-p>2.6</version.m-jar-p>
49 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
51 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
52 <!-- https://maven.apache.org/pom.html#Build -->
54 <!-- https://maven.apache.org/pom.html#Plugin_Management -->
56 <!-- https://maven.apache.org/pom.html#Plugins -->
60 <!-- https://maven.apache.org/plugins/maven-source-plugin/ -->
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-source-plugin</artifactId>
63 <version>${version.m-source-p}</version>
65 <!-- https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html#archive -->
67 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
72 <id>attach-sources</id>
75 <!-- https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html -->
76 <goal>jar-no-fork</goal>
83 <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/ -->
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-javadoc-plugin</artifactId>
86 <version>${version.m-javadoc-p}</version>
88 <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/jar-mojo.html#archive -->
90 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
95 <id>attach-javadocs</id>
97 <!-- https://maven.apache.org/plugins/maven-javadoc-plugin/jar-mojo.html -->
105 <!-- https://maven.apache.org/plugins/maven-jar-plugin/ -->
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-jar-plugin</artifactId>
108 <version>${version.m-jar-p}</version>
110 <!-- https://maven.apache.org/plugins/maven-jar-plugin/jar-mojo.html#archive -->
112 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>