libraries
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.together</groupId>
<artifactId>libraries</artifactId>
<version>1.5.1</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>
<name>together Platform - libraries</name>
<description>Reactor POM: Bill of Materials (BoM).</description>
<inceptionYear>01/2013</inceptionYear>
<url>https://elmar-dott.com</url>
<groupId>io.github.together</groupId>
<artifactId>libraries</artifactId>
<version>1.5.1</version>
<packaging>pom</packaging>
<modules>
<module>bundle-jakarta</module>
<module>bundle-spring</module>
<module>bundle-hibernate</module>
</modules>
<scm>
<connection>scm:https://git.elmar-dott.com/scm/repo/TogetherPlatform/TP-CM/</connection>
<developerConnection>scm:https://git.elmar-dott.com/scm/repo/TogetherPlatform/TP-CM/</developerConnection>
<url>scm:https://git.elmar-dott.com/scm/repo/TogetherPlatform/TP-CM/</url>
</scm>
<issueManagement>
<system>Redmine</system>
<url>https://issues.elmar-dott.com/projects/tp</url>
</issueManagement>
<properties>
<release.repo>http://172.18.0.250:8081/repository/maven-releases/</release.repo>
<snapshot.repro>http://172.18.0.250:8081/repository/maven-snapshots/</snapshot.repro>
<site.repro>https://togeter-platform.com</site.repro>
<fetch.repo>http://172.18.0.250:8081/repository/maven-public/</fetch.repo>
</properties>
<!-- ================================================================== -->
<!-- ========================== DEPLOYMENT ======================== -->
<!-- ================================================================== -->
<distributionManagement>
<snapshotRepository>
<id>local-nexus</id>
<url>${snapshot.repro}</url>
</snapshotRepository>
<repository>
<id>local-nexus</id>
<url>${release.repo}</url>
</repository>
<site>
<id>local-http-nexus</id>
<name>local deployed site</name>
<url>${site.repro}</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>RepositoryServer</id>
<url>${fetch.repo}</url>
</repository>
</repositories>
<licenses>
<license>
<name>${license.name}</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>CEO</id>
<name>Elmar Dott</name>
<roles>
<role>CEO</role>
<role>Architect</role>
<role>Build Maanager</role>
<role>Lead Developer</role>
</roles>
<email>elmar.dott@gmail.com</email>
<url>https://elmar-dott.com</url>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M16</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- ================================================================== -->
<!-- =========================== PROFILES ========================= -->
<!-- ================================================================== -->
<profiles>
<profile>
<id>tp-release</id>
<build>
<plugins>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.11</version>
<executions>
<execution>
<goals>
<goal>artifacts</goal>
</goals>
<configuration>
<algorithms>
<algorithm>SHA-1</algorithm>
</algorithms>
<pomSkip>false</pomSkip>
<individualFiles>true</individualFiles>
<attachChecksums>true</attachChecksums>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<homedir>${gpg.homedir}</homedir>
<keyname>togetherPlatform</keyname>
<secretKeyring>${gpg.tp.keypasspharse}</secretKeyring>
<defaultKeyring>${gpg.tp.keypasspharse}</defaultKeyring>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>