-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fork: (40 commits) Upgrade Grails version to 3.0.1 Update grails version to 3.0.0.RC3 update version to 2.0.0.RC1 skip updating when the process is started from migration commands back to snapshot remove unnecessary repository settings update README update version to 2.0.0.M1 update travis settings add test for GroovyChange add integration tests upgrade grails to 3.0.0.RC1 fix failing test add tests for Groovy Preconditions update travis status badge update bintray account cleanup update travis settings add bintray settings remove unused log annotation ...
- Loading branch information
Showing
251 changed files
with
6,894 additions
and
11,808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,8 @@ | ||
*.swp | ||
web-app | ||
*.iws | ||
*Db.properties | ||
*Db.script | ||
/bin/ | ||
/build/ | ||
/.gradle/ | ||
.project | ||
.settings | ||
stacktrace.log | ||
/*.zip | ||
/*.zip.sha1 | ||
/plugin.xml | ||
/*.log | ||
/*DB.* | ||
/cobertura.ser | ||
.DS_Store | ||
/target/ | ||
/out/ | ||
/web-app/plugins | ||
/web-app/WEB-INF/classes | ||
/.link_to_grails_plugins/ | ||
/target-eclipse/ | ||
.classpath | ||
.project | ||
*.iml | ||
/.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
language: groovy | ||
jdk: | ||
- oraclejdk7 | ||
- openjdk7 | ||
before_script: | ||
- rm -rf target | ||
- rm -rf build | ||
script: ./travis-build.sh | ||
env: | ||
global: | ||
- GIT_NAME="Graeme Rocher" | ||
- GIT_EMAIL="graeme.rocher@gmail.com" | ||
- secure: rJ9dcWHllb8KkZNMW+71E/cjHwdQldAyLQN12GSL/YKGYvK7tb1Tyj/Poy3u08JyvKTbQg0Jh+eXRytppRXod1qjlsT0em+5PQAgEt/ihgtSkQPNacJUlAf3iELlTCiSqOdSy35zW6kf7U00lcM/k7NA0BnlRTT4A4/3do7mDGA= | ||
- secure: lKOkxxJVUTyDcq7WkP/6IXEdsFlLdefD044mc/GZm81PIW2qJ2EOsifcyKjXkymwSlw4f/9eChY22Z3W3ctLwcGy2YGyo0MZyzBTnlaTk8Z+KzUQK/disyzVa+0bq60tf/Dy21Sn539+jBrcRidik/j8HmH6As4cOndjPf0lcMk= | ||
- secure: DDM8wpbwLozxU/wgS++lv+bJuI7qz5+mAtixBeOjluDElmnFwzilI/DEBTdVsc6OKJD0hBOHai3LAMwfaC0WW4DhxqGWS/4iTmPrOQY6VoHCRvEVO8s/YVIq++Ja0ehvV+YkLx/IbWQJ4d/FldN67Bg18jCcRap5zjnaZDsaOqI= | ||
- GIT_NAME="Kazuki YAMAMOTO" | ||
- GIT_EMAIL="yam.kazuki@gmail.com" | ||
- secure: XsiOtsq2z6bQg7cD2xWcenGtMFtVkI84M1V7JLMwSH0ZV32YYl8LyL7TcieqhEj0/GPEXHgb4duatnxIFomOg1Jku6lP8wO06veLMOpXEZGF5dg+G1+SAqftQzLePsDmEPJW76o4jodWL3pkrTYpnrEn7KUX9olZrXX7lqcunf4= | ||
- secure: MBJTKTMfBerHYKMeJBrL/R8FwK23BJXALrL477X1letpg2SUj0KN+UKahYqVOGtHRj/C1hbpU84qlovLfuCCbd8CJbtpWw85hnEjnQrDJdHAJs8/ByUhUllT7JxM/1/X/IdGMhxM/k7QulymFlte7HRTDoenHvSXYql5A5ns7YI= |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
buildscript { | ||
ext { | ||
grailsVersion = project.grailsVersion | ||
} | ||
repositories { | ||
mavenLocal() | ||
maven { url "https://repo.grails.org/grails/core" } | ||
} | ||
dependencies { | ||
classpath "org.grails:grails-gradle-plugin:$grailsVersion" | ||
classpath 'com.bertramlabs.plugins:asset-pipeline-gradle:2.1.1' | ||
} | ||
} | ||
|
||
plugins { | ||
id "io.spring.dependency-management" version "0.3.1.RELEASE" | ||
id "com.jfrog.bintray" version "1.1" | ||
} | ||
|
||
version "2.0.0.RC1" | ||
group "org.grails.plugins" | ||
|
||
apply plugin: "spring-boot" | ||
apply plugin: "asset-pipeline" | ||
apply plugin: "org.grails.grails-plugin" | ||
apply plugin: "org.grails.grails-gsp" | ||
apply plugin: 'maven-publish' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'idea' | ||
// Used for publishing to central repository, remove if not needed | ||
apply from: 'https://raw.githubusercontent.com/grails/grails-profile-repository/master/profiles/plugin/templates/grailsCentralPublishing.gradle' | ||
apply from: 'https://raw.githubusercontent.com/grails/grails-profile-repository/master/profiles/plugin/templates/bintrayPublishing.gradle' | ||
|
||
ext { | ||
grailsVersion = project.grailsVersion | ||
gradleWrapperVersion = project.gradleWrapperVersion | ||
} | ||
|
||
sourceCompatibility = 1.7 | ||
targetCompatibility = 1.7 | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core" } | ||
} | ||
|
||
dependencyManagement { | ||
imports { | ||
mavenBom "org.grails:grails-bom:$grailsVersion" | ||
} | ||
applyMavenExclusions false | ||
} | ||
|
||
dependencies { | ||
compile 'org.liquibase:liquibase-core:3.3.2' | ||
compile('org.liquibase.ext:liquibase-hibernate4:3.5') { | ||
exclude group: 'org.hibernate', module: 'hibernate-core' | ||
exclude group: 'org.hibernate.javax.persistence', module: 'hibernate-jpa-2.0-api' | ||
exclude group: 'org.hibernate', module: 'hibernate-entitymanager' | ||
exclude group: 'org.hibernate', module: 'hibernate-envers' | ||
} | ||
provided 'org.hibernate:hibernate-core:4.3.8.Final' | ||
|
||
provided 'org.springframework.boot:spring-boot-starter-logging' | ||
provided "org.springframework.boot:spring-boot-starter-actuator" | ||
provided "org.springframework.boot:spring-boot-autoconfigure" | ||
provided "org.springframework.boot:spring-boot-starter-tomcat" | ||
|
||
provided "org.grails:grails-web-boot" | ||
provided "org.grails:grails-dependencies" | ||
provided 'javax.servlet:javax.servlet-api:3.1.0' | ||
|
||
testCompile "org.grails:grails-plugin-testing" | ||
testCompile "org.grails.plugins:hibernate" | ||
|
||
provided("org.grails:grails-shell") { | ||
exclude group: 'org.slf4j', module: 'slf4j-simple' | ||
} | ||
} | ||
|
||
eclipse { | ||
classpath { | ||
plusConfigurations += [configurations.provided] | ||
} | ||
} | ||
|
||
idea { | ||
module { | ||
scopes.PROVIDED.plus += [configurations.provided] | ||
} | ||
} | ||
|
||
bintray { | ||
pkg { | ||
userOrg = '' // If you want to publish to an organization | ||
issueTrackerUrl = "https://github.com/yamkazu/$project.name/issues" | ||
vcsUrl = "https://github.com/yamkazu/$project.name" | ||
} | ||
} |
Oops, something went wrong.