Skip to content

Commit

Permalink
four square plugin migrated to grails 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lovinpcs committed Jun 27, 2015
1 parent 241fc51 commit d397e58
Show file tree
Hide file tree
Showing 141 changed files with 11,649 additions and 2,308 deletions.
17 changes: 17 additions & 0 deletions .gitignore
@@ -0,0 +1,17 @@
*.ids
*.iml
.idea/
out/
.classpath
.project
.settings/
target/
classes/
web-app/WEB-INF/tld/c.tld
web-app/WEB-INF/tld/fmt.tler
web-app/css/font-awesome.min.css
cobertura.ser
stacktrace.log
web-app/WEB-INF/tld/fmt.tld
nohup.out
gradle/
1 change: 1 addition & 0 deletions .gradle/2.3/taskArtifacts/cache.properties
@@ -0,0 +1 @@
#Sat Jun 27 11:46:07 IST 2015
Binary file added .gradle/2.3/taskArtifacts/cache.properties.lock
Binary file not shown.
Binary file added .gradle/2.3/taskArtifacts/fileHashes.bin
Binary file not shown.
Binary file added .gradle/2.3/taskArtifacts/fileSnapshots.bin
Binary file not shown.
Binary file added .gradle/2.3/taskArtifacts/outputFileStates.bin
Binary file not shown.
Binary file added .gradle/2.3/taskArtifacts/taskArtifacts.bin
Binary file not shown.
3 changes: 1 addition & 2 deletions FoursquareGrailsPlugin.groovy
@@ -1,6 +1,5 @@
class FoursquareGrailsPlugin {
class FoursquareGrailsPlugin extends grails.plugins.Plugin{
// the plugin version
def version = "0.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "2.0 > *"
// the other plugins this plugin depends on
Expand Down
5 changes: 0 additions & 5 deletions application.properties

This file was deleted.

71 changes: 71 additions & 0 deletions build.gradle
@@ -0,0 +1,71 @@
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
}
}

plugins {
id "io.spring.dependency-management" version "0.5.1.RELEASE"
id "com.jfrog.bintray" version "1.1"
}

version "1.0-SNAPSHOT"
group "org.grails.plugins"

apply plugin: 'maven-publish'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "spring-boot"
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.grails-gsp"
// 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 {
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"

console "org.grails:grails-console"
}

task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
129 changes: 129 additions & 0 deletions build/.dependencies

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/.mainClass
@@ -0,0 +1 @@
foursquare.Application
8 changes: 8 additions & 0 deletions build/config.groovy
@@ -0,0 +1,8 @@

withConfig(configuration) {
inline(phase: 'CONVERSION') { source, context, classNode ->
classNode.putNodeMetaData('projectVersion', '1.0-SNAPSHOT')
classNode.putNodeMetaData('projectName', 'Foursquare-Grails-Plugin')
classNode.putNodeMetaData('isPlugin', 'true')
}
}
50 changes: 50 additions & 0 deletions build/docs/groovydoc/allclasses-frame.html
@@ -0,0 +1,50 @@
<!--
Copyright 2003-2015 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>All Classes</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">

</head>
<body class="left">
<h1 class="bar">All Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="foursquare/Application.html" title="class in foursquare" target="classFrame">Application</a></li>
<li><a href="foursquare/Category.html" title="class in foursquare" target="classFrame">Category</a></li>
<li><a href="foursquare/Checkin.html" title="class in foursquare" target="classFrame">Checkin</a></li>
<li><a href="org/grails/plugin/foursquare/CheckinsService.html" title="class in org.grails.plugin.foursquare" target="classFrame">CheckinsService</a></li>
<li><a href="org/grails/plugin/foursquare/FourSquareCommonService.html" title="class in org.grails.plugin.foursquare" target="classFrame">FourSquareCommonService</a></li>
<li><a href="foursquare/FourSquareGrailsPlugin.html" title="class in foursquare" target="classFrame">FourSquareGrailsPlugin</a></li>
<li><a href="org/grails/plugin/foursquare/FoursquareService.html" title="class in org.grails.plugin.foursquare" target="classFrame">FoursquareService</a></li>
<li><a href="foursquare/Location.html" title="class in foursquare" target="classFrame">Location</a></li>
<li><a href="foursquare/Tip.html" title="class in foursquare" target="classFrame">Tip</a></li>
<li><a href="foursquare/User.html" title="class in foursquare" target="classFrame">User</a></li>
<li><a href="org/grails/plugin/foursquare/UserService.html" title="class in org.grails.plugin.foursquare" target="classFrame">UserService</a></li>
<li><a href="foursquare/Venue.html" title="class in foursquare" target="classFrame">Venue</a></li>
<li><a href="foursquare/VenuePhoto.html" title="class in foursquare" target="classFrame">VenuePhoto</a></li>
<li><a href="org/grails/plugin/foursquare/VenueService.html" title="class in org.grails.plugin.foursquare" target="classFrame">VenueService</a></li>

</ul>
</div>
</body>
</html>
103 changes: 103 additions & 0 deletions build/docs/groovydoc/deprecated-list.html
@@ -0,0 +1,103 @@
<!--
Copyright 2003-2015 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Generated by groovydoc (2.4.3) on -->
<title>Deprecated API (Foursquare-Grails-Plugin 1.0-SNAPSHOT API)</title>
<meta name="date" content="2015-06-27">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link href="groovy.ico" type="image/x-icon" rel="shortcut icon">
<link href="groovy.ico" type="image/x-icon" rel="icon">

</head>
<body class="center">
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated API (Foursquare-Grails-Plugin 1.0-SNAPSHOT API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li class="navBarCell1Rev">Deprecated</li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
</ul>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Deprecated API" class="title">Deprecated API</h1>
<h2 title="Contents">Contents</h2>
<ul>

</ul>
</div>
<div class="contentContainer">


</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li class="navBarCell1Rev">Deprecated</li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li>
<li><a href="deprecated-list.html" target="_top">No Frames</a></li>
</ul>
<div class="aboutLanguage"><em>Groovy Documentation</em></div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

</body>
</html>

0 comments on commit d397e58

Please sign in to comment.