paradoxdriver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.paradoxdriver</groupId> <artifactId>paradoxdriver</artifactId> <version>1.6.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2009 Leonardo Alves da Costa ~ ~ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public ~ License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any ~ later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without ~ even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public ~ License for more details. You should have received a copy of the GNU General Public License along with this ~ program. If not, see <http://www.gnu.org/licenses/>. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>com.googlecode.paradoxdriver</groupId> <artifactId>paradoxdriver</artifactId> <version>1.6.3</version> <packaging>jar</packaging> <name>Paradox Driver</name> <description>A Paradox Java Driver (using JDBC 4)</description> <url>https://github.com/leonhad/paradoxdriver</url> <inceptionYear>2009</inceptionYear> <licenses> <license> <name>GNU GPL v3</name> <url>https://www.gnu.org/licenses/gpl.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Leonardo Alves da Costa</name> <email>leonhad@gmail.com</email> <organization>Particular</organization> <organizationUrl>https://github.com/leonhad/</organizationUrl> </developer> </developers> <mailingLists> <mailingList> <name>Discussions</name> <archive>https://github.com/leonhad/paradoxdriver/discussions</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:https://github.com/leonhad/paradoxdriver.git</connection> <developerConnection>scm:git:https://github.com/leonhad/paradoxdriver.git</developerConnection> <url>https://github.com/leonhad/paradoxdriver.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/leonhad/paradoxdriver/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>8</maven.compiler.release> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.java.source>1.8</sonar.java.source> <sonar.cpd.exclusions>**/*Function.java</sonar.cpd.exclusions> <sonar.java.libraries>target</sonar.java.libraries> <sonar.issue.ignore.multicriteria>e1</sonar.issue.ignore.multicriteria> <sonar.issue.ignore.multicriteria.e1.ruleKey> java:S1162 </sonar.issue.ignore.multicriteria.e1.ruleKey> <sonar.issue.ignore.multicriteria.e1.resourceKey>**/*.java</sonar.issue.ignore.multicriteria.e1.resourceKey> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <showDeprecation>true</showDeprecation> <compilerArgs>-Xlint:-options</compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <quiet>true</quiet> <applyJavadocSecurityFix>true</applyJavadocSecurityFix> <charset>UTF-8</charset> <debug>false</debug> <failOnError>false</failOnError> <source>8</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.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-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <runOrder>random</runOrder> <testFailureIgnore>true</testFailureIgnore> <includes> <include>**/*.class</include> </includes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>oss</id> <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> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>github</id> <distributionManagement> <repository> <id>github</id> <name>GitHub leonhad Apache Maven Packages</name> <url>https://maven.pkg.github.com/leonhad/paradoxdriver</url> </repository> </distributionManagement> </profile> </profiles> </project>