Skip to content

Commit

Permalink
Cleaned up packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcashman committed Sep 26, 2015
1 parent b1dad5d commit 25c5549
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ buildscript {
subprojects {
apply plugin: 'maven'

group = 'org.tilepacker'
version = '3.0.0-SNAPSHOT'

uploadArchives {
repositories {
mavenDeployer {
Expand All @@ -29,16 +32,13 @@ subprojects {
mavenLocal()
mavenCentral()
}

group = 'org.mini2Dx'
version = '3.0.0-SNAPSHOT'
}

project(":" + rootProject.name + "-core") {
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'

mainClassName = "org.mini2Dx.tilepacker.core.TilePacker"
mainClassName = "org.tilepacker.core.TilePacker"

dependencies {
compile 'org.simpleframework:simple-xml:2.7.1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Copyright 2015 Thomas Cashman
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import org.newdawn.slick.Image;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import java.io.File;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.core;
package org.tilepacker.core;

import java.util.ArrayList;
import java.util.List;
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/java/org/tilepacker/core/RectangleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import junit.framework.Assert;

import org.junit.Test;
import org.mini2Dx.tilepacker.core.Rectangle;
import org.tilepacker.core.Rectangle;

/**
* Unit tests for rectangles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.mini2Dx.tilepacker.gradle
package org.tilepacker.gradle

import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
import org.mini2Dx.tilepacker.core.TilePacker
import org.tilepacker.core.TilePacker

/**
*
Expand Down

0 comments on commit 25c5549

Please sign in to comment.