Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updating references to base package
  • Loading branch information
viniciusam committed Aug 6, 2017
commit a56c5bb1358f0bd02ff0b98cbdd21b098d1573ee
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
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>io.github.utplsql</groupId>
<groupId>org.utplsql</groupId>
<artifactId>cli</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand All @@ -18,15 +18,15 @@

<dependencies>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.69</version>
<groupId>org.utplsql</groupId>
<artifactId>java-api</artifactId>
<version>1.0-Alpha1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.utplsql</groupId>
<artifactId>java-api</artifactId>
<version>1.0-SNAPSHOT</version>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.69</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -50,7 +50,7 @@
<repositoryLayout>flat</repositoryLayout>
<programs>
<program>
<mainClass>io.github.utplsql.cli.Cli</mainClass>
<mainClass>org.utplsql.cli.Cli</mainClass>
<id>utplsql</id>
</program>
</programs>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/utplsql/cli/Cli.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.JCommander;
import com.beust.jcommander.Parameter;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/utplsql/cli/ConnectionInfo.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.ParameterException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.IStringConverter;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/utplsql/cli/FileWalker.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import java.io.File;
import java.util.ArrayList;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/utplsql/cli/ReporterOptions.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import io.github.utplsql.api.reporter.Reporter;
import org.utplsql.api.reporter.Reporter;

/**
* Created by Vinicius on 20/05/2017.
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/utplsql/cli/RunCommand.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;
import io.github.utplsql.api.*;
import io.github.utplsql.api.exception.SomeTestsFailedException;
import io.github.utplsql.api.reporter.Reporter;
import io.github.utplsql.api.reporter.ReporterFactory;
import org.utplsql.api.*;
import org.utplsql.api.exception.SomeTestsFailedException;
import org.utplsql.api.reporter.Reporter;
import org.utplsql.api.reporter.ReporterFactory;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/utplsql/cli/ConnectionInfoTest.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.ParameterException;
import org.junit.Assert;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/utplsql/cli/FileWalkerTest.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import org.junit.Assert;
import org.junit.Test;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/utplsql/cli/RunCommandTest.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package io.github.utplsql.cli;
package org.utplsql.cli;

import com.beust.jcommander.JCommander;
import io.github.utplsql.api.CustomTypes;
import org.junit.Assert;
import org.junit.Test;
import org.utplsql.api.CustomTypes;

import java.util.List;

Expand Down