sas7bdat
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.scharp</groupId> <artifactId>sas7bdat</artifactId> <version>0.9.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2025 Fred Hutch Cancer Center Licensed under the MIT License - see LICENSE file for details --> <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>org.scharp</groupId> <artifactId>sas7bdat</artifactId> <version>0.9.1</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>A library for writing SAS7BDAT datasets.</description> <url>https://github.com/FredHutch/sas7bdat</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>David Costanzo</name> <email>dcostanz@fredhutch.org</email> <organization>Fred Hutch Cancer Center</organization> <organizationUrl>https://fredhutch.org</organizationUrl> </developer> </developers> <scm> <url>https://github.com/FredHutch/sas7bdat.git</url> </scm> <issueManagement> <url>https://github.com/FredHutch/sas7bdat/issues</url> </issueManagement> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <!-- Attach source to the "jar-no-fork" goal so that the sas7bdat-#.#.#-sources.jar is built --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Attach javadoc to the "jar" goal so that the sas7bdat-#.#.#-javadoc.jar is built --> <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> </plugin> <!-- Enable a "gpg:sign" goal that signs compiled artifacts per Maven Central's requirements --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <configuration> <bestPractices>true</bestPractices> <keyname>Maven Central PGP Signing Key</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Enable publishing to Maven Central with "mvn deploy" --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <!-- dependencies needed for testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.epam</groupId> <artifactId>parso</artifactId> <version>2.0.14</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.36</version> <!-- old version for compatibility with parso --> <scope>test</scope> </dependency> </dependencies> </project>