Skip to content

Commit 11e15b8

Browse files
committed
[0.20.0-SNAPSHOT]
Project refactored to multi module project
1 parent 9c4a10c commit 11e15b8

File tree

193 files changed

+307
-9798
lines changed

Some content is hidden

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

193 files changed

+307
-9798
lines changed

.editorconfig

+17-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,30 @@ root = true
88
end_of_line = lf
99
charset = utf-8
1010

11+
# Json
12+
[*.json]
13+
indent_size = 2
14+
indent_style = space
15+
insert_final_newline = false
16+
trim_trailing_whitespace = true
17+
1118
# Yaml
1219
[{*.yml, *.yaml}]
1320
indent_size = 2
1421
indent_style = space
22+
insert_final_newline = true
23+
trim_trailing_whitespace = true
1524

1625
# Property files
1726
[*.properties]
1827
indent_size = 2
1928
indent_style = space
29+
insert_final_newline = true
30+
trim_trailing_whitespace = true
2031

21-
32+
# XML files
33+
[*.xml]
34+
indent_size = 4
35+
indent_style = space
36+
insert_final_newline = true
37+
trim_trailing_whitespace = true

.gitattributes

+27-8
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
# and leave all files detected as binary untouched.
33
* text=auto
44

5-
#
5+
66
# The above will handle all files NOT found below
7-
#
87
# These files are text and should be normalized (Convert crlf => lf)
98
*.bash text eol=lf
109
*.css text diff=css
@@ -26,16 +25,36 @@
2625
*.xml text
2726
*.yml text eol=lf
2827

28+
2929
# These files are binary and should be left untouched
3030
# (binary is a macro for -text -diff)
31-
*.class binary
31+
# Archives
32+
*.7z binary
33+
*.br binary
34+
*.gz binary
35+
*.tar binary
36+
*.zip binary
37+
*.jar binary
38+
*.so binary
39+
*.war binary
3240
*.dll binary
33-
*.ear binary
34-
*.gif binary
41+
42+
# Documents
43+
*.pdf binary
44+
45+
# Images
3546
*.ico binary
36-
*.jar binary
47+
*.gif binary
3748
*.jpg binary
3849
*.jpeg binary
3950
*.png binary
40-
*.so binary
41-
*.war binary
51+
*.psd binary
52+
*.webp binary
53+
54+
# Fonts
55+
*.woff2 binary
56+
57+
# Other
58+
*.exe binary
59+
*.class binary
60+
*.ear binary

.gitignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Package Files #
1+
### Package Files
22
*.war
33
*.nar
44
*.ear
@@ -9,9 +9,10 @@
99
### Gradle template
1010
.gradle
1111
build/
12+
target/
1213

13-
# Idea generated files
14+
### Idea generated files
1415
.idea
15-
/out/
16-
*.iml
1716
.settings/
17+
*.iml
18+
out/

build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
group = groupId
2+
version = artifactVersion
3+
4+
subprojects {
5+
6+
}
File renamed without changes.

gradle.properties

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
groupId=io.goodforgod
2+
artifactVersion=0.20.0-SNAPSHOT
3+
4+
5+
##### GRADLE #####
6+
org.gradle.daemon=true
7+
org.gradle.parallel=true
8+
org.gradle.configureondemand=true
9+
org.gradle.caching=true
10+
org.gradle.jvmargs=-Dfile.encoding=UTF-8 \
11+
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
12+
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
13+
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
14+
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
15+
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
File renamed without changes.
File renamed without changes.
File renamed without changes.

micronaut-gradle-sql/Dockerfile micronaut-gradle-dynamodb/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM goodforgod/amazonlinux-graalvm:21.3.0-java17-amd64
1+
FROM goodforgod/amazonlinux-graalvm:22.0.0.2-java17-amd64
22

