[Project] Prepare pom.xml for deployment

This commit is contained in:
Robert von Burg 2021-07-16 15:49:59 +02:00
parent 3dbf426a09
commit b0987bd7f5
1 changed files with 165 additions and 50 deletions

215
pom.xml
View File

@ -5,10 +5,50 @@
<groupId>li.strolch</groupId>
<artifactId>strolch-plc</artifactId>
<packaging>pom</packaging>
<name>strolch-plc</name>
<version>1.0.0-SNAPSHOT</version>
<name>strolch-plc</name>
<description>Module build to build strolch-plc</description>
<packaging>pom</packaging>
<url>http://www.strolch.li/plc</url>
<inceptionYear>2019</inceptionYear>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/strolch-li/strolch-plc/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/strolch-li/strolch-plc.git</connection>
<developerConnection>scm:git:https://github.com/strolch-li/strolch-plc.git</developerConnection>
<url>https://github.com/strolch-li/strolch-plc</url>
</scm>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<organization>
<name>Strolch</name>
<url>http://www.strolch.li/plc</url>
</organization>
<developers>
<developer>
<id>eitch</id>
<name>Robert von Burg</name>
<email>eitch@eitchnet.ch</email>
<url>http://www.eitchnet.ch</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -75,6 +115,8 @@
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<archetype-packaging.version>3.2.0</archetype-packaging.version>
<gpg.keyname>NOT_SET</gpg.keyname>
</properties>
<modules>
@ -87,52 +129,6 @@
<module>strolch-plc-gw-server</module>
</modules>
<developers>
<developer>
<id>eitch</id>
<name>Robert von Burg</name>
<email>robert.vonburg@4trees.ch</email>
<url>http://4trees.ch</url>
<organization>4trees</organization>
<organizationUrl>http://4trees.ch</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl>http://localhost</picUrl>
</properties>
</developer>
<developer>
<id>rb</id>
<name>Reto Breitenmoser</name>
<email>reto.breitenmoser@4trees.ch</email>
<url>http://4trees.ch</url>
<organization>4trees</organization>
<organizationUrl>http://4trees.ch</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl>http://localhost</picUrl>
</properties>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:4treesCH/strolch-plc.git</connection>
<developerConnection>scm:git:git@github.com:4treesCH/strolch-plc.git</developerConnection>
<url>https://github.com/4treesCH/strolch-plc</url>
</scm>
<organization>
<name>4trees</name>
<url>http://4trees.ch</url>
</organization>
<dependencyManagement>
<dependencies>
@ -301,6 +297,25 @@
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven-scm-plugin.version}</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
@ -399,6 +414,10 @@
</goals>
</execution>
</executions>
<configuration>
<source>${jdk.version}</source>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
@ -435,12 +454,86 @@
</configuration>
</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>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>oss.sonatype.org</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
</configuration>
<executions>
<execution>
<id>deploy-to-sonatype</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<distributionManagement>
<repository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>source</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
@ -456,7 +549,29 @@
</plugins>
</build>
</profile>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>