Skip to content

Commit 24260f5

Browse files
author
tomekkup
committed
initial commit
1 parent fbc59fc commit 24260f5

File tree

5 files changed

+100
-0
lines changed

5 files changed

+100
-0
lines changed

LavoramaModel/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
dependencies {
3+
implementation "jakarta.persistence:jakarta.persistence-api:3.1.0"
4+
5+
implementation "org.springframework.boot:spring-boot-starter-data-jpa:${versions.springboot}"
6+
implementation "org.springframework.boot:spring-boot-starter-security:${versions.springboot}"
7+
8+
implementation "com.github.paulcwarren:spring-content-fs:${versions.springcontentfs}"
9+
implementation "com.github.paulcwarren:spring-content-rest-boot-starter:${versions.springcontentfs}"
10+
}

LavoramaSecurity/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
dependencies {
3+
implementation project(':LavoramaModel')
4+
implementation project(':LavoramaServices')
5+
implementation "org.springframework.boot:spring-boot-starter-security:${versions.springboot}"
6+
implementation "org.springframework.boot:spring-boot-starter-data-jdbc:${versions.springboot}"
7+
implementation "org.springframework.data:spring-data-rest-webmvc:${versions.springboot}"
8+
9+
compileOnly "jakarta.servlet:jakarta.servlet-api:6.1.0"
10+
}

LavoramaServices/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
dependencies {
3+
implementation project(':LavoramaModel')
4+
implementation "org.springframework.boot:spring-boot-starter:${versions.springboot}"
5+
implementation "org.springframework.boot:spring-boot-starter-data-jpa:${versions.springboot}"
6+
implementation "org.apache.tika:tika-core:1.26"
7+
8+
implementation "com.github.paulcwarren:spring-content-fs-boot-starter:${versions.springcontentfs}"
9+
implementation "com.github.paulcwarren:spring-content-rest-boot-starter:${versions.springcontentfs}"
10+
}

LavoramaWeb/build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id "org.springframework.boot" version "3.4.4"
3+
id "io.spring.dependency-management" version "1.1.7"
4+
}
5+
6+
apply plugin: "org.springframework.boot"
7+
8+
9+
10+
dependencies {
11+
implementation project(':LavoramaModel')
12+
implementation project(':LavoramaSecurity')
13+
implementation project(':LavoramaServices')
14+
15+
implementation "org.joinfaces:primefaces-spring-boot-starter:${versions.joinfaces}"
16+
implementation "org.joinfaces:adminfaces-spring-boot-starter:${versions.joinfaces}"
17+
implementation "org.joinfaces:rewrite-spring-boot-starter:${versions.joinfaces}"
18+
implementation "org.springframework.boot:spring-boot-starter-data-jpa:${versions.springboot}"
19+
implementation "org.springframework.boot:spring-boot-starter-web:${versions.springboot}"
20+
implementation "jakarta.faces:jakarta.faces-api:4.0.1"
21+
22+
implementation "org.ocpsoft.rewrite:rewrite-config-prettyfaces:10.0.2.Final"
23+
implementation "org.ocpsoft.prettytime:prettytime:5.0.9.Final"
24+
implementation "org.ocpsoft.prettytime:prettytime-integration-jsf:5.0.9.Final"
25+
26+
runtimeOnly 'com.h2database:h2:1.4.200'
27+
28+
}

build.gradle

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
plugins {
2+
id 'java' //or 'war'
3+
id "io.freefair.lombok" version "6.3.0"
4+
id "io.spring.dependency-management" version "1.1.7"
5+
}
6+
7+
ext {
8+
versions = [
9+
springboot : '3.4.4',
10+
springcontentfs : '3.0.10',
11+
joinfaces : '5.4.4',
12+
lombok : '1.18.36'
13+
]
14+
}
15+
16+
tasks.withType(JavaCompile) {
17+
options.encoding = 'UTF-8'
18+
}
19+
20+
allprojects {
21+
group = 'com.shiri.lavorama'
22+
version = '1.2.3'
23+
repositories {
24+
mavenLocal()
25+
mavenCentral() // maven { url: 'http://jcenter.bintray.com' }
26+
}
27+
}
28+
29+
subprojects {
30+
apply plugin: 'java'
31+
apply plugin: 'io.spring.dependency-management'
32+
33+
sourceCompatibility = 17
34+
35+
dependencies {
36+
implementation "org.projectlombok:lombok:${versions.lombok}"
37+
annotationProcessor "org.projectlombok:lombok:${versions.lombok}"
38+
39+
implementation 'com.google.guava:guava:30.1.1-jre'
40+
implementation 'org.apache.commons:commons-lang3:3.10'
41+
}
42+
}

0 commit comments

Comments
 (0)