bundle-jakarta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.together.libraries</groupId>
<artifactId>bundle-jakarta</artifactId>
<version>11.0.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>TP-Bundle: Jakarta (JavaEE)</name>
<description>Bill of Materials</description>
<inceptionYear>01/2013</inceptionYear>
<url>https://elmar-dott.com</url>
<groupId>io.github.together.libraries</groupId>
<artifactId>bundle-jakarta</artifactId>
<version>11.0.1</version>
<packaging>pom</packaging>
<properties>
<jersey.version>3.1.11</jersey.version>
<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>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>11.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.faces</groupId>
<artifactId>jakarta.faces-api</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.faces</artifactId>
<version>4.1.4</version>
</dependency>
<!-- JaxRs support & Swagger API -->
<dependency>
<groupId>org.glassfish.jersey.bundles</groupId>
<artifactId>jaxrs-ri</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-jdk-connector</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-grizzly-connector</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring6</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-servlet</artifactId>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core-jakarta</artifactId>
<version>2.2.41</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
<version>2.2.41</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-jakarta</artifactId>
<version>2.2.41</version>
</dependency>
</dependencies>
<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>
<!-- ================================================================== -->
<!-- ========================== 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>