Skip to content

Commit

Permalink
Added initial project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspersorensen committed Feb 6, 2014
1 parent 6d8e3ca commit afcd4c7
Show file tree
Hide file tree
Showing 8 changed files with 207 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
/.project
/.classpath
/.settings
/target
4 changes: 4 additions & 0 deletions access/.gitignore
@@ -0,0 +1,4 @@
/.project
/.classpath
/.settings
/target
22 changes: 22 additions & 0 deletions access/pom.xml
@@ -0,0 +1,22 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eobjects.metamodel-extras</groupId>
<artifactId>MetaModel-extras</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>MetaModel-extras-dbase</artifactId>
<name>A module for Apache MetaModel to read dBase database files</name>

<dependencies>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
4 changes: 4 additions & 0 deletions dbase/.gitignore
@@ -0,0 +1,4 @@
/.project
/.classpath
/.settings
/target
22 changes: 22 additions & 0 deletions dbase/pom.xml
@@ -0,0 +1,22 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eobjects.metamodel-extras</groupId>
<artifactId>MetaModel-extras</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>MetaModel-extras-dbase</artifactId>
<name>A module for Apache MetaModel to read dBase database files</name>

<dependencies>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
125 changes: 125 additions & 0 deletions pom.xml
@@ -0,0 +1,125 @@
<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.1</javadoc.version>
<junit.version>4.12</junit.version>
<metamodel.version>4.0.0-incubating</metamodel.version>
</properties>
<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>
<groupId>org.eobjects.metamodel-extras</groupId>
<artifactId>MetaModel-extras</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>MetaModel extras</name>
<description>
Extra pluggable modules for Apache MetaModel (but licensed with LGPL).
</description>
<scm>
<url>https://github.com/datacleaner/metamodel_extras</url>
<connection>scm:git:https://github.com/datacleaner/metamodel_extras.git</connection>
<developerConnection>scm:git:https://github.com/datacleaner/metamodel_extras.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<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>
</plugins>

<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>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-core</artifactId>
<version>${metamodel.version}</version>
</dependency>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-full</artifactId>
<version>${metamodel.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
4 changes: 4 additions & 0 deletions sas/.gitignore
@@ -0,0 +1,4 @@
/.project
/.classpath
/.settings
/target
22 changes: 22 additions & 0 deletions sas/pom.xml
@@ -0,0 +1,22 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eobjects.metamodel-extras</groupId>
<artifactId>MetaModel-extras</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>MetaModel-extras-dbase</artifactId>
<name>A module for Apache MetaModel to read dBase database files</name>

<dependencies>
<dependency>
<groupId>org.apache.metamodel</groupId>
<artifactId>MetaModel-core</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit afcd4c7

Please sign in to comment.