convirgance
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.invirgance</groupId> <artifactId>convirgance</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.invirgance</groupId> <artifactId>convirgance</artifactId> <version>1.2.3</version> <packaging>jar</packaging> <name>Convirgance</name> <description> Convirgance is a modern, streamlined approach to database access. Unlike traditional ORM frameworks that map your data into Java objects, Convirgance provides direct SQL access as a high-performance stream of Map objects which can be transformed, filtered, and converted to numerous data formats. </description> <url>https://convirgance.invirgance.com</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Jerason Banes</name> <email>jerasonbanes@invirgance.com</email> <organization>Invirgance</organization> <organizationUrl>http://www.invirgance.com</organizationUrl> </developer> <developer> <name>Ethan Henry</name> <email>ethanhenry@invirgance.com</email> <organization>Invirgance</organization> <organizationUrl>http://www.invirgance.com</organizationUrl> </developer> <developer> <name>Timur Kasimov</name> <email>timurkasimov@invirgance.com</email> <organization>Invirgance</organization> <organizationUrl>http://www.invirgance.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/InvirganceOpenSource/convirgance.git</connection> <developerConnection>scm:git:https://github.com/InvirganceOpenSource/convirgance.git</developerConnection> <url>https://github.com/InvirganceOpenSource/convirgance/tree/${project.scm.tag}</url> <tag>main</tag> </scm> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> <repository> <id>central</id> <url>https://repo1.maven.org/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> <version>2.1</version> <dependencies> <dependency> <groupId>org.codehaus.javancss</groupId> <artifactId>javancss</artifactId> <version>34.55-SNAPSHOT</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>1.1.0</version> <configuration> <serverId>sign-key-id</serverId> </configuration> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <checksum>all</checksum> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <configuration> </configuration> <reportSets> <reportSet> <id>default</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyclient</artifactId> <version>10.17.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbytools</artifactId> <version>10.17.1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.5.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <exec.mainClass>com.invirgance.convirgance.Convirgance</exec.mainClass> <test.run.args>-Xms128m -Xmx1400m</test.run.args> </properties> </project>