33
ADD build/libs/*all.jar build/libs/application.jar
44

File renamed without changes.

micronaut-gradle-sql/README.md micronaut-gradle-dynamodb/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Template for Micronaut 2 service for Java 11+.
1313

1414
```shell
1515
./gradlew shadorJar
16-
docker build -t micronaut-gradle-sql .
17-
docker run --rm --entrypoint cat micronaut-gradle-sql /home/application/function.zip > build/function.zip
16+
docker build -t micronaut-gradle-dynamodb .
17+
docker run --rm --entrypoint cat micronaut-gradle-dynamodb /home/application/function.zip > build/function.zip
1818
```
1919

2020
## SAM
File renamed without changes.

micronaut-gradle-sql/build.gradle micronaut-gradle-dynamodb/build.gradle

+7-8
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plugins {
44
id "io.micronaut.application" version "3.0.0"
55

66
id "org.sonarqube" version "3.3"
7-
id "com.diffplug.spotless" version "5.14.3"
8-
id "com.github.johnrengelman.shadow" version "7.0.0"
7+
id "com.diffplug.spotless" version "6.1.0"
8+
id "com.github.johnrengelman.shadow" version "7.1.2"
99
}
1010

1111
repositories {
@@ -16,20 +16,20 @@ repositories {
1616
group = groupId
1717
version = artifactVersion
1818

19-
sourceCompatibility = JavaVersion.VERSION_11
20-
targetCompatibility = JavaVersion.VERSION_11
19+
sourceCompatibility = JavaVersion.VERSION_17
20+
targetCompatibility = JavaVersion.VERSION_17
2121

2222
spotless {
2323
java {
2424
encoding("UTF-8")
2525
importOrder()
2626
removeUnusedImports()
27-
eclipse().configFile("${projectDir}/config/codestyle.xml")
27+
eclipse().configFile("${rootDir}/config/codestyle.xml")
2828
}
2929
}
3030

3131
micronaut {
32-
version("3.2.0")
32+
version("3.3.4")
3333
processing {
3434
incremental(true)
3535
module(project.name)
@@ -83,7 +83,6 @@ shadowJar {
8383
manifest {
8484
attributes "Main-Class": mainClassName
8585
attributes "Implementation-Version": artifactVersion
86-
attributes "Build-Version": buildNumber
8786
}
8887
}
8988

@@ -104,6 +103,6 @@ check.dependsOn jacocoTestReport
104103
jacocoTestReport {
105104
reports {
106105
xml.enabled(true)
107-
html.destination(file("${buildDir}/jacocoHtml"))
106+
html.destination file("${buildDir}/jacocoHtml")
108107
}
109108
}

micronaut-gradle-dynamodb/build.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
./gradlew shadorJar
4+
docker build -t micronaut-gradle-dynamodb .
5+
docker run --rm --entrypoint cat micronaut-gradle-dynamodb /home/application/function.zip > build/function.zip

micronaut-gradle-sql/gradle.properties micronaut-gradle-dynamodb/gradle.properties

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
groupId=io.aws.lambda.micronaut
2-
artifactId=micronaut-gradle-sql
3-
artifactVersion=0.9.0-SNAPSHOT
4-
buildNumber=1
2+
artifactId=micronaut-gradle-dynamodb
53

64

75
##### GRADLE #####

micronaut-gradle-sql/sam.yaml micronaut-gradle-dynamodb/sam.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Resources:
3131
Description: URL for application
3232
Value: !Sub 'https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/'
3333
Export:
34-
Name: micronaut-gradle-sql
34+
Name: micronaut-gradle-dynamodb
File renamed without changes.

micronaut-gradle-sql/src/main/resources/application.yml micronaut-gradle-dynamodb/src/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
micronaut:
22
application:
3-
name: micronaut-gradle-sql
3+
name: micronaut-gradle-dynamodb
44
default-charset: UTF-8
55

66
jackson:

micronaut-gradle-http/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM goodforgod/amazonlinux-graalvm:21.3.0-java17-amd64
1+
FROM goodforgod/amazonlinux-graalvm:22.0.0.2-java17-amd64
22

33
ADD build/libs/*all.jar build/libs/application.jar
44

micronaut-gradle-http/build.gradle

+7-8
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ plugins {
44
id "io.micronaut.application" version "3.0.0"
55

66
id "org.sonarqube" version "3.3"
7-
id "com.diffplug.spotless" version "5.14.3"
8-
id "com.github.johnrengelman.shadow" version "7.0.0"
7+
id "com.diffplug.spotless" version "6.1.0"
8+
id "com.github.johnrengelman.shadow" version "7.1.2"
99
}
1010

1111
repositories {
@@ -16,20 +16,20 @@ repositories {
1616
group = groupId
1717
version = artifactVersion
1818

19-
sourceCompatibility = JavaVersion.VERSION_11
20-
targetCompatibility = JavaVersion.VERSION_11
19+
sourceCompatibility = JavaVersion.VERSION_17
20+
targetCompatibility = JavaVersion.VERSION_17
2121

2222
spotless {
2323
java {
2424
encoding("UTF-8")
2525
importOrder()
2626
removeUnusedImports()
27-
eclipse().configFile("${projectDir}/config/codestyle.xml")
27+
eclipse().configFile("${rootDir}/config/codestyle.xml")
2828
}
2929
}
3030

3131
micronaut {
32-
version("3.2.0")
32+
version("3.3.4")
3333
processing {
3434
incremental(true)
3535
module(project.name)
@@ -83,7 +83,6 @@ shadowJar {
8383
manifest {
8484
attributes "Main-Class": mainClassName
8585
attributes "Implementation-Version": artifactVersion
86-
attributes "Build-Version": buildNumber
8786
}
8887
}
8988

@@ -104,6 +103,6 @@ check.dependsOn jacocoTestReport
104103
jacocoTestReport {
105104
reports {
106105
xml.enabled(true)
107-
html.destination(file("${buildDir}/jacocoHtml"))
106+
html.destination file("${buildDir}/jacocoHtml")
108107
}
109108
}

0 commit comments

Comments
 (0)