cielo-javaee
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.bpic.cielo</groupId>
<artifactId>cielo-javaee</artifactId>
<version>1.0.0</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>io.bpic.cielo</groupId>
<artifactId>cielo-javaee</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>cielo-core</module>
<module>cielo-client</module>
</modules>
<name>Cielo Jakarta EE</name>
<description>Cielo java library for Jakarta EE</description>
<url>https://github.com/bpicio/cielo-javaee</url>
<licenses>
<license>
<name>GNU GPLv3 License</name>
<url>http://www.opensource.org/licenses/GPL-3.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Bruno Palermo</name>
<email>bruno@bpic.io</email>
<organization>BP Internet</organization>
<organizationUrl>https://github.com/bpicio</organizationUrl>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/bpicio/cielo-javaee/issues</url>
</issueManagement>
<!-- Source Control Information, Github Stuff -->
<scm>
<connection>scm:git:https://github.com/bpicio/cielo-javaee.git</connection>
<developerConnection>scm:git:ssh://github.com/bpicio/cielo-javaee.git</developerConnection>
<url>https://github.com/bpicio/cielo-javaee</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Versions -->
<version.javaee-api>8.0</version.javaee-api>
<version.wildfly>17.0.0.Final</version.wildfly>
<version.resteasy-json-binding-provider>3.7.0.Final</version.resteasy-json-binding-provider>
<version.commons-logging>1.2</version.commons-logging>
<version.junit>4.12</version.junit>
<!-- Plug-ins -->
<version.maven-jar-plugin>3.2.2</version.maven-jar-plugin>
<version.maven-javadoc-plugin>3.1.0</version.maven-javadoc-plugin>
<version.maven-source-plugin>3.1.0</version.maven-source-plugin>
<version.gitflow-maven-plugin>1.12.0</version.gitflow-maven-plugin>
<version.nexus-staging-maven-plugin>1.6.8</version.nexus-staging-maven-plugin>
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.bpic.cielo</groupId>
<artifactId>cielo-core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>io.bpic.cielo</groupId>
<artifactId>cielo-client</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>${version.resteasy-json-binding-provider}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${version.commons-logging}</version>
</dependency>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-javaee8</artifactId>
<scope>import</scope>
<type>pom</type>
<version>${version.wildfly}</version>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${version.javaee-api}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>${version.gitflow-maven-plugin}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven-javadoc-plugin}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven-source-plugin}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.maven-gpg-plugin}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${version.nexus-staging-maven-plugin}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>