scala
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>solutions.bitbadger.documents</groupId> <artifactId>scala</artifactId> <version>1.0.0-RC1</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> <parent> <groupId>solutions.bitbadger</groupId> <artifactId>documents</artifactId> <version>1.0.0-RC1</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>solutions.bitbadger.documents</groupId> <artifactId>scala</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description>Expose a document store interface for PostgreSQL and SQLite (Scala Library)</description> <url>https://relationaldocs.bitbadger.solutions/jvm/</url> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Daniel J. Summers</name> <email>daniel@bitbadger.solutions</email> <organization>Bit Badger Solutions</organization> <organizationUrl>https://bitbadger.solutions</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents.git</connection> <developerConnection>scm:git:https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents.git</developerConnection> <url>https://git.bitbadger.solutions/bit-badger/solutions.bitbadger.documents</url> </scm> <build> <sourceDirectory>${project.basedir}/src/main/scala</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/scala</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${sourcePlugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>4.9.2</version> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>doc-jar</goal> </goals> <configuration> <args>-nobootcp</args> <scaladocClassName>dotty.tools.scaladoc.Main</scaladocClassName> <sourceDir>${project.build.outputDirectory}</sourceDir> <includes> <include>**/*.tasty</include> </includes> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scaladoc_3</artifactId> <version>${scala.version}</version> </dependency> </dependencies> </configuration> </execution> </executions> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${failsafe.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${sourcePlugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</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> <deploymentName>Deployment-scala-${project.version}</deploymentName> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>solutions.bitbadger.documents</groupId> <artifactId>core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala3-library_3</artifactId> <version>${scala.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> </dependencies> </project>