Skip to content

Commit

Permalink
Merge pull request #1 from bd2kccd/v0.1.0-refactoring
Browse files Browse the repository at this point in the history
V0.1.0 refactoring
  • Loading branch information
espinoj authored Mar 16, 2017
2 parents 58234eb + 4bb9f8c commit 4916c29
Show file tree
Hide file tree
Showing 84 changed files with 2,913 additions and 4,281 deletions.
41 changes: 21 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<?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>edu.pitt.dbmi</groupId>
<artifactId>causal-cmd</artifactId>
<groupId>cmu.edu</groupId>
<version>0.1.0</version>
<packaging>jar</packaging>
<version>6.0.1-SNAPSHOT</version>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<version>3.0.2</version>
<executions>
<execution>
<id>copy-dist-resources</id>
Expand All @@ -37,7 +38,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
Expand All @@ -49,7 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -59,7 +60,7 @@
<configuration>
<archive>
<manifest>
<mainClass>edu.cmu.tetrad.cli.CausalCmdApplication</mainClass>
<mainClass>edu.pitt.dbmi.causal.cmd.CausalCmdApplication</mainClass>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
Expand Down Expand Up @@ -87,28 +88,28 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>edu.cmu</groupId>
<artifactId>tetrad-lib</artifactId>
<version>6.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>edu.pitt.dbmi</groupId>
<artifactId>data-reader</artifactId>
<version>0.1.3</version>
</dependency>
<dependency>
<groupId>edu.cmu</groupId>
<artifactId>tetrad-lib</artifactId>
<version>6.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
296 changes: 0 additions & 296 deletions src/main/java/edu/cmu/tetrad/cli/AbstractAlgorithmCli.java

This file was deleted.

Loading

0 comments on commit 4916c29

Please sign in to comment.