document-sql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>codes.rafael.documentsql</groupId>
<artifactId>document-sql</artifactId>
<version>1.4</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>codes.rafael.documentsql</groupId>
<artifactId>document-sql</artifactId>
<version>1.4</version>
<packaging>pom</packaging>
<name>SQL generator for document descriptions</name>
<description>This library attempts to bridge the gap between the flexibility of document storage and the comfort of SQL schemata. Typically, XML and JSON documents follow a schema, this library
creates DDL to represent these schemata as SQL views of a stored document. A schema is generated from its Java class representation and written to DDL.
</description>
<url>https://github.com/raphw/skatteprosessen-document-sql</url>
<distributionManagement>
<repository>
<id>central</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/raphw/skatteprosessen-document-sql.git</connection>
<developerConnection>scm:git:git@github.com:raphw/skatteprosessen-document-sql.git</developerConnection>
<url>http://github.com/raphw/skatteprosessen-document-sql/tree/master</url>
<tag>document-sql-1.4</tag>
</scm>
<developers>
<developer>
<name>Rafael Winterhalter</name>
<email>rafael.wth@gmail.com</email>
<organization>Skatteetaten</organization>
<organizationUrl>https://rafael.codes</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<sonar.jacoco.reportPath>${project.build.directory}/jacoco.exec</sonar.jacoco.reportPath>
<oracle-docker>org.testcontainers.containers.OracleContainer</oracle-docker>
<postgres-docker>org.testcontainers.containers.PostgreSQLContainer</postgres-docker>
</properties>
<modules>
<module>document-sql-api</module>
<module>document-sql-oracle</module>
<module>document-sql-management</module>
<module>document-sql-postgres</module>
</modules>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</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</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalOptions>-package</additionalOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>