Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to Gradle Develop to Main #5

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ac4544b
change on login label
Nomcabango Jun 27, 2023
a46bb8d
Merge pull request #3 from Nomcabango/feature/sot-workshop
aleon1220 Jun 27, 2023
564584a
fixes to code format
aleon1220 Jul 7, 2023
8fcc3d1
Merge branch 'develop' of github.com:aleon1220/multi-cloud-WebApp-Att…
aleon1220 Jul 7, 2023
4f7757b
Java Formatted Code
aleon1220 Jul 10, 2023
8d693f0
instructions when using docker
aleon1220 Jul 10, 2023
732303e
Implement Gradle for the build
aleon1220 Jul 12, 2023
3feb575
Merge branch 'master' into develop
aleon1220 Jul 19, 2023
96bf958
enable diagrams.net develop branch
aleon1220 Jul 31, 2023
38e90ae
Merge branch 'develop' of github.com:aleon1220/multi-cloud-WebApp-Att…
aleon1220 Jul 31, 2023
18ffaaa
Sitemap & wireframes added
aleon1220 Aug 1, 2023
0576fa4
gradle wrapper
aleon1220 Aug 1, 2023
b2e9c89
Redesigned app based on sitemap
aleon1220 Aug 3, 2023
971aea8
gradle automation setup
aleon1220 Sep 24, 2023
8023b66
preparing test files
aleon1220 Sep 24, 2023
9c62eaa
clean up structure
aleon1220 Sep 25, 2023
dd37188
port for cxf wsdl2java function
aleon1220 Sep 25, 2023
2524aea
migrated API/services clients common directory
aleon1220 Sep 26, 2023
5e5cd24
clean up resources
aleon1220 Sep 26, 2023
f346264
mermaid diagram GraphQL client
aleon1220 Sep 26, 2023
94c85fe
upgrade gradle 8.3 intelliJ IDE
aleon1220 Oct 10, 2023
8a9759b
stable wsdl2java gradle task
aleon1220 Oct 26, 2023
fad2e16
tweaking IntelliJ functionality
aleon1220 Oct 28, 2023
3b0c3f7
gradle wrapper rebuilt IntelliJ
aleon1220 Oct 28, 2023
0925d83
maven cxf generate WSDL2Java
aleon1220 Oct 28, 2023
1d81d39
VsCode workspace settings
aleon1220 Oct 28, 2023
6271096
Code Cleanup
aleon1220 Oct 28, 2023
a28eddd
refactored full structure
aleon1220 Nov 4, 2023
61b54b9
maven cleanup
aleon1220 Dec 4, 2023
37fc9d4
LDAP basic setup
aleon1220 Dec 4, 2023
ba06df1
LDAP properties
aleon1220 Dec 4, 2023
e850efd
Full clean-up remove complexities
aleon1220 Dec 5, 2023
76fd471
Create QR code website
aleon1220 Dec 7, 2023
4699db8
Upgrade Gradle 8.5
aleon1220 Dec 7, 2023
b9e64fe
CODE Make Testing module work gradle
aleon1220 Dec 7, 2023
0d44126
Default to 8080
vijaykumar95489 Dec 8, 2023
075b3e3
Merge pull request #6 from vijaykumar95489/feautre
aleon1220 Dec 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
# Gradle
.gradle/
**/build/
!src/**/build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Avoid ignore Gradle wrappper properties
!gradle-wrapper.properties

# Cache of project
.gradletasknamecache

#.config file for eclipse projects
.settings
/.classpath
/bin/
/.project

#target with generated objects
# Maven build files
/target

# Compiled class file
Expand Down
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM tomcat:8-jdk8-corretto
# https://hub.docker.com/layers/library/tomcat/7.0.109-jdk8-openjdk/images/sha256-489823486120d076cb576640c5819c6fa54948f470b46c54f02b48f462eb2c23
LABEL org.nz.itlatinos.image.authors="[email protected]"
ADD conf/tomcat-users.xml /usr/local/tomcat/conf
LABEL maintainer="andres.nz"
ENV APP_WAR_FILE="AttendanceApp-0.0.1.war"

COPY target/AttendanceWebApp.war /usr/local/tomcat/webapps/
LABEL maintainer="andres.nz"
# Tomcat Custom settings
COPY "build/libs/$APP_WAR_FILE" /usr/local/tomcat/webapps/
Loading
Loading