Skip to content

Commit 182e3cd

Browse files
committed
add missing gradle files
1 parent e382811 commit 182e3cd

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

Diff for: .gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ fabric.properties
4949
*.pseudo
5050
*.iml
5151

52-
/config/
52+
/config/
53+
54+
*.properties

Diff for: build.gradle

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
buildscript {
2+
ext {
3+
springBootVersion = '2.0.4.RELEASE'
4+
}
5+
repositories {
6+
mavenCentral()
7+
}
8+
dependencies {
9+
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
10+
}
11+
}
12+
13+
apply plugin: 'java'
14+
apply plugin: 'org.springframework.boot'
15+
apply plugin: 'io.spring.dependency-management'
16+
17+
group = 'de.pfadfinden.mv'
18+
version = '1.0.0'
19+
20+
description = """"""
21+
22+
sourceCompatibility = 1.8
23+
tasks.withType(JavaCompile) {
24+
options.encoding = 'UTF-8'
25+
}
26+
27+
repositories {
28+
mavenCentral()
29+
}
30+
31+
dependencies {
32+
compile('org.springframework.boot:spring-boot-starter')
33+
compile('org.springframework.boot:spring-boot-starter-jdbc')
34+
// compile('org.springframework.boot:spring-boot-starter-data-ldap')
35+
compile('org.apache.directory.api:api-all:1.0.2')
36+
runtime('mysql:mysql-connector-java')
37+
testCompile('org.springframework.boot:spring-boot-starter-test')
38+
}

Diff for: settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'ldap-sync'

Diff for: src/main/resources/META-INF/MANIFEST.MF

-3
This file was deleted.

0 commit comments

Comments
 (0)