Skip to content

Commit

Permalink
Refactored packages to match a domain to which I can actually publish…
Browse files Browse the repository at this point in the history
… on Maven Central
  • Loading branch information
stevesaliman committed Jun 13, 2014
1 parent 649296a commit 4b29e27
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 20 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'maven'
apply plugin: 'signing'
apply plugin: 'idea'

version = '1.0.0-SNAPSHOT'
group = 'com.augusttechgroup'
version = '1.0.0'
group = 'net.saliman'
def artifact = 'gradle-liquibase-plugin'

configurations {
Expand All @@ -22,7 +22,7 @@ dependencies {
compile gradleApi()
deployment "org.apache.maven.wagon:wagon-webdav-jackrabbit:1.0-beta-7"
compile 'org.liquibase:liquibase-core:3.1.1'
runtime 'com.augusttechgroup:groovy-liquibase-dsl:1.0.0-SNAPSHOT'
runtime 'net.saliman:groovy-liquibase-dsl:1.0.0'
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion plugin.gradle
Expand Up @@ -9,7 +9,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.augusttechgroup:gradle-liquibase-plugin:0.7-SNAPSHOT'
classpath 'net.saliman:gradle-liquibase-plugin:1.0.0'
classpath 'com.h2database:h2:1.3.159'
}
}
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011 Tim Berglund
* Copyright 2011-2014 Tim Berglund and Steven C. Saliman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,11 +15,9 @@
*
* Tim Berglund
* The August Technology Group
* http://augusttechgroup.com/tim/about
*
*/

package com.augusttechgroup.gradle.liquibase
package net.saliman.gradle.liquibase

/**
* This class represents a single activity that must be performed as part of a
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011-2012 Tim Berglund
* Copyright 2011-2014 Tim Berglund and Steven C. Saliman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -18,7 +18,7 @@
*
*/

package com.augusttechgroup.gradle.liquibase
package net.saliman.gradle.liquibase

import org.gradle.api.NamedDomainObjectContainer

Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011 Tim Berglund
* Copyright 2011-2014 Tim Berglund and Steven C. Saliman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,11 +15,9 @@
*
* Tim Berglund
* The August Technology Group
* http://augusttechgroup.com/tim/about
*
*/

package com.augusttechgroup.gradle.liquibase
package net.saliman.gradle.liquibase

import org.gradle.api.Project
import org.gradle.api.Plugin
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2011 Tim Berglund
* Copyright 2011-2014 Tim Berglund and Steven C. Saliman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -15,11 +15,9 @@
*
* Tim Berglund
* The August Technology Group
* http://augusttechgroup.com/tim/about
*
*/

package com.augusttechgroup.gradle.liquibase
package net.saliman.gradle.liquibase

import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
Expand Down
@@ -1,4 +1,4 @@
package com.augusttechgroup.gradle.liquibase;
package net.saliman.gradle.liquibase;

import liquibase.Liquibase;
import liquibase.change.CheckSum;
Expand Down
@@ -1 +1 @@
implementation-class=com.augusttechgroup.gradle.liquibase.LiquibasePlugin
implementation-class=net.saliman.gradle.liquibase.LiquibasePlugin

0 comments on commit 4b29e27

Please sign in to comment.