liferay-portal-database-all-in-one-support
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.dontesta.labs.liferay.portal.db</groupId> <artifactId>liferay-portal-database-all-in-one-support</artifactId> <version>1.2.3</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>it.dontesta.labs.liferay.portal.db</groupId> <artifactId>liferay-portal-database-all-in-one-support</artifactId> <packaging>jar</packaging> <version>1.2.3</version> <name>Liferay Portal Database All In One Support</name> <description>This is the driver implementation to add support for Oracle and SQL Server database for Liferay 7,7.1,7.2,7.3 and 7.4 CE </description> <url>https://www.dontesta.it</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>GNU Lesser General Public License, version 2.1 (LGPLv2.1) </name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url> <distribution>manual</distribution> </license> </licenses> <organization> <name>Antonio Musarra's Blog</name> <url>https://www.dontesta.it</url> </organization> <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> <liferay.portal.release.api>7.4.3.51-ga51</liferay.portal.release.api> <liferay.portal.impl.version>59.0.0</liferay.portal.impl.version> </properties> <developers> <developer> <id>amusarra</id> <name>Antonio Musarra</name> <email>antonio.musarra@gmail.com</email> <url>https://www.dontesta.it</url> <timezone>+1</timezone> <roles> <role>IT Senior Consultant</role> <role>Senior Software Architect</role> <role>Liferay Expert</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>com.liferay.portal</groupId> <artifactId>release.portal.api</artifactId> <version>${liferay.portal.release.api}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.liferay.portal</groupId> <artifactId>com.liferay.portal.impl</artifactId> <version>${liferay.portal.impl.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <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-source-plugin</artifactId> <version>2.2.1</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>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifestFile> ${project.build.outputDirectory}/META-INF/MANIFEST.MF </manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- Maven GPG Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</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>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Set this to true and the release will automatically proceed and sync to Central Repository will follow --> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- Liferay Source Formatter Plugin https://help.liferay.com/hc/en-us/articles/360017901972-Source-Formatter-Plugin --> <plugin> <groupId>com.liferay</groupId> <artifactId>com.liferay.source.formatter</artifactId> <version>1.0.885</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> <configuration> </configuration> </plugin> </plugins> </build> <scm> <connection> scm:git:git@github.com:amusarra/liferay-portal-database-all-in-one-support.git </connection> <url> scm:git:git@github.com:amusarra/liferay-portal-database-all-in-one-support.git </url> <developerConnection> scm:git:git@github.com:amusarra/liferay-portal-database-all-in-one-support.git </developerConnection> <tag>liferay-portal-database-all-in-one-support-1.2.3</tag> </scm> <issueManagement> <url> https://github.com/amusarra/liferay-portal-database-all-in-one-support/issues </url> <system>GitHub</system> </issueManagement> </project>