Skip to content

Commit

Permalink
add missing gradle files
Browse files Browse the repository at this point in the history
  • Loading branch information
philippst committed Sep 9, 2018
1 parent e382811 commit 182e3cd
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ fabric.properties
*.pseudo
*.iml

/config/
/config/

*.properties
38 changes: 38 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
buildscript {
ext {
springBootVersion = '2.0.4.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

group = 'de.pfadfinden.mv'
version = '1.0.0'

description = """"""

sourceCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}

repositories {
mavenCentral()
}

dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-jdbc')
// compile('org.springframework.boot:spring-boot-starter-data-ldap')
compile('org.apache.directory.api:api-all:1.0.2')
runtime('mysql:mysql-connector-java')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'ldap-sync'
3 changes: 0 additions & 3 deletions src/main/resources/META-INF/MANIFEST.MF

This file was deleted.

0 comments on commit 182e3cd

Please sign in to comment.