SassyReader.
A file reader of the sas7bdat file format, aka. SAS tables. Includes adaption for the MetaModel framework to allow more elaborate querying and exploration abilities..
Here is the list of declaration for SassyReader. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.eobjects.sassyreader</groupId> <artifactId>SassyReader</artifactId> <version>0.5</version> </dependency>
If you think this Maven repository POM file listing for SassyReader is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The SassyReader-0.5 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.6.3 The slf4j API | 95 |
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
The following table lists the most popular artifacts which are depending on SassyReader-0.5. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | AnalyzerBeans-core 0.20 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 17 |
Library | AnalyzerBeans-core 0.15 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 9 |
Library | AnalyzerBeans-core 0.17 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 15 |
Library | AnalyzerBeans-core 0.21 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 17 |
The following plugins are used in the SassyReader-0.5.jar
The following packages are defined in the SassyReader-0.5.jar
org.eobjects.sassy org.eobjects.sassy.metamodel
Here is the content of the POM file.
<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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sshwagon.version>2.0</sshwagon.version> <javadoc.version>2.8</javadoc.version> <metamodel.version>3.0-beta4</metamodel.version> <slf4j.version>1.6.3</slf4j.version> <junit.version>4.10</junit.version> </properties> <groupId>org.eobjects.sassyreader</groupId> <artifactId>SassyReader</artifactId> <version>0.5</version> <name>SassyReader</name> <inceptionYear>2011</inceptionYear> <description> A file reader of the sas7bdat file format, aka. SAS tables. Includes adaption for the MetaModel framework to allow more elaborate querying and exploration abilities. </description> <parent> <!-- Uses the OSS sonatype nexus repository for distribution --> <!-- See https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide --> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <scm> <connection> scm:svn:http://eobjects.org/svn/SassyReader/tags/SassyReader-0.5 </connection> <developerConnection> scm:svn:http://eobjects.org/svn/SassyReader/tags/SassyReader-0.5 </developerConnection> <url> http://eobjects.org/trac/browser/SassyReader/tags/SassyReader-0.5 </url> </scm> <distributionManagement> <snapshotRepository> <id>eobjects-snapshot-repo</id> <url>scp://eobjects.org/var/www/repo</url> </snapshotRepository> <site> <id>sassyreader.eobjects.org</id> <name>SassyReader website</name> <url>scp://eobjects.org/var/www/sassyreader</url> </site> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --> <source>1.6</source> <target>1.6</target> <encoding>utf-8</encoding> </configuration> </plugin> <plugin> <!-- Ensure inclusion of license header in all main java files --> <groupId>com.google.code.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.4.0</version> <configuration> <header>HEADER.txt</header> <includes> <include>src/**/java/**</include> </includes> </configuration> <executions> <execution> <id>verify-license-headers</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> <inherited>false</inherited> </execution> </executions> </plugin> <!-- Cobertura code coverage --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-maven3-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <configuration> <links> <link>http://metamodel.eobjects.org/apidocs/</link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <dependencies> <dependency> <!-- Provide support for scp based deployment of site --> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>${sshwagon.version}</version> </dependency> </dependencies> </plugin> </plugins> <extensions> <extension> <!-- Provide support for scp based deployment of site --> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>${sshwagon.version}</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <!-- Ignore instructions for m2e (overrides eclipse warning) --> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <pluginRepositories> <pluginRepository> <id>Codehaus repository</id> <url>http://repository.codehaus.org/</url> </pluginRepository> </pluginRepositories> <repositories> <repository> <id>eobjects-snapshot-repo</id> <url>http://repo.eobjects.org/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.eobjects.metamodel</groupId> <artifactId>MetaModel-core</artifactId> <version>${metamodel.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eobjects.metamodel</groupId> <artifactId>MetaModel-csv</artifactId> <version>${metamodel.version}</version> <scope>test</scope> </dependency> </dependencies> </project>