plugin-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.techno-visions.plugin</groupId>
<artifactId>plugin-common</artifactId>
<version>1.0.6</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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.techno-visions.plugin</groupId>
<artifactId>plugin-common</artifactId>
<version>1.0.6</version>
<name>Excavator Connector Data Format</name>
<description>This is an interface to have a custom Camel Data Format for our project,
so our client can download the artifact and build their Custom data format
</description>
<url>
https://gitlab.techno-visions.net/rafm/rafm-backend/plugin-common
</url>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- <camel.version>3.6.0</camel.version>-->
<sonatype.version>1.6.7</sonatype.version>
<mavenplugin.version>1.8</mavenplugin.version>
<mavensource.version>2.2.1</mavensource.version>
<mavenjavadoc.version>2.9.1</mavenjavadoc.version>
<java.home>/usr/lib/jvm/java-11-openjdk-amd64</java.home>
</properties>
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.camel</groupId>-->
<!-- <artifactId>camel-dataformat</artifactId>-->
<!-- <version>${camel.version}</version>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Thair Hasan</name>
<email>thairh@techno-visions.net</email>
<organization>TechnoVisions</organization>
<organizationUrl>https://www.techno-visions.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://gitlab.techno-visions.net/rafm/rafm-backend/plugin-common.git</connection>
<developerConnection>scm:git:ssh://gitlab.techno-visions.net:rafm/rafm-backend/plugin-common.git</developerConnection>
<url>https://gitlab.techno-visions.net/rafm/rafm-backend/plugin-common/tree/main</url>
</scm>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${sonatype.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${mavensource.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>${mavenjavadoc.version}</version>
<configuration>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
</configuration>
<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>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${mavenplugin.version}</source>
<target>${mavenplugin.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>local</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${mavenplugin.version}</source>
<target>${mavenplugin.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>