Skip to content

Commit e7f6e26

Browse files
committed
fork de la branch web
0 parents  commit e7f6e26

File tree

199 files changed

+19313
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+19313
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Thumbs.db
2+
.DS_Store
3+
.gradle
4+
build/
5+
.idea
6+
*.iml
7+
*.ipr
8+
*.iws
9+
.project
10+
.settings
11+
.classpath

.travis.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
language: groovy
2+
3+
sudo: false
4+
5+
jdk:
6+
- openjdk7
7+
- oraclejdk8
8+
9+
env:
10+
global:
11+
- MONGODB_VERSION=3.4.0
12+
13+
addons:
14+
apt:
15+
sources:
16+
- mongodb-upstart
17+
- mongodb-3.4-precise
18+
packages:
19+
- mongodb-org
20+
- libssl1.0.0
21+
- libssl-dev
22+
23+
services:
24+
- mongodb
25+
26+
before_install:
27+
#grails installation
28+
- curl -s get.sdkman.io | bash
29+
- source "$HOME/.sdkman/bin/sdkman-init.sh"
30+
- content=`more ~/.sdkman/etc/config | grep -v auto_answer`; echo "$content" > ~/.sdkman/etc/config; echo "sdkman_auto_answer=true" >> ~/.sdkman/etc/config
31+
- sdk install grails
32+
- grails -version
33+
#mongodb installation
34+
- mkdir -p data/db
35+
- mongod --dbpath=data/db &
36+
- sleep 21
37+
38+
before_script:
39+
- sleep 15
40+
- mongo task_overflow --eval 'db.addUser("admin", "admin");'
41+
42+
script:
43+
- echo "Rien à exécuter voir .travis.yml"
44+
#grails test-app

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# TaskOverflow
2+
Grails project at ISIMA

build.gradle

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
buildscript {
2+
repositories {
3+
mavenLocal()
4+
maven { url "https://repo.grails.org/grails/core" }
5+
}
6+
dependencies {
7+
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
8+
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.11.6"
9+
classpath "org.grails.plugins:hibernate5:6.0.4"
10+
}
11+
}
12+
13+
version "0.1"
14+
group "taskoverflow"
15+
16+
apply plugin:"eclipse"
17+
apply plugin:"idea"
18+
apply plugin:"war"
19+
apply plugin:"org.grails.grails-web"
20+
apply plugin:"org.grails.grails-gsp"
21+
apply plugin:"asset-pipeline"
22+
23+
repositories {
24+
mavenLocal()
25+
maven { url "https://repo.grails.org/grails/core" }
26+
}
27+
28+
dependencyManagement {
29+
imports {
30+
mavenBom "org.grails:grails-bom:$grailsVersion"
31+
}
32+
applyMavenExclusions false
33+
}
34+
35+
dependencies {
36+
compile "org.springframework.boot:spring-boot-starter-logging"
37+
compile "org.springframework.boot:spring-boot-autoconfigure"
38+
compile "org.grails:grails-core"
39+
compile "org.springframework.boot:spring-boot-starter-actuator"
40+
compile "org.springframework.boot:spring-boot-starter-tomcat"
41+
compile "org.grails:grails-dependencies"
42+
compile "org.grails:grails-web-boot"
43+
compile "org.grails.plugins:cache"
44+
compile "org.grails.plugins:scaffolding"
45+
compile "org.grails.plugins:hibernate5"
46+
compile "org.hibernate:hibernate-core:5.1.2.Final"
47+
compile "org.hibernate:hibernate-ehcache:5.1.2.Final"
48+
console "org.grails:grails-console"
49+
profile "org.grails.profiles:web"
50+
runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.11.6"
51+
runtime "com.h2database:h2"
52+
testCompile "org.grails:grails-plugin-testing"
53+
testCompile "org.grails.plugins:geb"
54+
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
55+
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
56+
57+
// secu
58+
compile "org.grails.plugins:spring-security-core:3.1.1"
59+
compile "org.grails.plugins:spring-security-ui:3.0.0.M2"
60+
}
61+
62+
bootRun {
63+
jvmArgs('-Dspring.output.ansi.enabled=always')
64+
}
65+
66+
67+
assets {
68+
minifyJs = true
69+
minifyCss = true
70+
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
grailsVersion=3.2.4
2+
gradleWrapperVersion=3.0

gradle/wrapper/gradle-wrapper.jar

51.6 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Fri Nov 27 23:09:32 CET 2015
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-bin.zip

gradlew

Lines changed: 160 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
14.6 KB
Loading

0 commit comments

Comments
 (0)